:root {
  --bg: #FFFDF7;
  --fg: #1B1B1B;
  --green-dark: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --amber: #F59E0B;
  --amber-light: #FCD34D;
  --cream: #FFFDF7;
  --muted: #6B7280;
  --border: #E5E1D8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--green-dark);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
}

/* ─── HERO ─── */
.hero {
  padding: 5rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.65;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stat-card {
  background: var(--green-dark);
  color: var(--cream);
  padding: 1.5rem;
  border-radius: 12px;
}
.stat-card--amber { background: var(--amber); color: var(--green-dark); }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* ─── SHARED SECTION ELEMENTS ─── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: 3rem;
}

/* ─── THE PROBLEM ─── */
.the-problem {
  background: var(--green-dark);
  color: var(--cream);
  padding: 5rem 2rem;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem-inner .section-label { color: var(--amber-light); }
.problem-inner .section-headline { color: var(--cream); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.problem-item { padding: 0; }
.problem-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,253,247,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--amber-light);
}
.problem-item h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--cream);
}
.problem-item p {
  font-size: 0.9rem;
  color: rgba(255,253,247,0.7);
  line-height: 1.6;
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  padding: 5rem 2rem;
  background: var(--cream);
}
.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--amber);
  line-height: 1;
  padding-top: 0.1rem;
}
.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--green-dark);
}
.step-content p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── FEATURES ─── */
.features {
  padding: 5rem 2rem;
  background: #F5F0E8;
  border-top: 1px solid var(--border);
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
}
.feature { padding: 0; }
.feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  margin-bottom: 1rem;
}
.feature h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.feature p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── CLOSING ─── */
.closing {
  padding: 5rem 2rem;
  background: var(--green-dark);
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-statement {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(255,253,247,0.65);
}

/* ─── FOOTER ─── */
.footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--green-dark);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 3rem 1.5rem 3rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .the-problem { padding: 3.5rem 1.5rem; }
  .how-it-works { padding: 3.5rem 1.5rem; }
  .features { padding: 3.5rem 1.5rem; }
  .closing { padding: 3.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}