:root {
  --bg: #fafaf8;
  --bg-alt: #f0ede8;
  --fg: #0d1b2a;
  --fg-muted: #4a5568;
  --accent: #d97706;
  --accent-dark: #b45309;
  --navy: #0d1b2a;
  --surface: #ffffff;
  --border: #e2ddd6;
  --sms-in: #e8f4e8;
  --sms-out: #0d1b2a;
  --radius: 12px;
}

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

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

/* Navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}

/* Hero */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 80px 32px 96px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
}
.hero-lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-stat-row {
  display: flex;
  gap: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  max-width: 120px;
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  background: #1a1a2e;
  border-radius: 32px;
  padding: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
  width: 260px;
}
.phone-screen {
  background: #fff;
  border-radius: 22px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 320px;
}
.sms-bubble {
  max-width: 85%;
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
}
.sms-time {
  font-size: 10px;
  color: #999;
  margin-bottom: 3px;
}
.sms-bubble.incoming {
  background: var(--sms-in);
  color: #1a3a1a;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.sms-bubble.outgoing {
  background: var(--sms-out);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.booking-pill {
  margin-top: 8px;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}
.booking-icon {
  font-size: 14px;
}

/* Problem section */
.problem {
  padding: 96px 32px;
  background: var(--bg);
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.problem-header {
  margin-bottom: 56px;
}
.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.problem-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.problem-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--navy);
}
.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.problem-math {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 36px;
  text-align: center;
}
.problem-math p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
}
.problem-math strong {
  color: var(--accent);
  font-weight: 700;
}

/* How it works */
.how-it-works {
  padding: 96px 32px;
  background: var(--bg-alt);
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.how-inner .section-heading {
  margin-bottom: 56px;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step {
  position: relative;
}
.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(13, 27, 42, 0.1);
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* Outcomes */
.outcomes {
  padding: 96px 32px;
  background: var(--bg);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-inner .section-heading {
  margin-bottom: 48px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.outcome {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.outcome-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 14px;
}
.outcome h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.outcome p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.pricing-note {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 36px;
  text-align: center;
}
.pricing-note p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
}
.pricing-note strong {
  color: var(--accent);
  font-weight: 700;
}

/* Closing */
.closing {
  padding: 100px 32px;
  background: var(--bg-alt);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* Footer */
.site-footer {
  background: var(--navy);
  padding: 48px 32px;
  text-align: center;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  letter-spacing: 1px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    display: none;
  }
  .hero-stat-row {
    flex-wrap: wrap;
    gap: 24px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .steps-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 56px 24px 72px;
  }
  .problem, .how-it-works, .outcomes, .closing {
    padding: 64px 24px;
  }
  .nav-inner {
    padding: 16px 24px;
  }
}