:root {
  --bg: #0f172a;
  --bg-2: #111827;
  --bg-card: #1e293b;
  --fg: #f1f5f9;
  --fg-muted: #94a3b8;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(148, 163, 184, 0.15);
  --green: #22c55e;
  --green-dim: rgba(34, 197, 94, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
}

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

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;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── SECTIONS ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}

/* ── HERO ── */
.hero {
  padding: 130px 24px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label { font-size: 12px; color: var(--fg-muted); }

/* ── CALL WIDGET ── */
.hero-visual { display: flex; justify-content: flex-end; }
.call-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.call-widget-header {
  background: var(--bg-2);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
}
.call-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 var(--green-dim);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.call-time { margin-left: auto; font-size: 12px; color: var(--accent); font-weight: 600; }
.call-widget-body { padding: 18px; }
.call-info { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.caller-avatar {
  width: 36px; height: 36px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.caller-name { font-size: 13px; font-weight: 600; color: var(--fg); }
.caller-number { font-size: 11px; color: var(--fg-muted); }
.ai-status { margin-bottom: 16px; }
.ai-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--green);
  margin-bottom: 10px;
}
.ai-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s infinite;
}
.ai-transcript { display: flex; flex-direction: column; gap: 6px; }
.transcript-line {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 6px;
  line-height: 1.4;
}
.transcript-line.user { background: rgba(148,163,184,0.1); color: var(--fg-muted); }
.transcript-line.ai { background: var(--accent-dim); color: var(--accent); font-weight: 500; }
.call-actions { display: flex; flex-direction: column; gap: 6px; }
.action-done {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500;
  color: var(--green);
  background: var(--green-dim);
  padding: 6px 10px;
  border-radius: 6px;
}

/* ── FEATURES ── */
.features { padding: 96px 24px; background: var(--bg-2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(245,158,11,0.3); }
.feature-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 16px; font-weight: 600;
  color: var(--fg); margin-bottom: 8px;
}
.feature-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how-it-works { padding: 96px 24px; background: var(--bg); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-right: none; }
.step-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 42px; font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 12px;
}
.step h3 { font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* ── NICHES ── */
.niches { padding: 96px 24px; background: var(--bg-2); }
.niche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.niche-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.niche-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-2px); }
.niche-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.niche-card h3 { font-size: 15px; font-weight: 600; color: var(--fg); margin-bottom: 8px; }
.niche-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.55; }

/* ── OUTCOMES ── */
.outcomes { padding: 96px 24px; background: var(--bg); }
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.outcome-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px; font-weight: 700;
  color: var(--fg); line-height: 1.2;
  margin-bottom: 20px;
}
.outcome-text > p { font-size: 15px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 16px; }
.outcome-stats { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.outcome-stat { display: flex; align-items: flex-start; gap: 16px; }
.outcome-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px; font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
}
.outcome-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }
.outcome-quote {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 36px;
}
.outcome-quote blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px; font-weight: 600;
  color: var(--fg); line-height: 1.5;
  margin-bottom: 20px;
  font-style: normal;
}
.outcome-quote cite { font-size: 13px; color: var(--fg-muted); font-style: normal; }

/* ── CLOSING ── */
.closing { padding: 100px 24px; background: var(--bg-2); text-align: center; }
.closing h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--fg);
  line-height: 1.2; letter-spacing: -0.5px;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto; margin-right: auto;
}
.closing p { font-size: 17px; color: var(--fg-muted); line-height: 1.65; max-width: 600px; margin: 0 auto 16px; }
.closing-cta {
  font-size: 18px; font-weight: 600; color: var(--accent) !important;
  margin-top: 24px;
}

/* ── FOOTER ── */
.footer { padding: 40px 24px; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 700; color: var(--fg); }
.footer-brand p { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }
.footer-note { font-size: 13px; color: var(--fg-muted); }
.footer-note a { color: var(--accent); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { justify-content: flex-start; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .niche-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .niche-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 100px; }
  .hero-stats { gap: 20px; }
}