:root {
  --bg: #FDFAF5;
  --bg-alt: #F5F0E8;
  --fg: #1A1A18;
  --fg-muted: #6B6760;
  --accent: #1B4332;
  --accent-warm: #D4A853;
  --border: #E8E2D8;
  --card-bg: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: sticky;
  top: 0;
  background: rgba(253,250,245,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.5px;
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(27,67,50,0.08);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 420px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  padding-right: 28px;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 28px;
}

/* ── CALL WIDGET ── */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.call-widget {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(27,67,50,0.10), 0 4px 16px rgba(0,0,0,0.04);
}

.call-header {
  background: var(--accent);
  color: white;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}

.call-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
}

.call-dot.active {
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0.1); }
}

.call-body { padding: 24px; }

.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
  margin-bottom: 16px;
}

.waveform span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.3;
  animation: wave 1.4s ease-in-out infinite;
}

.waveform span:nth-child(1) { height: 12px; animation-delay: 0s; }
.waveform span:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.waveform span:nth-child(3) { height: 28px; animation-delay: 0.2s; }
.waveform span:nth-child(4) { height: 36px; animation-delay: 0.3s; }
.waveform span:nth-child(5) { height: 32px; animation-delay: 0.4s; }
.waveform span:nth-child(6) { height: 24px; animation-delay: 0.5s; }
.waveform span:nth-child(7) { height: 16px; animation-delay: 0.6s; }
.waveform span:nth-child(8) { height: 28px; animation-delay: 0.7s; }
.waveform span:nth-child(9) { height: 20px; animation-delay: 0.8s; }
.waveform span:nth-child(10) { height: 14px; animation-delay: 0.9s; }
.waveform span:nth-child(11) { height: 22px; animation-delay: 1.0s; }
.waveform span:nth-child(12) { height: 30px; animation-delay: 1.1s; }
.waveform span:nth-child(13) { height: 18px; animation-delay: 1.2s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); opacity: 0.3; }
  50% { transform: scaleY(1.8); opacity: 0.7; }
}

.call-transcript {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
  margin-bottom: 16px;
  padding: 12px;
  background: var(--bg-alt);
  border-radius: 8px;
}

.ai-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

.ai-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse2 2s ease-in-out infinite;
}

@keyframes pulse2 {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.call-actions { display: flex; flex-direction: column; gap: 8px; }

.action-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
}

.action-chip.booked {
  color: var(--accent);
  border-color: rgba(27,67,50,0.2);
  background: rgba(27,67,50,0.05);
}

/* ── PROOF ── */
.proof {
  background: var(--accent);
  color: white;
  padding: 48px;
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proof-stat { text-align: center; padding: 0 32px; }

.proof-num {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-warm);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.proof-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  max-width: 220px;
  line-height: 1.5;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* ── FEATURES ── */
.features { padding: 96px 48px; }

.features-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

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

.features-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.features-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 520px;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--card-bg);
  padding: 40px 36px;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--bg-alt); }

.feature-card.featured {
  background: var(--accent);
  color: white;
}

.feature-card.featured .feature-desc { color: rgba(255,255,255,0.75); }
.feature-card.featured .feature-icon svg { stroke: var(--accent-warm); }
.feature-card.featured .feature-name { color: white; }

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(27,67,50,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card.featured .feature-icon { background: rgba(255,255,255,0.1); }

.feature-icon svg { stroke: var(--accent); }

.feature-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.howitworks {
  background: var(--bg-alt);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}

.how-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

.how-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  min-width: 80px;
  letter-spacing: -3px;
}

.step-body { flex: 1; }

.step-title {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.step-desc {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── PRICING NOTE ── */
.pricing-note {
  max-width: 1200px;
  margin: 56px auto 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.pricing-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
}

.pricing-block {
  text-align: center;
  padding: 0 24px;
}

.pricing-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 8px;
}

.pricing-val {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}

.pricing-sub {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
}

/* ── CLOSING ── */
.closing {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}

.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }

.closing-statement {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -1px;
  line-height: 1.25;
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; gap: 32px; }
  .proof-stat { padding: 0; }
  .pricing-inner { flex-direction: column; }
}

@media (max-width: 600px) {
  .nav, .hero, .proof, .features, .howitworks, .closing, .footer { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 48px; }
  .call-widget { max-width: 100%; }
  .step { gap: 24px; }
  .step-num { font-size: 48px; min-width: 56px; }
}