:root {
  color-scheme: light;
  --ink: #18211f;
  --muted: #5d6b66;
  --quiet: #eef3ef;
  --line: #d7e0da;
  --paper: #fbf8f1;
  --surface: #ffffff;
  --accent: #146c5d;
  --accent-strong: #0c4d43;
  --amber: #d9902f;
  --shadow: 0 18px 50px rgba(24, 33, 31, 0.08);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #083b34;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(20, 108, 93, 0.35);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(215, 224, 218, 0.8);
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

main {
  min-height: 72vh;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-size: clamp(44px, 8vw, 86px);
}

h2 {
  font-size: clamp(30px, 5vw, 48px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 660px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: var(--accent-strong);
}

.button.secondary:hover {
  background: rgba(20, 108, 93, 0.08);
  color: var(--accent-strong);
}

.signal-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.signal-top {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: #f7faf7;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--amber);
}

.dot:nth-child(2) {
  background: var(--accent);
}

.dot:nth-child(3) {
  background: #7c8a84;
}

.signal-body {
  padding: 24px;
}

.product-visual {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.metric {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.metric:last-child {
  border-bottom: 0;
}

.metric strong {
  color: var(--accent-strong);
  font-size: 28px;
  line-height: 1;
}

.metric span {
  color: var(--muted);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-header p {
  max-width: 560px;
  color: var(--muted);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 24px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 108, 93, 0.35);
  box-shadow: var(--shadow);
}

.product-card p,
.info-card p,
.copy p,
.copy li {
  color: var(--muted);
}

.product-card h3 {
  margin-bottom: 10px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--quiet);
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.copy {
  max-width: 820px;
}

.copy h1 {
  font-size: clamp(40px, 7vw, 72px);
}

.copy h2 {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 30px;
}

.copy h3 {
  margin-top: 28px;
  font-size: 20px;
}

.copy p,
.copy ul {
  margin-top: 16px;
}

.copy ul {
  padding-left: 22px;
}

.copy li + li {
  margin-top: 8px;
}

.meta-list {
  display: grid;
  gap: 14px;
}

.meta-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.meta-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.meta-list dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.callout {
  margin-top: 24px;
  border-left: 4px solid var(--accent);
  background: #f4faf6;
  padding: 18px 20px;
}

.footer {
  border-top: 1px solid var(--line);
  background: #f6f1e7;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: var(--muted);
}

@media (max-width: 820px) {
  .nav,
  .footer-inner,
  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid,
  .product-list,
  .split {
    grid-template-columns: 1fr;
  }

  .signal-panel {
    order: -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ================================================================
   HOMEPAGE — body.home scoped styles
   ================================================================ */

body.home {
  background: #fbf8f1;
}

/* ---------- Dark nav override ---------- */
body.home .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 23, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

body.home .brand {
  color: #fff;
}

body.home .brand-mark {
  background: #d5ff68;
  color: #0a1714;
}

body.home .nav-links a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 160ms ease;
}

body.home .nav-links a:hover {
  color: #d5ff68;
}

body.home .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 14px;
  margin-left: 6px;
  border: none;
  border-radius: 8px;
  background: #d5ff68;
  color: #0a1714 !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

/* ---------- Language switcher ---------- */
body.home .lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  margin-left: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

body.home .lang-switch:hover {
  border-color: rgba(213, 255, 104, 0.4);
  background: rgba(213, 255, 104, 0.06);
  color: #d5ff68 !important;
}

body.home .nav-cta:hover {
  transform: translateY(-1px);
  background: #c5f04f;
  color: #0a1714 !important;
  box-shadow: 0 4px 20px rgba(213, 255, 104, 0.3);
}

/* ---------- Hero (dark) ---------- */
.hero-dark {
  position: relative;
  overflow: hidden;
  background: #0a1714;
  padding: 80px 0 100px;
}

.hero-dark-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(20, 108, 93, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(213, 255, 104, 0.06) 0%, transparent 40%);
}

.hero-dark-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-dark-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(213, 255, 104, 0.25);
  border-radius: 999px;
  background: rgba(213, 255, 104, 0.06);
  color: #d5ff68;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  animation: fadeInUp 600ms ease both;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d5ff68;
  box-shadow: 0 0 8px rgba(213, 255, 104, 0.6);
}

.hero-dark-title {
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  animation: fadeInUp 700ms ease 100ms both;
}

.hero-accent {
  color: #d5ff68;
}

.hero-dark-desc {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  animation: fadeInUp 700ms ease 200ms both;
}

.hero-dark-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  animation: fadeInUp 700ms ease 300ms both;
}

.hero-microcopy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 500;
  animation: fadeInUp 700ms ease 400ms both;
}

/* ---------- Buttons (dark hero) ---------- */
.btn-lime {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: none;
  border-radius: 10px;
  background: #d5ff68;
  color: #0a1714;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn-lime:hover {
  transform: translateY(-2px);
  background: #c5f04f;
  box-shadow: 0 8px 30px rgba(213, 255, 104, 0.3);
  color: #0a1714;
}

.btn-lime--large {
  min-height: 54px;
  padding: 0 28px;
  font-size: 16px;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.btn-outline-dark:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.btn-outline-dark--large {
  min-height: 54px;
  padding: 0 28px;
  font-size: 16px;
}

/* ---------- Hero visual ---------- */
.hero-dark-visual {
  position: relative;
  animation: fadeIn 800ms ease 400ms both;
}

.hero-visual-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(20, 108, 93, 0.3) 0%, transparent 70%);
  filter: blur(30px);
}

.hero-visual-img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

/* ---------- Stats bar ---------- */
.stats-bar {
  background: #0f201c;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-item strong {
  color: #d5ff68;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Section head ---------- */
.section-head {
  margin-bottom: 48px;
}

.section-head--center {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  color: #146c5d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-eyebrow--light {
  color: #d5ff68;
}

.section-title {
  margin: 12px 0 0;
  color: #18211f;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-sub {
  max-width: 580px;
  margin-top: 16px;
  color: #5d6b66;
  font-size: 18px;
  line-height: 1.6;
}

.section-head--center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Features ---------- */
.features-section {
  padding: 88px 0;
}

.features-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 28px 24px;
  border: 1px solid #e4ebe6;
  border-radius: 14px;
  background: #fff;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 108, 93, 0.2);
  box-shadow: 0 12px 40px rgba(24, 33, 31, 0.08);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 18px;
}

.feature-icon--teal {
  background: rgba(20, 108, 93, 0.1);
  color: #146c5d;
}

.feature-icon--amber {
  background: rgba(217, 144, 47, 0.12);
  color: #b97a26;
}

.feature-icon--lime {
  background: rgba(213, 255, 104, 0.15);
  color: #5a8a1a;
}

.feature-icon--slate {
  background: rgba(90, 104, 98, 0.12);
  color: #4a5752;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: #18211f;
}

.feature-card p {
  margin: 0;
  color: #5d6b66;
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- Steps ---------- */
.steps-section {
  padding: 88px 0;
  background: #f4f7f5;
}

.steps-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.steps-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step-card {
  flex: 1;
  padding: 0 20px;
  text-align: center;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #0a1714;
  color: #d5ff68;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.step-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #18211f;
}

.step-body p {
  margin: 0;
  color: #5d6b66;
  font-size: 14px;
  line-height: 1.6;
}

.step-body code {
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(20, 108, 93, 0.08);
  color: #146c5d;
  font-size: 13px;
}

.step-connector {
  display: flex;
  align-items: center;
  color: #c4d1ca;
  padding-top: 20px;
}

/* ---------- Trust section ---------- */
.trust-section {
  padding: 88px 0;
  background: #0a1714;
}

.trust-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 56px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.trust-title {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.trust-desc {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 17px;
  line-height: 1.7;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.trust-list svg {
  flex-shrink: 0;
  color: #d5ff68;
}

.trust-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: #d5ff68;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 160ms ease;
}

.trust-link:hover {
  gap: 12px;
}

.trust-visual {
  display: grid;
  place-items: center;
}

.trust-shield {
  position: relative;
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(213, 255, 104, 0.04);
  border: 1px solid rgba(213, 255, 104, 0.12);
}

.trust-shield::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(213, 255, 104, 0.06);
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 96px 0;
  text-align: center;
  background: #fbf8f1;
}

.cta-inner {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
}

.cta-title {
  margin: 0;
  color: #18211f;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-desc {
  max-width: 500px;
  margin: 20px auto 0;
  color: #5d6b66;
  font-size: 18px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

/* ---------- Dark footer ---------- */
.footer--dark {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0a1714;
}

.footer--dark .footer-inner {
  color: rgba(255, 255, 255, 0.45);
}

.footer--dark .footer-inner a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer--dark .footer-inner a:hover {
  color: #d5ff68;
}

/* ---------- Keyframes ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: 88px 0;
  background: #fbf8f1;
}

.faq-inner {
  width: min(800px, calc(100% - 48px));
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e4ebe6;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.faq-item[open] {
  border-color: rgba(20, 108, 93, 0.25);
  box-shadow: 0 4px 20px rgba(24, 33, 31, 0.04);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #18211f;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%235d6b66' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 24px 20px;
  margin: 0;
  color: #5d6b66;
  font-size: 15px;
  line-height: 1.7;
}

.faq-item code {
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(20, 108, 93, 0.08);
  color: #146c5d;
  font-size: 13px;
}

/* ---------- Homepage responsive ---------- */
@media (max-width: 960px) {
  .hero-dark-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-dark-visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero-dark {
    padding: 48px 0 64px;
  }

  .stats-inner {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
  }

  .stat-divider {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    flex-direction: column;
    gap: 32px;
  }

  .step-connector {
    transform: rotate(90deg);
    padding: 0;
    justify-content: center;
  }

  .features-section,
  .steps-section,
  .trust-section,
  .faq-section,
  .cta-section {
    padding: 56px 0;
  }
}
