:root {
  --bg: #0b2e1c;
  --bg-secondary: #0f3d24;
  --fg: #e8f4ee;
  --fg-muted: #8abfa2;
  --accent: #f0a500;
  --accent-dim: #c48800;
  --surface: #153d26;
  --border: rgba(240,165,0,0.15);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* ── NAV ── */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.nav-logo-accent { color: var(--accent); }
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

/* ── HERO ── */
.hero {
  padding: 80px 48px 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
}

/* ── CALL SIM WIDGET ── */
.call-sim {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.call-sim-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.call-messages {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.call-msg {
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
}
.call-caller {
  background: rgba(240,165,0,0.08);
  border: 1px solid rgba(240,165,0,0.2);
  color: var(--fg-muted);
  align-self: flex-end;
  max-width: 85%;
}
.call-ai {
  background: rgba(240,165,0,0.12);
  border: 1px solid rgba(240,165,0,0.25);
  color: var(--fg);
  font-weight: 500;
  align-self: flex-start;
}
.call-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
}
.call-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── PROOF STATS ── */
.proof {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px;
}
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.proof-stat { flex: 1; text-align: center; }
.proof-stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.proof-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── HOW ── */
.how { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 56px;
  max-width: 640px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step p { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

/* ── NICHES ── */
.niches { padding: 80px 48px; background: var(--bg-secondary); }
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.niche-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}
.niche-card:hover { border-color: rgba(240,165,0,0.3); }
.niche-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.niche-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.niche-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* ── PRICING ── */
.pricing { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.pricing-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.pricing-per { font-size: 18px; font-weight: 400; color: var(--fg-muted); }
.pricing-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.6; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.pricing-target {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.pricing-target-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.pricing-target-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.pricing-target-num strong { color: var(--accent); }

/* ── CLOSING ── */
.closing {
  padding: 96px 48px;
  text-align: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.3;
  max-width: 720px;
  margin: 0 auto 64px;
  color: var(--fg);
}
.closing-vision {
  max-width: 540px;
  margin: 0 auto;
}
.closing-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.closing-vision p { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

/* ── FOOTER ── */
.footer { padding: 40px 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; }
.footer-logo { font-family: var(--font-display); font-size: 18px; font-weight: 700; display: block; }
.footer-logo-accent { color: var(--accent); }
.footer-desc { font-size: 13px; color: var(--fg-muted); margin-top: 8px; max-width: 320px; }
.footer-bottom { font-size: 12px; color: var(--fg-muted); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-widget { display: none; }
  .proof { padding: 40px 24px; }
  .proof-stats { flex-direction: column; gap: 24px; }
  .proof-divider { width: 40px; height: 1px; }
  .how { padding: 64px 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .niches { padding: 64px 24px; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .pricing { padding: 64px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
}
@media (max-width: 480px) {
  .niches-grid { grid-template-columns: 1fr; }
}