/* === TYPOGRAPHY === */
:root {
  --bg: #0d1117;
  --surface: #161b22;
  --border: #2a2f3a;
  --fg: #f0f0ec;
  --fg-muted: #8b929e;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg);
}
.logo-mark { color: var(--accent); font-size: 1.4rem; }
.navbar-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* === HERO === */
.hero {
  padding: 80px 32px 60px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.headline-accent { color: var(--accent); }
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* === PHONE WIDGET === */
.phone-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,158,11,0.1);
}
.phone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #1c2128, #161b22);
  border-bottom: 1px solid var(--border);
}
.phone-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #0d1117;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-name { font-weight: 600; font-size: 0.9rem; }
.phone-status {
  font-size: 0.75rem;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.call-feed {
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.call-item {
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}
.call-time { font-size: 0.7rem; color: var(--fg-muted); margin-bottom: 3px; }
.call-text { font-size: 0.82rem; color: var(--fg); line-height: 1.4; font-style: italic; }
.call-action {
  font-size: 0.72rem;
  margin-top: 4px;
  font-weight: 500;
}
.call-booked { color: #4ade80; }
.call-routed { color: #60a5fa; }
.call-qualified { color: var(--accent); }
.phone-stats-row {
  display: flex;
  border-top: 1px solid var(--border);
}
.phone-stat {
  flex: 1;
  padding: 12px 20px;
  text-align: center;
}
.phone-stat:first-child { border-right: 1px solid var(--border); }
.stat-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.72rem; color: var(--fg-muted); margin-top: 2px; }

/* === STATS BAND === */
.stats-band {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 40px 32px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.stat-block { flex: 1; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-desc { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.5; }
.stat-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
}

/* === PROBLEM === */
.problem {
  padding: 100px 32px;
  border-bottom: 1px solid var(--border);
}
.problem-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  max-width: 700px;
  margin-bottom: 20px;
}
.problem-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 60px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.problem-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.problem-desc { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.6; }

/* === SOLUTION === */
.solution {
  padding: 100px 32px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border);
}
.solution-inner { max-width: 1200px; margin: 0 auto; }
.solution-header { margin-bottom: 64px; }
.solution-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
  max-width: 640px;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  padding-top: 4px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc { font-size: 0.92rem; color: var(--fg-muted); line-height: 1.7; max-width: 580px; }

/* === NICHES === */
.niches {
  padding: 100px 32px;
  border-bottom: 1px solid var(--border);
}
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niches-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
  max-width: 640px;
  margin-bottom: 56px;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.niche-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0.6;
}
.niche-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.niche-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.niche-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.niche-desc { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.6; margin-bottom: 20px; }
.niche-retainer {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 100px 32px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
  max-width: 640px;
  margin-bottom: 56px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.testimonial-quote {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}
.author-name { font-size: 0.82rem; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.author-detail { font-size: 0.78rem; color: var(--fg-muted); }

/* === CLOSING === */
.closing {
  padding: 100px 32px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.closing-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.closing-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 28px;
  display: block;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-offer {
  display: inline-block;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 100px;
  padding: 16px 32px;
}
.offer-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.offer-pricing {
  font-size: 1.05rem;
  color: var(--fg);
}
.offer-pricing strong { color: var(--accent); }

/* === FOOTER === */
.footer {
  padding: 48px 32px;
  background: var(--bg);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 12px;
}
.footer-tagline { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 16px; }
.footer-copy { font-size: 0.78rem; color: var(--fg-muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .stats-inner { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .step-number { font-size: 1.8rem; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 20px 40px; }
  .problem { padding: 60px 20px; }
  .solution { padding: 60px 20px; }
  .niches { padding: 60px 20px; }
  .testimonials { padding: 60px 20px; }
  .closing { padding: 60px 20px; }
  .navbar-inner { padding: 14px 20px; }
  .navbar-tagline { display: none; }
  .stat-value { font-size: 1.8rem; }
}