*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green-950: #071a0e; --green-900: #0c2818; --green-800: #143d25; --green-700: #1b5232;
  --green-600: #22683f; --green-500: #2d8a54; --green-400: #3dab6a; --green-300: #6ec492;
  --green-200: #a3dbb8; --green-100: #d1efdc; --green-50: #edf8f1;
  --gold: #b8860b; --gold-light: #d4a634; --gold-50: #fdf8ed;
  --neutral-950: #0f0f0e; --neutral-900: #1a1a18; --neutral-800: #2d2d2a; --neutral-700: #44443f;
  --neutral-600: #5c5c56; --neutral-500: #78786f; --neutral-400: #9a9a91; --neutral-300: #c2c2b8;
  --neutral-200: #e0e0d9; --neutral-100: #f0f0ec; --neutral-50: #f8f8f5; --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1200px; --pad-x: clamp(1.5rem, 5vw, 4rem);
  --radius-sm: 6px; --radius: 10px; --radius-lg: 16px; --radius-xl: 24px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); background: var(--neutral-50); color: var(--neutral-900);
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(7,26,14,0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08); z-index: 100; padding: 0 var(--pad-x);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo {
  font-size: 15px; font-weight: 700; letter-spacing: -0.02em; color: var(--white);
  text-decoration: none; display: flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 36px; height: 36px; background: var(--green-800); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark i[data-lucide] { width: 18px; height: 18px; color: var(--green-100); }
.nav-right { display: flex; align-items: center; gap: 0.5rem; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 450; color: var(--neutral-300);
  text-decoration: none; transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  font-size: 14px; font-weight: 600; background: var(--green-800); color: var(--white);
  padding: 10px 22px; border-radius: var(--radius); text-decoration: none;
  transition: all 0.2s var(--ease); cursor: pointer;
}
.nav-cta:hover { background: var(--green-700); }

/* Lang Pills — segmented control */
.lang-pills {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.08); border-radius: 8px; padding: 2px;
  margin-left: 20px;
  margin-right: 20px;
}
.lang-pill {
  font-family: var(--font); font-size: 12px; font-weight: 600;
  letter-spacing: 0.02em; color: var(--neutral-300);
  background: none; border: none; border-radius: 6px;
  padding: 5px 10px; cursor: pointer;
  transition: all 0.2s var(--ease); line-height: 1;
}
.lang-pill:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.lang-pill.active { color: var(--white); background: var(--green-700); box-shadow: var(--shadow-sm); }

/* Mobile nav */
.nav-mobile-btn {
  display: none; width: 44px; height: 44px; background: none; border: none;
  cursor: pointer; align-items: center; justify-content: center;
}
.nav-mobile-btn svg { width: 22px; height: 22px; color: var(--white); }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--white); z-index: 200;
  flex-direction: column; padding: 0 var(--pad-x);
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.mobile-menu-close {
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.mobile-menu-close i[data-lucide] { width: 22px; height: 22px; color: var(--neutral-800); }
.mobile-lang-row {
  display: flex; gap: 2px;
  background: var(--neutral-100); border-radius: 8px; padding: 3px;
  margin: 1rem 0;
}
.mobile-lang-btn {
  flex: 1; text-align: center;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  padding: 10px 0; border-radius: 6px;
  border: none; background: none; color: var(--neutral-500); cursor: pointer;
  transition: all 0.2s var(--ease);
}
.mobile-lang-btn.active { background: var(--green-800); color: var(--white); box-shadow: var(--shadow-sm); }
.mobile-menu-links {
  list-style: none; display: flex; flex-direction: column; gap: 0; padding-top: 1rem;
}
.mobile-menu-links a {
  display: block; font-size: 18px; font-weight: 500; color: var(--neutral-900);
  text-decoration: none; padding: 1rem 0; border-bottom: 1px solid var(--neutral-100);
}
.mobile-menu-cta {
  margin-top: 2rem; display: block; text-align: center; font-size: 16px; font-weight: 600;
  background: var(--green-800); color: var(--white); padding: 14px 24px;
  border-radius: var(--radius); text-decoration: none;
}

/* Utility */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
section { padding: 6rem 0; }
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green-600); margin-bottom: 1rem; display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--green-500); border-radius: 1px; }
h1, h2, h3 { font-weight: 700; line-height: 1.15; letter-spacing: -0.025em; color: var(--neutral-950); }
h1 { font-size: clamp(2.75rem, 5.5vw, 4.25rem); line-height: 1.06; }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.125rem; font-weight: 600; }

/* Hero */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden; padding-top: 72px;
  background: url('images/hero-sprout.png') center center / cover no-repeat;
  background-color: var(--green-950);
}
.hero-bg-image {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,26,14,0.55) 0%,
    rgba(7,26,14,0.35) 30%,
    rgba(7,26,14,0.3) 50%,
    rgba(7,26,14,0.65) 75%,
    rgba(7,26,14,0.92) 100%
  );
}
.hero-bg-pattern {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 32px 32px;
}
.hero-glow {
  position: absolute; width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(45,138,84,0.1) 0%, transparent 60%);
  top: -10%; right: -15%; pointer-events: none; z-index: 1;
}
.hero-glow-2 {
  position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,134,11,0.06) 0%, transparent 60%);
  bottom: 10%; left: -5%; pointer-events: none; z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--pad-x) 6rem; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--green-200);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 16px; border-radius: 100px; margin-bottom: 2rem;
  animation: fadeUp 0.5s var(--ease) both;
  margin-top: 30px;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--gold-light); border-radius: 50%; }
.hero-h1 {
  font-size: clamp(3rem, 6.5vw, 5.25rem); font-weight: 700; line-height: 1.04;
  letter-spacing: -0.035em; color: var(--white); max-width: 780px; margin-bottom: 1.75rem;
  animation: fadeUp 0.5s 0.05s var(--ease) both;
}
.hero-h1 em { font-style: normal; color: var(--gold-light); }
.hero-sub {
  font-size: 1.1rem; font-weight: 400; color: var(--green-300);
  max-width: 540px; line-height: 1.75; margin-bottom: 2.5rem;
  animation: fadeUp 0.5s 0.1s var(--ease) both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 5rem;
  animation: fadeUp 0.5s 0.15s var(--ease) both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--white); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: var(--radius); text-decoration: none;
  transition: all 0.2s var(--ease); cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184,134,11,0.25); }
.btn-primary svg { width: 16px; height: 16px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--green-200); font-weight: 500; font-size: 15px;
  padding: 14px 28px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); text-decoration: none; transition: all 0.2s var(--ease); cursor: pointer;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.3); color: var(--white); background: rgba(255,255,255,0.04); }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2.5rem;
  animation: fadeUp 0.5s 0.2s var(--ease) both;
}
.stat-item { padding-right: 2rem; }
.stat-item + .stat-item { padding-left: 2rem; border-left: 1px solid rgba(255,255,255,0.08); }
.stat-num {
  font-size: 2.25rem; font-weight: 700; letter-spacing: -0.03em;
  color: var(--white); display: block; line-height: 1.1; margin-bottom: 4px;
}
.stat-label { font-size: 13px; font-weight: 400; color: var(--green-300); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* Trust */
#trust { background: var(--white); padding: 1.75rem 0; border-bottom: 1px solid var(--neutral-200); }
.trust-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem;
}
.trust-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--neutral-400); white-space: nowrap;
}
.trust-items { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--neutral-600); }
.trust-item i[data-lucide] { width: 16px; height: 16px; color: var(--green-500); flex-shrink: 0; }

/* Problem */
#problem { background: var(--neutral-50); }
.problem-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.problem-left h2 { margin-bottom: 1.25rem; }
.problem-left p { font-size: 1.05rem; color: var(--neutral-500); line-height: 1.8; }
.problem-card {
  background: var(--white); border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow);
}
.problem-card-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--neutral-400); margin-bottom: 1.5rem;
}
.pain-item { display: flex; align-items: flex-start; gap: 12px; padding: 0.85rem 0; border-bottom: 1px solid var(--neutral-100); }
.pain-item:last-child { border-bottom: none; }
.pain-icon {
  width: 24px; height: 24px; flex-shrink: 0; background: #fef2f2; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.pain-icon i[data-lucide] { width: 12px; height: 12px; color: #dc2626; }
.pain-text { font-size: 14px; color: var(--neutral-700); line-height: 1.6; }

/* Products */
#products { background: var(--green-950); padding: 6rem 0; }
#products .eyebrow { color: var(--green-400); }
#products .eyebrow::before { background: var(--green-400); }
#products h2 { color: var(--white); }
.products-intro { color: var(--green-300); font-size: 1.05rem; max-width: 560px; margin: 1rem 0 2.5rem; line-height: 1.7; }
.products-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn {
  font-family: var(--font); font-size: 13px; font-weight: 500;
  padding: 8px 18px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1); background: transparent;
  color: var(--green-300); cursor: pointer; transition: all 0.2s var(--ease);
}
.tab-btn:hover, .tab-btn.active { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.15); }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); overflow: hidden;
}
.product-card { background: var(--green-900); padding: 2rem; transition: background 0.25s var(--ease); }
.product-card:hover { background: var(--green-800); }
.product-type-badge {
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 6px;
}
.product-type-badge i[data-lucide] { width: 13px; height: 13px; color: var(--gold-light); }
.product-name { font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.product-desc { font-size: 14px; color: var(--green-300); line-height: 1.65; margin-bottom: 1.25rem; }
.product-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.product-tag {
  font-size: 11px; font-weight: 500; padding: 4px 10px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px; color: var(--green-200);
}

/* Benefits */
#benefits { background: var(--white); }
.benefits-header { max-width: 560px; margin-bottom: 3.5rem; }
.benefits-header h2 { margin-bottom: 1rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.benefit-card {
  background: var(--neutral-50); border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg); padding: 2rem; transition: all 0.25s var(--ease);
}
.benefit-card:hover { border-color: var(--green-200); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 48px; height: 48px; background: var(--green-50); border: 1px solid var(--green-100);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.benefit-icon i[data-lucide] { width: 22px; height: 22px; color: var(--green-600); }
.benefit-num { font-size: 12px; font-weight: 600; color: var(--green-500); letter-spacing: 0.04em; margin-bottom: 0.5rem; }
.benefit-title { font-size: 1rem; font-weight: 600; color: var(--neutral-900); margin-bottom: 0.75rem; line-height: 1.35; }
.benefit-text { font-size: 14px; color: var(--neutral-500); line-height: 1.7; }

/* Process */
#process { background: var(--neutral-50); }
.process-header { max-width: 500px; margin-bottom: 3.5rem; }
.process-header h2 { margin-bottom: 1rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-card {
  background: var(--white); border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem; position: relative;
}
.process-num { font-size: 48px; font-weight: 700; letter-spacing: -0.04em; color: var(--neutral-100); line-height: 1; margin-bottom: 1rem; }
.process-icon {
  width: 44px; height: 44px; background: var(--green-50); border: 1px solid var(--green-100);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.process-icon i[data-lucide] { width: 20px; height: 20px; color: var(--green-600); }
.process-title { font-size: 1rem; font-weight: 600; color: var(--neutral-900); margin-bottom: 0.5rem; line-height: 1.35; }
.process-text { font-size: 14px; color: var(--neutral-500); line-height: 1.65; margin-bottom: 1rem; }
.process-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.process-chip {
  font-size: 11px; font-weight: 500; background: var(--neutral-50); border: 1px solid var(--neutral-200);
  padding: 4px 10px; border-radius: 100px; color: var(--neutral-600);
}

/* FAQ */
#faq { background: var(--white); }
.faq-header { max-width: 500px; margin-bottom: 3.5rem; }
.faq-header h2 { margin-bottom: 1rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.faq-card {
  background: var(--neutral-50); border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg); padding: 2rem; transition: border-color 0.2s var(--ease);
}
.faq-card:hover { border-color: var(--neutral-300); }
.faq-icon {
  width: 40px; height: 40px; background: var(--white); border: 1px solid var(--neutral-200);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.faq-icon i[data-lucide] { width: 18px; height: 18px; color: var(--green-600); }
.faq-q { font-size: 15px; font-weight: 600; color: var(--neutral-900); margin-bottom: 0.75rem; line-height: 1.4; }
.faq-a { font-size: 14px; color: var(--neutral-500); line-height: 1.7; }

/* CTA */
#cta { background: var(--green-900); position: relative; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 32px 32px;
}
.cta-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(45,138,84,0.12) 0%, transparent 60%);
  top: -20%; right: -10%; pointer-events: none;
}
.cta-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cta-left .eyebrow { color: var(--green-400); }
.cta-left .eyebrow::before { background: var(--green-400); }
.cta-left h2 { color: var(--white); margin-bottom: 1.25rem; }
.cta-sub { color: var(--green-300); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.cta-note { font-size: 13px; color: var(--green-400); margin-top: 1.25rem; }
.contact-form {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-lg);
}
.form-title { font-size: 18px; font-weight: 700; color: var(--neutral-900); margin-bottom: 1.75rem; letter-spacing: -0.02em; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--neutral-600); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; font-family: var(--font); font-size: 15px; color: var(--neutral-900);
  background: var(--neutral-50); border: 1px solid var(--neutral-200);
  border-radius: var(--radius); padding: 12px 16px; outline: none;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease); appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-500); background: var(--white); box-shadow: 0 0 0 3px rgba(45,138,84,0.1);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; font-family: var(--font); font-size: 15px; font-weight: 600;
  background: var(--green-800); color: var(--white); border: none;
  border-radius: var(--radius); padding: 14px; cursor: pointer;
  transition: background 0.2s var(--ease); margin-top: 0.25rem;
}
.form-submit:hover { background: var(--green-700); }

/* Footer */
footer { background: var(--neutral-950); padding: 4rem 0 2.5rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap; gap: 2rem;
}
.footer-brand { max-width: 320px; }
.footer-logo {
  font-size: 15px; font-weight: 700; letter-spacing: -0.02em; color: var(--white);
  display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; text-decoration: none;
}
.footer-desc { font-size: 14px; color: var(--neutral-400); line-height: 1.7; }
.footer-links { display: flex; gap: 4rem; }
.footer-col-title {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--neutral-500); margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--neutral-400); text-decoration: none;
  margin-bottom: 0.6rem; transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 14px; color: var(--neutral-400); margin-bottom: 0.4rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 13px; color: var(--neutral-600); }

/* Responsive */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-links { display: none; }
  .lang-pills { display: none; }
  .nav-mobile-btn { display: flex; }
  #hero { min-height: auto; }
  .hero-h1 { font-size: clamp(2.25rem, 8vw, 3.25rem); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-item + .stat-item { border-left: none; padding-left: 0; }
  .stat-item:nth-child(odd) { padding-right: 1rem; }
  .stat-item:nth-child(even) { padding-left: 1rem; border-left: 1px solid rgba(255,255,255,0.08); }
  .problem-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; gap: 1rem; }
  .process-grid { grid-template-columns: 1fr; gap: 1rem; }
  .faq-grid { grid-template-columns: 1fr; gap: 1rem; }
  .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 2rem; }
}

/* Illustrations */
.hero-illustration {
position: absolute; right: 0; bottom: 0; width: 520px; height: 480px;
pointer-events: none; opacity: 0.5; z-index: 2;
animation: fadeUp 1s 0.3s var(--ease) both;
}
.hero-illustration svg { width: 100%; height: 100%; }
.stat-icon { display: block; margin-bottom: 8px; flex-shrink: 0; }
.problem-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.problem-right .problem-card { margin-top: 1.5rem; }
.cta-deco {
position: absolute; inset: 0; width: 100%; height: 100%;
pointer-events: none; z-index: 0;
}
@media (max-width: 1024px) {
.hero-illustration { width: 360px; height: 340px; opacity: 0.4; }
}
@media (max-width: 768px) {
.hero-bg-image { background-position: center top; }
.hero-illustration { width: 260px; height: 240px; opacity: 0.25; right: -20px; }
}

/* A11y */
:focus-visible { outline: 2px solid var(--green-500); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
