:root {
  --bg: #0F1623;
  --bg-secondary: #151E2D;
  --bg-card: #1A2436;
  --fg: #E8EDF4;
  --fg-muted: #8899AA;
  --accent: #F59E0B;
  --accent-dim: #B47608;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --success: #10B981;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Space Grotesk', 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);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(15, 22, 35, 0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 80px 48px 64px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 0;
  align-items: flex-start;
}
.stat {
  padding-right: 32px;
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 120px;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 4px 32px 0 0;
}

/* CALL WIDGET */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.call-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,158,11,0.1);
}
.call-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.call-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.call-dot.incoming { background: var(--success); box-shadow: 0 0 8px var(--success); }
.call-label { font-size: 13px; color: var(--fg-muted); font-weight: 500; }
.call-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.transcript-line { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }
.transcript-line.ai-line { background: rgba(245,158,11,0.08); border-radius: 8px; padding: 10px 12px; border-left: 2px solid var(--accent); }
.speaker { font-weight: 600; }
.speaker.caller { color: var(--fg); }
.speaker.ai { color: var(--accent); }
.booking-confirmed {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--success);
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: 4px;
}
.widget-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SECTIONS COMMON */
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  letter-spacing: -0.8px;
  margin-bottom: 48px;
}

/* PROOF */
.proof {
  padding: 80px 48px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-label { font-size: 13px; color: var(--fg-muted); margin-bottom: 24px; font-weight: 500; }
.proof-quote-block { margin-bottom: 56px; }
.proof-quote {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.4;
  letter-spacing: -0.5px;
  font-style: normal;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin-bottom: 12px;
}
.proof-attribution { font-size: 14px; color: var(--fg-muted); padding-left: 24px; }
.proof-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.proof-stat { padding: 32px 40px 32px 0; border-right: 1px solid var(--border); }
.proof-stat:last-child { border-right: none; padding-right: 0; }
.proof-stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.proof-stat-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* FEATURES */
.features { padding: 80px 48px; background: var(--bg); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(245,158,11,0.3); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* HOW */
.how { padding: 80px 48px; background: var(--bg-secondary); border-top: 1px solid var(--border); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.steps-row { display: flex; align-items: flex-start; gap: 0; }
.step { flex: 1; padding-right: 32px; }
.step-connector { width: 64px; height: 1px; background: var(--border); align-self: 48px; flex-shrink: 0; margin: 0 16px; }
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.step-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--fg); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* PRICING */
.pricing { padding: 80px 48px; background: var(--bg); border-top: 1px solid var(--border); }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), inset 0 0 60px rgba(245,158,11,0.05);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0F1623;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 16px;
  border-radius: 20px;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.pricing-period { font-size: 18px; color: var(--fg-muted); font-weight: 400; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.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);
  font-weight: 600;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-content { margin-bottom: 40px; }
.closing-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 16px; }
.closing-headline { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: var(--fg); letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 20px; }
.closing-sub { font-size: 18px; color: var(--fg-muted); max-width: 540px; line-height: 1.7; }
.closing-vision {
  border-top: 1px solid var(--border);
  padding-top: 40px;
}
.closing-vision p {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 720px;
}

/* FOOTER */
.footer { padding: 64px 48px 40px; background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { margin-bottom: 48px; }
.footer-logo { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.footer-tagline { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.footer-col-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--fg-muted); margin-bottom: 16px; }
.footer-link { display: block; font-size: 14px; color: var(--fg-muted); text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-link:hover { color: var(--fg); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.footer-copy { font-size: 13px; color: var(--fg-muted); }

/* MOBILE */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 36px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat { padding-right: 0; }
  .stat-divider { display: none; }
  .hero-visual { display: none; }
  .proof { padding: 56px 24px; }
  .proof-stats-row { grid-template-columns: 1fr; }
  .proof-stat { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0; }
  .proof-stat:last-child { border-bottom: none; }
  .features { padding: 56px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .how { padding: 56px 24px; }
  .steps-row { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .pricing { padding: 56px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .closing-headline { font-size: 36px; }
  .footer { padding: 48px 24px 32px; }
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
}