/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080a0f;
  --bg-2: #0e1117;
  --surface: #141820;
  --surface-2: #1a2030;
  --border: #1e2635;
  --fg: #e8eaf0;
  --fg-muted: #8892a4;
  --fg-subtle: #4e5668;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --green: #10b981;
  --red: #ef4444;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
  --section-py: 96px;
}

html { scroll-behavior: smooth; }

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

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,10,15,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 24px 96px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-price {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
}
.price-block {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.price-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.price-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}
.price-per {
  font-size: 14px;
  color: var(--fg-muted);
}
.price-divider {
  width: 1px;
  background: var(--border);
  margin: 12px 0;
}

/* ===== PHONE FRAME ===== */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.phone-frame {
  width: 300px;
  background: var(--surface);
  border-radius: 40px;
  border: 1.5px solid var(--border);
  padding: 12px;
  box-shadow: 0 0 0 1px rgba(245,158,11,0.06), 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(245,158,11,0.05);
}
.phone-notch {
  width: 100px;
  height: 28px;
  background: var(--surface-2);
  border-radius: 0 0 18px 18px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: #0b0d14;
  border-radius: 28px;
  padding: 20px 16px 16px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.call-status {
  display: flex;
  align-items: center;
  gap: 10px;
}
.call-indicator {
  position: relative;
  width: 16px;
  height: 16px;
}
.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: pulse 2s ease-in-out infinite;
}
.pulse-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.8); }
}
.call-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green);
  font-family: var(--font-display);
}
.caller-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--surface-2);
  border-radius: 10px;
}
.caller-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.caller-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}
.caller-type {
  font-size: 11px;
  color: var(--fg-muted);
}
.transcript-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--fg-subtle);
}
.transcript {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
  overflow: hidden;
}
.msg {
  font-size: 11px;
  line-height: 1.5;
  padding: 8px 10px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.msg.ai {
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.15);
  color: var(--fg-muted);
  flex-direction: column;
}
.msg.caller {
  background: var(--surface-2);
  color: var(--fg-muted);
}
.ai-badge {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
  margin-bottom: 4px;
}
.booking-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  margin-top: auto;
}
.phone-bottom-bar {
  height: 4px;
  background: var(--surface-2);
  border-radius: 0 0 28px 28px;
  margin-top: 8px;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 20px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-py) 24px;
}
.problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}
.stat-card {
  background: var(--surface);
  padding: 40px 36px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.stat-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.problem-bottom {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 620px;
  text-align: center;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== HOW ===== */
.how {
  padding: var(--section-py) 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 32px 0 0;
}
.step:first-child { padding-left: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  letter-spacing: -2px;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-body p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--accent-dim), var(--border));
  margin-top: 40px;
  flex-shrink: 0;
}

/* ===== OUTCOMES ===== */
.outcomes {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-py) 24px;
}
.outcomes-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}
.outcome {
  background: var(--surface);
  padding: 36px;
}
.outcome-icon {
  margin-bottom: 20px;
}
.outcome h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.outcome p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.outcomes-cta-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 28px;
  text-align: center;
  font-size: 15px;
  color: var(--fg-muted);
}
.outcomes-cta-strip span { color: var(--fg); }

/* ===== MANIFESTO ===== */
.manifesto {
  padding: var(--section-py) 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.manifesto-mark {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 10px;
  margin-bottom: 32px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--fg);
  max-width: 800px;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.manifesto-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  padding: var(--section-py) 24px;
}
.closing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.2;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.closing-price {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 24px;
}
.cp-row {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding: 14px 24px;
  font-size: 15px;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.cp-row:last-child { border-bottom: none; }
.cp-bold {
  font-weight: 600;
  color: var(--fg);
  font-size: 17px;
}
.cp-muted {
  font-size: 13px;
  color: var(--fg-subtle);
  font-style: italic;
}
.closing-territory {
  font-size: 13px;
  color: var(--fg-subtle);
  letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
}
.footer-tag {
  font-size: 13px;
  color: var(--fg-subtle);
}
.footer-legal {
  font-size: 12px;
  color: var(--fg-subtle);
  line-height: 1.6;
}

/* ===== DEMO PAGE ===== */
.demo-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.demo-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  border-top: 1px solid var(--border);
}

.demo-panel {
  background: var(--bg);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
}

.demo-headline {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.demo-sub {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 400px;
}

/* FORM */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.field-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
}

.field-input:focus {
  border-color: var(--accent);
}

.field-hint {
  font-size: 11px;
  color: var(--fg-subtle);
}

.btn-demo {
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: opacity 0.15s;
}

.btn-demo:hover { opacity: 0.85; }
.btn-demo:disabled { opacity: 0.4; cursor: not-allowed; }

.demo-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-subtle);
  margin-top: 24px;
}

.meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

/* FLASH */
.flash {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
}

.flash--error {
  background: rgba(239,68,68,0.1);
  border-bottom: 1px solid rgba(239,68,68,0.3);
  color: var(--red);
}

.flash--success {
  background: rgba(16,185,129,0.1);
  border-bottom: 1px solid rgba(16,185,129,0.3);
  color: var(--green);
}

/* STATUS FEED */
.status-feed {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stage {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stage--idle { opacity: 0.5; }

.stage--active {
  border-color: rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.04);
}

.stage--done {
  border-color: rgba(16,185,129,0.3);
  background: rgba(16,185,129,0.06);
}

.stage--error {
  border-color: rgba(239,68,68,0.3);
  background: rgba(239,68,68,0.06);
}

.stage-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface-2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-ring-wrap {
  position: relative;
  width: 24px;
  height: 24px;
}

.stage-icon--check {
  background: rgba(16,185,129,0.15);
}

.stage-icon--check::after {
  content: '✓';
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.stage-icon--x {
  background: rgba(239,68,68,0.15);
}

.stage-icon--x::after {
  content: '✕';
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.stage-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}

.stage-desc {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* CALL RECORD */
.record-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.record-item {
  background: var(--surface);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.record-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

.record-val {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}

/* ===== SHARED BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  line-height: 1;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-primary.btn-large { font-size: 16px; padding: 16px 32px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--fg); }

/* ===== NAV UPDATES ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--fg); }
.btn-nav {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(245,158,11,0.3);
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.15s, border-color 0.15s;
}
.btn-nav:hover { background: var(--accent-dim); border-color: var(--accent); }

/* ===== HERO CTA ROW ===== */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ===== VALUE PROPS ===== */
.valueprops {
  padding: var(--section-py) 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.valueprops-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.8px;
  margin-bottom: 48px;
  max-width: 620px;
  line-height: 1.2;
}
.vp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.vp-card {
  background: var(--surface);
  padding: 40px 36px;
}
.vp-icon { margin-bottom: 20px; }
.vp-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.vp-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-py) 24px;
}
.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.pricing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 780px;
}
.pricing-card-top {
  padding: 40px;
  border-bottom: 1px solid var(--border);
}
.pricing-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 28px;
}
.pricing-amounts {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
}
.pricing-setup, .pricing-monthly {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 40px;
}
.pricing-monthly { padding-left: 40px; padding-right: 0; }
.pricing-divider-v {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}
.pa-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.pa-val {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1.5px;
  line-height: 1;
}
.pa-per {
  font-size: 20px;
  color: var(--fg-muted);
  font-weight: 400;
}
.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--green);
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 12px 16px;
  border-radius: 8px;
  line-height: 1.5;
}
.pricing-includes {
  padding: 32px 40px;
  border-bottom: 1px solid var(--border);
}
.pi-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 20px;
}
.pi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}
.pi-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}
.pricing-actions {
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--fg-subtle);
  max-width: 560px;
  line-height: 1.6;
}

/* ===== TRUST ===== */
.trust {
  padding: var(--section-py) 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.trust-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  line-height: 1.2;
}
.trust-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 480px;
}
.tw-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: 20px;
}
.tw-label--bottom { margin-top: 32px; }
.tw-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tw-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.tw-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}
.tw-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.tw-item span {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.tw-nope {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tw-nope-item {
  font-size: 12px;
  color: var(--fg-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: line-through;
  text-decoration-color: var(--fg-subtle);
}

/* ===== BOOK CALL ===== */
.book-call {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--section-py) 24px;
}
.book-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.book-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.book-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.book-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.book-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bf-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.bf-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
  width: 100%;
}
.bf-input:focus { border-color: var(--accent); }
.bf-select { cursor: pointer; }
.bf-textarea {
  min-height: 100px;
  resize: vertical;
}
.book-fine {
  font-size: 12px;
  color: var(--fg-subtle);
  margin-top: -8px;
}
.book-success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 32px;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 12px;
}
.book-success h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--fg);
}
.book-success p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.book-error {
  font-size: 14px;
  color: var(--red);
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  padding: 12px 16px;
  border-radius: 8px;
}
.book-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.bs-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.bs-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1.5px;
  line-height: 1;
  min-width: 64px;
}
.bs-text {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  padding-top: 4px;
}
.bs-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 20px 20px 20px 24px;
  border-radius: 8px;
}
.bs-quote p {
  font-size: 14px;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 10px;
}
.bs-attr {
  font-size: 12px;
  color: var(--fg-subtle);
}

/* ===== CLOSING CTA ROW ===== */
.closing-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .phone-frame { width: 260px; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { width: 1px; height: 32px; margin: 0 auto; background: linear-gradient(180deg, var(--border), var(--accent-dim), var(--border)); }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-price { flex-wrap: wrap; }
  .vp-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; gap: 48px; }
  .book-layout { grid-template-columns: 1fr; gap: 40px; }
  .pricing-amounts { flex-wrap: wrap; gap: 24px; }
  .pricing-divider-v { display: none; }
  .pricing-monthly { padding-left: 0; }
}

@media (max-width: 600px) {
  :root { --section-py: 64px; }
  .hero { padding: 48px 20px 64px; }
  .phone-frame { width: 240px; }
  .stat-card { padding: 28px 24px; }
  .outcome { padding: 28px 24px; }
  .cp-row { gap: 40px; }
  .closing-price { width: 100%; }
  .bf-row { grid-template-columns: 1fr; }
  .pi-grid { grid-template-columns: 1fr; }
  .vp-card { padding: 28px 24px; }
  .pricing-card-top, .pricing-includes, .pricing-actions { padding: 24px; }
  .nav-right .nav-link { display: none; }
}

/* ============================================================
   DEMO SECTION — "Hear Your AI Front Office"
   ============================================================ */

.demo-section {
  padding: var(--section-py) 24px;
  background: linear-gradient(180deg, #0a0c13 0%, #080a0f 100%);
  position: relative;
}

.demo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(245,158,11,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.demo-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 12px auto 56px;
  text-align: center;
  line-height: 1.6;
}

/* Two-column call cards grid */
.demo-calls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Individual call card */
.demo-call-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.demo-call-card:hover {
  border-color: rgba(245,158,11,0.2);
}

/* Card header */
.demo-call-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.demo-call-meta {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.demo-call-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  margin-top: 3px;
  flex-shrink: 0;
}

.hvac-badge {
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
  border: 1px solid rgba(59,130,246,0.25);
}

.roofing-badge {
  background: rgba(245,158,11,0.12);
  color: #fbbf24;
  border: 1px solid rgba(245,158,11,0.2);
}

.demo-call-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-hi);
  margin: 0 0 4px;
  line-height: 1.3;
}

.demo-call-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

/* Card body: player + transcript stacked */
.demo-call-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Audio player strip */
.demo-player {
  padding: 14px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.demo-player-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.demo-play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(245,158,11,0.5);
  background: rgba(245,158,11,0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s, transform 0.1s;
}

.demo-play-btn:hover {
  background: rgba(245,158,11,0.2);
  border-color: var(--accent);
  transform: scale(1.05);
}

.demo-play-btn:active {
  transform: scale(0.97);
}

.demo-progress-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.demo-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.demo-progress-bar:hover {
  background: rgba(255,255,255,0.15);
}

.demo-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #fbbf24);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.demo-time-display {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.demo-sep { opacity: 0.4; }

.demo-audio-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  margin: 8px 0 0;
}

.demo-audio-note code {
  font-family: 'Courier New', monospace;
  background: rgba(255,255,255,0.06);
  padding: 1px 4px;
  border-radius: 3px;
}

/* Transcript panel */
.demo-transcript {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.demo-transcript::-webkit-scrollbar { width: 4px; }
.demo-transcript::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 2px; }

.transcript-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
  opacity: 0.5;
}

.transcript-line.active {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  opacity: 1;
}

.tl-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}

.ai-badge-tl {
  background: rgba(245,158,11,0.15);
  color: #fbbf24;
}

.caller-badge-tl {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
}

.tl-text {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.transcript-line.active .tl-text {
  color: var(--text-hi);
}

/* Outcome card */
.demo-outcome-card {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.15);
}

.outcome-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0 0 16px;
}

.outcome-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.outcome-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.outcome-step.done .outcome-icon {
  color: #10b981;
}

.outcome-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  border: 1.5px solid rgba(16,185,129,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.outcome-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
}

.outcome-step:last-child .outcome-text {
  padding-bottom: 0;
}

.outcome-step-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-hi);
}

.outcome-step-time {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.outcome-connector {
  width: 1.5px;
  height: 12px;
  background: rgba(16,185,129,0.2);
  margin: 0 0 0 10px;
}

/* Bottom CTA */
.demo-bottom-cta {
  text-align: center;
  margin-top: 56px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.demo-cta-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-hi);
  margin: 0 0 20px;
}

/* Demo section responsive */
@media (max-width: 900px) {
  .demo-calls {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
  .demo-transcript {
    max-height: 240px;
  }
}

@media (max-width: 600px) {
  .demo-call-header { padding: 16px 18px 14px; }
  .demo-player { padding: 12px 16px 10px; }
  .demo-transcript { padding: 12px 16px; }
  .demo-outcome-card { padding: 16px 18px 18px; }
  .demo-cta-text { font-size: 1.05rem; }
}