:root {
  --bg: #f5f0e8;
  --bg-alt: #ede8de;
  --fg: #1a1a16;
  --fg-muted: #5a5a50;
  --accent: #e8a838;
  --accent-dark: #c48a20;
  --green: #1a3a2a;
  --green-light: #2a5a40;
  --border: rgba(26, 58, 42, 0.15);
  --radius: 12px;
  --font-display: 'DM Sans', system-ui, sans-serif;
  --font-body: 'Source Serif 4', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--green);
}

/* ── SECTION SHARED ── */
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--green);
}

/* ── HERO ── */
.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.hero-headline {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--green);
  margin-bottom: 24px;
}
.hero-sub {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 56px;
}
.hero-stats {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--green);
  color: #fff;
  overflow: hidden;
}
.hero-stat {
  flex: 1;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 96px 0;
  background: var(--bg-alt);
}
.how-it-works .section-label,
.how-it-works .section-headline {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 32px;
}
.how-it-works .section-headline {
  margin-bottom: 56px;
}
.steps {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: -0.05em;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green);
  margin-bottom: 10px;
}
.step-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── SERVICES ── */
.services {
  padding: 96px 0;
  background: var(--bg);
}
.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.services-header {
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  padding: 36px 32px;
  background: var(--bg);
  transition: background 0.2s;
}
.service-card:hover {
  background: #faf8f2;
}
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  border-radius: 10px;
  margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing {
  padding: 96px 0;
  background: var(--green);
  color: #fff;
  text-align: center;
}
.pricing .section-label {
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing .section-headline {
  color: #fff;
  margin-bottom: 48px;
}
.pricing-card {
  max-width: 560px;
  margin: 0 auto 48px;
  padding: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  text-align: left;
}
.pricing-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  letter-spacing: -0.05em;
  color: var(--accent);
}
.pricing-period {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.pricing-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 32px 0;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 2px;
}
.pricing-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
.pricing-math {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
}
.math-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.math-row:last-child { border-bottom: none; }
.math-label { color: rgba(255,255,255,0.5); }
.math-value { color: rgba(255,255,255,0.9); font-weight: 700; }
.math-highlight { color: var(--accent); font-size: 1.1rem; }

/* ── PROOF ── */
.proof {
  padding: 96px 0;
  background: var(--bg-alt);
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.proof-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-top: 20px;
}
.ideal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ideal-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.ideal-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 0;
  background: var(--green);
  color: #fff;
  text-align: center;
}
.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 48px;
}
.closing-tagline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--green);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 2px;
  display: block;
}
.footer-links {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 64px 0 56px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; }
  .hero-stat-divider { width: 100%; height: 1px; }
  .steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .proof-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .pricing-card { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 0; }
  .hero-stat { padding: 20px 20px; }
  .stat-value { font-size: 1.6rem; }
}