:root {
  --bg: #FAFAF5;
  --surface: #FFFFFF;
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --amber: #D97706;
  --amber-light: #F59E0B;
  --text-dark: #1A1A1A;
  --text-mid: #3D3D3D;
  --text-light: #6B6B6B;
  --border: #E5E5D8;
  --shadow: 0 4px 24px rgba(27, 67, 50, 0.08);
}

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

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

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

/* NAVBAR */
.navbar {
  padding: 20px 0 16px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
}

/* SECTION COMMON */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  color: var(--green-deep);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.7;
}

/* HERO */
.hero {
  padding: 72px 0 80px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 20px;
  display: inline-block;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--green-deep);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-proof {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-stat {
  display: flex;
  flex-direction: column;
}
.proof-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.proof-label {
  font-size: 0.85rem;
  color: var(--text-light);
  max-width: 200px;
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  align-self: center;
}

/* MISSED CALLS */
.missed-calls {
  padding: 80px 0;
  background: var(--green-deep);
  color: #fff;
}
.missed-calls .section-headline { color: #fff; }
.missed-calls .section-body { color: rgba(255,255,255,0.75); }
.missed-calls .section-label { color: var(--amber-light); }
.callout-box {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 480px;
}
.callout-icon { color: var(--amber-light); flex-shrink: 0; }
.callout-text { font-size: 0.95rem; color: rgba(255,255,255,0.9); line-height: 1.5; }
.callout-text strong { color: #fff; }

/* BOOKINGS */
.bookings {
  padding: 96px 0;
  background: var(--bg);
}
.bookings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  font-size: 0.95rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.feature-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green-mid);
}

/* CHAT WINDOW */
.chat-window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.875rem;
}
.chat-header {
  background: var(--green-deep);
  color: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.875rem;
}
.chat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}
.chat-dot.green { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,0.3); }
.chat-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 12px;
  line-height: 1.5;
  font-size: 0.875rem;
}
.chat-msg.bot { background: var(--green-deep); color: #fff; align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.human { background: #E8F4EC; color: var(--green-deep); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-status {
  padding: 8px 16px 12px;
  font-size: 0.75rem;
  color: var(--green-light);
  font-weight: 500;
  text-align: center;
}

/* REVIEWS */
.reviews {
  padding: 96px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.review-flow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.rf-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-mid);
  width: 100%;
}
.rf-step.rf-highlight { background: #FEF9EC; border-color: var(--amber); color: var(--green-deep); font-weight: 600; }
.rf-icon { color: var(--green-mid); flex-shrink: 0; }
.rf-step.rf-highlight .rf-icon { color: var(--amber); }
.rf-arrow { font-size: 1.2rem; color: var(--text-light); padding-left: 4px; }
.stat-highlight {
  margin-top: 32px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.stat-big {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 3rem;
  color: var(--green-deep);
  line-height: 1;
}
.stat-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 220px;
  line-height: 1.4;
}

/* OUTCOMES / PRICING */
.outcomes {
  padding: 96px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.outcomes-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 16px;
}
.outcomes-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--green-deep);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.outcomes-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.pricing-tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
}
.pricing-tier--featured {
  background: var(--green-deep);
  color: #fff;
  border-color: var(--green-deep);
  position: relative;
}
.pricing-tier-name {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: var(--text-light);
}
.pricing-tier--featured .pricing-tier-name { color: rgba(255,255,255,0.6); }
.pricing-tier-price {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-tier--featured .pricing-tier-price { color: #fff; }
.pricing-tier-price span { font-size: 1rem; font-weight: 400; opacity: 0.7; }
.pricing-tier-detail {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.pricing-tier--featured .pricing-tier-detail { color: rgba(255,255,255,0.6); }
.pricing-tier-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.pricing-tier--featured .pricing-tier-desc { color: rgba(255,255,255,0.8); }
.outcomes-roi {
  background: #E8F4EC;
  border-radius: 12px;
  padding: 20px 24px;
  max-width: 600px;
}
.outcomes-roi p {
  font-size: 0.95rem;
  color: var(--green-deep);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 96px 0;
  background: var(--green-deep);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 48px 0;
  background: var(--surface);
  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: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-deep);
  display: block;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  max-width: 300px;
  line-height: 1.6;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .bookings-grid,
  .reviews-grid { grid-template-columns: 1fr; gap: 48px; }
  .outcomes-pricing { grid-template-columns: 1fr; }
  .hero-proof { flex-direction: column; gap: 20px; }
  .proof-divider { display: none; }
  .footer-inner { flex-direction: column; }
  .footer-tagline { text-align: left; }
  .nav-inner { padding: 0 20px; }
  .section-inner { padding: 0 20px; }
  .hero-inner { padding: 0 20px; }
  .closing-inner { padding: 0 20px; }
  .chat-window { margin-top: 0; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 0 56px; }
  .pricing-tier { padding: 24px 20px; }
  .section-headline { font-size: 1.75rem; }
  .closing-headline { font-size: 1.75rem; }
}