:root {
  --bg: #F9F8F4;
  --bg-alt: #F0EFE9;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --teal: #0D4F5C;
  --teal-light: #1A6B7A;
  --teal-bg: #E8F4F6;
  --border: #E0DED7;
  --white: #FFFFFF;
}

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

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

h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.2;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--fg);
  margin-bottom: 48px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--teal);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 80px 24px 80px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 5vw, 60px);
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-headline em {
  color: var(--teal);
  font-style: italic;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.stat-card--secondary {
  border-left: 4px solid var(--accent);
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.feature-callouts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.callout {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}
.callout-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* PROBLEM */
.problem {
  background: var(--teal);
  padding: 80px 24px;
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problem .section-label { color: rgba(255,255,255,0.5); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.problem-stat {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-icon {
  color: var(--accent);
}
.problem-text {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.problem-resolution {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 32px;
  font-size: 18px;
  color: white;
  font-weight: 500;
  border-left: 4px solid var(--accent);
}

/* SERVICES */
.services {
  padding: 80px 24px;
  background: var(--bg);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 32px;
  transition: box-shadow 0.2s;
}
.service-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PROOF */
.proof {
  padding: 80px 24px;
  background: var(--bg-alt);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.proof-metric {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.proof-big {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 12px;
}
.proof-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.proof-context {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.proof-context p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* HOW */
.how {
  padding: 80px 24px;
  background: var(--bg);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--teal);
  opacity: 0.3;
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 {
  font-size: 24px;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* PRICING */
.pricing {
  padding: 80px 24px;
  background: var(--teal);
}
.pricing .section-label { color: rgba(255,255,255,0.5); }
.pricing .section-headline { color: white; }
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 36px 36px 40px;
  position: relative;
}
.pricing-card--featured {
  background: rgba(245, 158, 11, 0.12);
  border-color: var(--accent);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 36px;
  background: var(--accent);
  color: var(--fg);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: 'DM Serif Display', serif;
  font-size: 44px;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-period {
  font-size: 20px;
  font-weight: 400;
}
.pricing-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.8;
  flex-shrink: 0;
}
.pricing-note {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* CLOSING */
.closing {
  padding: 100px 24px;
  background: var(--bg);
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-quote {
  margin-bottom: 40px;
}
.closing-statement {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3.5vw, 36px);
  color: var(--fg);
  line-height: 1.4;
  font-style: italic;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  background: var(--fg);
  padding: 60px 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {
  margin-bottom: 32px;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: white;
  display: block;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 48px;
}
.footer-links span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .step-number { font-size: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 24px; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 32px; }
  .proof-big { font-size: 40px; }
  .pricing-price { font-size: 32px; }
  .closing-statement { font-size: 22px; }
}