:root {
  --bg: #F8F5F0;
  --fg: #1A1A18;
  --fg-muted: #6B6B63;
  --accent: #D97706;
  --accent-dark: #92400E;
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --white: #FFFFFF;
  --off-white: #FDFCF9;
  --border: #E0DCD4;
  --shadow: 0 2px 12px rgba(26, 26, 24, 0.06);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

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

/* Typography */
h1, h2, h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

/* Navbar */
.navbar {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}
.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.navbar-logo {
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--green-deep);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.navbar-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* Hero */
.hero {
  padding: 5rem 2rem 4rem;
  background: var(--off-white);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.hero-overline {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--green-deep);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}
.hero-lede {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.1875rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 44ch;
}
.hero-stat-cluster {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem;
  background: var(--green-deep);
  border-radius: 4px;
}
.hero-stat { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 2rem; }
.hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.25rem;
  font-family: 'DM Sans', sans-serif;
}
.hero-stat-label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}

/* Problem */
.problem { padding: 5rem 2rem; }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-header { margin-bottom: 3.5rem; }
.problem-headline { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--green-deep); margin-bottom: 1rem; }
.problem-sub { font-family: 'Instrument Serif', serif; font-size: 1.125rem; color: var(--fg-muted); max-width: 60ch; line-height: 1.7; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.problem-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
}
.problem-icon { color: var(--green-mid); flex-shrink: 0; }
.problem-text { font-size: 0.9375rem; font-weight: 500; color: var(--fg); }
.problem-callout {
  font-family: 'Instrument Serif', serif;
  font-size: 1.125rem;
  color: var(--green-deep);
  font-style: italic;
  max-width: 55ch;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}

/* Services */
.services { padding: 5rem 2rem; background: var(--off-white); }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-header { margin-bottom: 3.5rem; }
.services-overline { font-size: 0.8125rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.services-headline { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--green-deep); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { padding: 2rem; background: var(--white); border: 1px solid var(--border); border-radius: 3px; }
.service-number { font-size: 0.8125rem; font-weight: 700; color: var(--accent); margin-bottom: 1rem; font-family: 'DM Sans', sans-serif; }
.service-title { font-size: 1.0625rem; font-weight: 700; color: var(--green-deep); margin-bottom: 0.75rem; }
.service-desc { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.6; }

/* Process */
.process { padding: 5rem 2rem; }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { margin-bottom: 3.5rem; }
.process-overline { font-size: 0.8125rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.process-headline { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--green-deep); }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--border); border-radius: 3px; overflow: hidden; }
.process-step { padding: 2.5rem 2rem; border-right: 1px solid var(--border); background: var(--white); }
.process-step:last-child { border-right: none; }
.step-marker { font-size: 0.75rem; font-weight: 700; color: var(--white); background: var(--green-deep); display: inline-block; padding: 0.25rem 0.75rem; border-radius: 2px; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.step-title { font-size: 1.0625rem; font-weight: 700; color: var(--green-deep); margin-bottom: 0.75rem; }
.step-desc { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.6; }

/* Pricing */
.pricing { padding: 5rem 2rem; background: var(--green-deep); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-header { margin-bottom: 3rem; }
.pricing-overline { font-size: 0.8125rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.pricing-headline { font-size: clamp(1.75rem, 4vw, 2.5rem); color: var(--white); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.pricing-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; padding: 2.5rem; }
.pricing-card-label { font-size: 0.75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.pricing-amount { font-size: 2.5rem; font-weight: 800; color: var(--white); font-family: 'DM Sans', sans-serif; margin-bottom: 0.5rem; }
.pricing-period { font-size: 1.25rem; font-weight: 600; }
.pricing-note { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 1.75rem; line-height: 1.5; }
.pricing-features { list-style: none; }
.pricing-features li { font-size: 0.9375rem; color: rgba(255,255,255,0.8); padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '— '; color: var(--accent); font-weight: 600; margin-right: 0.5rem; }
.pricing-proof { padding: 1.75rem; background: rgba(217,119,6,0.12); border: 1px solid rgba(217,119,6,0.25); border-radius: 3px; }
.proof-text { font-family: 'Instrument Serif', serif; font-size: 1.0625rem; color: rgba(255,255,255,0.9); font-style: italic; line-height: 1.6; }

/* Closing */
.closing { padding: 6rem 2rem; background: var(--off-white); }
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-headline { font-size: clamp(2rem, 5vw, 3.25rem); color: var(--green-deep); margin-bottom: 1.5rem; line-height: 1.1; }
.closing-body { font-family: 'Instrument Serif', serif; font-size: 1.1875rem; color: var(--fg-muted); max-width: 58ch; line-height: 1.7; }

/* Footer */
.footer { padding: 3rem 2rem; border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo { font-size: 1.125rem; font-weight: 800; color: var(--green-deep); margin-bottom: 0.75rem; }
.footer-desc { font-size: 0.9375rem; color: var(--fg-muted); max-width: 44ch; line-height: 1.6; margin-bottom: 1.5rem; }
.footer-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.footer-meta { font-size: 0.8125rem; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stat-cluster { padding: 2rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero, .problem, .services, .process, .pricing, .closing, .footer { padding-left: 1.25rem; padding-right: 1.25rem; }
  .navbar { padding: 1rem 1.25rem; }
}