/* ─── Base Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EDE8;
  --fg: #0A0A0A;
  --fg-muted: #6B6B6B;
  --fg-subtle: #A0A0A0;
  --accent: #0D4F4F;
  --accent-light: #E8F4F4;
  --amber: #F59E0B;
  --amber-light: #FEF3C7;
  --green: #16A34A;
  --green-light: #DCFCE7;
  --red: #DC2626;
  --border: #E2DDD8;
  --card: #FFFFFF;
}

html { scroll-behavior: smooth; }
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;
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Syne', system-ui, sans-serif; line-height: 1.15; }

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  padding: 18px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  padding: 72px 40px 80px;
  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 left: live lead card demo */
.hero-left { position: relative; }
.hero-visual { position: relative; }

.lead-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.lead-card--new { border-left: 3px solid var(--amber); }
.lead-card--reply { border-left: 3px solid var(--accent); }
.lead-time {
  font-size: 11px;
  color: var(--fg-subtle);
  margin-bottom: 4px;
}
.lead-source {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.lead-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.5;
  font-style: italic;
}
.lead-response {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}
.lead-status {
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
  background: var(--green-light);
  display: inline-block;
  padding: 3px 8px;
  border-radius: 20px;
}
.lead-ai { margin-top: 10px; }
.ai-label {
  font-size: 10px;
  color: var(--fg-subtle);
  margin-bottom: 4px;
}
.ai-typing {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
}

.hero-badges {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.badge {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 20px;
}
.badge--fast { background: var(--amber-light); color: #92400E; }
.badge--book { background: var(--accent-light); color: var(--accent); }

/* Hero right */
.hero-kicker {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}
.hero-social { }
.social-proof-line {
  font-size: 13px;
  color: var(--fg-subtle);
}

/* ─── Proof ─────────────────────────────────────────────── */
.proof {
  padding: 64px 40px;
  background: var(--fg);
  color: var(--bg);
}
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-headline {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-subtle);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.proof-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 24px;
}
.proof-metric {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg-subtle);
  margin-bottom: 4px;
}
.proof-metric--green { color: #4ADE80; }
.proof-label {
  font-size: 12px;
  color: var(--fg-subtle);
  line-height: 1.4;
}
.proof-arrow {
  font-size: 18px;
  color: var(--amber);
  margin: 10px 0;
}
.proof-outro {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.proof-outro strong { color: rgba(255,255,255,0.8); }

/* ─── Features ──────────────────────────────────────────── */
.features {
  padding: 80px 40px;
  background: var(--bg);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header { margin-bottom: 48px; }
.features-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--fg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.feature-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.features-outro {
  font-size: 15px;
  color: var(--fg-muted);
  background: var(--accent-light);
  border: 1px solid #C5DDD8;
  border-radius: 10px;
  padding: 16px 20px;
}
.features-outro strong { color: var(--accent); }

/* ─── Outcomes ───────────────────────────────────────────── */
.outcomes {
  padding: 80px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.outcomes-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.outcomes-desc {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.outcomes-list { display: flex; flex-direction: column; gap: 12px; }
.outcome {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
}
.outcome-check {
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-event {
  padding: 16px 0 16px 24px;
  border-left: 2px solid var(--border);
  position: relative;
}
.timeline-event:last-child { border-left: 2px dashed var(--border); }
.timeline-event::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.timeline-event--done::before { background: var(--accent); }
.t-time {
  font-size: 11px;
  font-weight: 500;
  color: var(--amber);
  margin-bottom: 4px;
}
.t-text {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.timeline-event:last-child .t-text { color: var(--fg-subtle); }

/* ─── Niche ────────────────────────────────────────────── */
.niche {
  padding: 80px 40px;
  background: var(--accent);
  color: var(--bg);
}
.niche-inner { max-width: 1200px; margin: 0 auto; }
.niche-header { margin-bottom: 48px; }
.niche-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--bg);
}
.niche .section-label { color: #7DCFCB; }
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.niche-fact {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 28px 24px;
}
.niche-stat {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.niche-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.niche-quote {
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-left: 24px;
  border-left: 3px solid var(--amber);
}
.niche-biz {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

/* ─── Closing ───────────────────────────────────────────── */
.closing {
  padding: 96px 40px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-eyebrow {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 16px;
}
.closing-headline {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.15;
}
.closing-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.closing-cta-note {
  font-size: 16px;
  color: var(--fg-muted);
  padding: 20px 32px;
  background: var(--accent-light);
  border: 1px solid #C5DDD8;
  border-radius: 10px;
  display: inline-block;
}
.closing-cta-note strong { color: var(--accent); }

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.footer-tag {
  font-size: 12px;
  color: var(--fg-subtle);
}
.footer-tag a {
  color: var(--accent);
  text-decoration: none;
}
.footer-tag a:hover { text-decoration: underline; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner,
  .outcomes-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-left { order: 2; }
  .hero-right { order: 1; }
  .proof-grid,
  .features-grid { grid-template-columns: 1fr 1fr; }
  .niche-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 24px 56px; }
  .features, .outcomes, .niche, .closing { padding: 56px 24px; }
  .proof { padding: 48px 24px; }
  .nav { padding: 14px 24px; }
}

@media (max-width: 600px) {
  .proof-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}