:root {
  --bg: #f5f5f0;
  --bg-alt: #eaeae4;
  --fg: #0d1b2a;
  --fg-muted: #4a5568;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --navy: #0d1b2a;
  --white: #ffffff;
  --radius: 12px;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

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

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

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding-left: 16px;
  border-left: 1px solid rgba(13, 27, 42, 0.15);
}

/* HERO */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 40px 100px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  line-height: 1.65;
}

/* Phone Widget */
.hero-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.phone-shell {
  background: #1a2a3a;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 20px;
  width: 280px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05) inset;
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.phone-dots { display: flex; gap: 5px; }
.phone-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.phone-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-left: auto;
}
.phone-body { display: flex; flex-direction: column; gap: 10px; }
.call-incoming {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
}
.call-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.25);
  margin: 0 auto 6px;
  position: relative;
}
.call-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 12px; height: 12px;
  background: var(--accent);
  clip-path: polygon(20% 0, 80% 50%, 20% 100%);
}
.call-num { font-size: 0.8rem; color: var(--white); font-weight: 600; }
.call-tag { font-size: 0.65rem; color: var(--accent); margin-top: 2px; }
.transcript { display: flex; flex-direction: column; gap: 8px; }
.msg { border-radius: 10px; padding: 8px 10px; font-size: 0.7rem; line-height: 1.45; }
.ai-msg { background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.2); }
.caller-msg { background: rgba(255,255,255,0.07); }
.msg-label { display: block; font-size: 0.6rem; font-weight: 700; color: var(--accent); margin-bottom: 3px; }
.msg p { color: rgba(255,255,255,0.85); }
.booked-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.7rem;
  color: #4ade80;
  font-weight: 600;
}
.booked-icon {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booked-icon::after {
  content: '';
  width: 8px; height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translate(1px, -1px);
}
.widget-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  padding: 8px 20px;
}
.stat-num { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 0.65rem; color: rgba(255,255,255,0.5); }

/* PROOF BAR */
.proof-bar { background: var(--bg-alt); padding: 28px 40px; }
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-num { display: block; font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; color: var(--navy); }
.proof-desc { font-size: 0.78rem; color: var(--fg-muted); margin-top: 2px; }
.proof-divider { width: 1px; height: 40px; background: rgba(13,27,42,0.12); }

/* SECTION SHARED */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  max-width: 700px;
}

/* PROBLEM */
.problem { padding: 80px 40px; }
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem .section-headline { margin-bottom: 56px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.problem-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.problem-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(245,158,11,0.12);
  margin-bottom: 20px;
}
.problem-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.problem-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }
.problem-punch {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px 40px;
  color: var(--white);
}
.problem-punch p { font-size: 1.05rem; line-height: 1.65; }
.problem-punch strong { color: var(--accent); }

/* HOW IT WORKS */
.how { background: var(--bg-alt); padding: 80px 40px; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how .section-headline { margin-bottom: 56px; }
.steps { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; }
.step-num { display: block; font-family: var(--font-head); font-size: 2.5rem; font-weight: 900; color: rgba(13,27,42,0.1); margin-bottom: 16px; }
.step-body h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-body p { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.6; }
.step-connector { width: 40px; flex-shrink: 0; position: relative; align-self: center; }
.step-connector::after {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: linear-gradient(to right, rgba(245,158,11,0.4), var(--accent));
  margin: 0 12px;
}

/* OUTCOMES */
.outcomes { padding: 80px 40px; }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes .section-headline { margin-bottom: 48px; }
.outcomes-grid { display: flex; flex-direction: column; gap: 40px; }
.outcome { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; }
.outcome-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 16px; }
.outcome ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.outcome ul li { font-size: 0.9rem; padding-left: 20px; position: relative; color: var(--fg); }
.outcome ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.outcome-after ul li::before { background: #22c55e; }
.outcome-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outcome-arrow::after {
  content: '';
  width: 18px; height: 18px;
  border-right: 3px solid var(--accent);
  border-top: 3px solid var(--accent);
  transform: rotate(45deg) translate(-2px, -2px);
}
.outcome-stats { display: flex; gap: 48px; padding: 32px 0; border-top: 1px solid rgba(13,27,42,0.08); }
.o-stat { display: flex; flex-direction: column; gap: 4px; }
.o-num { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: var(--navy); }
.o-label { font-size: 0.78rem; color: var(--fg-muted); }

/* NICHES */
.niches { background: var(--navy); padding: 80px 40px; color: var(--white); }
.niches-inner { max-width: 1100px; margin: 0 auto; }
.niches .section-label { color: var(--accent); }
.niches .section-headline { color: var(--white); margin-bottom: 56px; }
.niche-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.niche-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 24px 20px; }
.niche-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(245,158,11,0.15);
  margin-bottom: 16px;
}
.niche-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--white); }
.niche-card p { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.niches-cta { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.3); margin-top: 48px; font-style: italic; }

/* CLOSING */
.closing { background: var(--accent); padding: 80px 40px; }
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.closing-sub { font-size: 1.05rem; color: var(--navy); opacity: 0.65; }

/* FOOTER */
.footer { background: var(--navy); color: rgba(255,255,255,0.4); padding: 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-logo { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.footer-desc { font-size: 0.85rem; margin-bottom: 16px; }
.footer-note { font-size: 0.72rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-widget { order: -1; }
  .proof-inner { gap: 24px; }
  .proof-divider { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 24px; }
  .step-connector::after { width: 2px; height: 24px; margin: 8px auto; background: linear-gradient(to bottom, rgba(245,158,11,0.4), var(--accent)); }
  .outcome { grid-template-columns: 1fr; }
  .outcome-arrow { display: none; }
  .niche-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero { padding: 48px 24px 64px; }
  .proof-bar { padding: 20px 24px; }
  .proof-inner { flex-direction: column; gap: 20px; }
  .problem, .how, .outcomes { padding: 56px 24px; }
  .niches { padding: 56px 24px; }
  .closing { padding: 56px 24px; }
  .niche-grid { grid-template-columns: 1fr; }
  .outcome-stats { flex-direction: column; gap: 20px; }
}