:root {
  --bg: #F8F7F4;
  --surface: #FFFFFF;
  --fg: #1a2744;
  --fg-muted: #6B7385;
  --accent: #F5A623;
  --accent-dark: #D4891A;
  --navy: #1a2744;
  --border: #E5E4DF;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248,247,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
}

.nav-inner--landing {
  justify-content: space-between;
}

.nav-pricing-link {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-pricing-link:hover {
  color: var(--fg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

/* ── Hero ── */
.hero {
  padding: 80px 24px 64px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 40px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  max-width: 140px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  margin-right: 40px;
  flex-shrink: 0;
}

/* ── Proof ── */
.proof {
  padding: 80px 24px;
  background: var(--bg);
}

.proof-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.proof-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 32px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,39,68,0.08);
}

.proof-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.proof-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.proof-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── How ── */
.how {
  padding: 80px 24px;
  background: var(--navy);
}

.how-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  margin-bottom: 56px;
  max-width: 640px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 56px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
  width: 56px;
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 560px;
}

.how-visual {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.call-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  width: 100%;
}

.call-bubble {
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.incoming {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  align-self: flex-start;
}

.ai {
  background: var(--accent);
  color: var(--navy);
  align-self: center;
}

.booked {
  background: rgba(76,175,80,0.15);
  color: #6EE06E;
  border: 1px solid rgba(76,175,80,0.2);
  align-self: flex-end;
}

/* ── Pricing ── */
.pricing {
  padding: 80px 24px;
  background: var(--bg);
}

.pricing-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  max-width: 720px;
  box-shadow: 0 4px 24px rgba(26,39,68,0.06);
}

.pricing-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.pricing-top h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-top p {
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.pricing-amount {
  text-align: right;
  flex-shrink: 0;
}

.pricing-from {
  display: block;
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 4px;
}

.pricing-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.pricing-period {
  font-size: 1rem;
  color: var(--fg-muted);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--fg);
}

.pricing-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── Closing ── */
.closing {
  padding: 100px 24px;
  background: var(--bg);
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 20px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.15;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

/* ── Footer ── */
.site-footer {
  padding: 48px 24px;
  background: var(--navy);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 48px;
  }

  .hero-headline {
    font-size: 2.4rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .pricing-top {
    flex-direction: column;
  }

  .pricing-amount {
    text-align: left;
  }

  .step {
    gap: 20px;
  }

  .step-num {
    font-size: 2rem;
    width: 40px;
  }

  .how-visual {
    display: none;
  }
}

/* ── Demo Widget ── */
.demo-section {
  padding: 100px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.demo-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.demo-header {
  text-align: center;
  margin-bottom: 48px;
}

.demo-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 14px;
}

.demo-header p {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Widget container */
.demo-widget {
  max-width: 680px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,39,68,0.18), 0 0 0 1px rgba(255,255,255,0.06);
}

/* Widget header */
.demo-widget-header {
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
}

.demo-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.demo-agent-info h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.demo-agent-info span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* Persona selector */
.demo-personas {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.demo-personas-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

.demo-persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.demo-persona-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 10px;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  transition: all 0.2s ease;
}

.demo-persona-btn:hover {
  background: rgba(245,166,35,0.15);
  border-color: rgba(245,166,35,0.4);
  color: var(--accent);
}

.demo-persona-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--navy);
}

.demo-start-btn {
  display: block;
  width: calc(100% - 48px);
  margin: 16px 24px 0;
  padding: 14px 24px;
  background: var(--accent);
  color: var(--navy);
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease;
}

.demo-start-btn:hover {
  background: var(--accent-dark);
}

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

/* Chat transcript */
.demo-transcript {
  min-height: 280px;
  max-height: 380px;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

/* Typing indicator */
.demo-typing {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  width: fit-content;
}

.demo-typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  animation: dot-bounce 1.4s infinite ease-in-out;
}

.demo-typing-dot:nth-child(1) { animation-delay: 0s; }
.demo-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.demo-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-bounce {
  0%, 80%, 100% { transform: scale(1); opacity: 0.4; }
  40% { transform: scale(1.2); opacity: 1; }
}

/* Chat bubbles */
.demo-msg {
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: msg-in 0.3s ease;
}

@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.demo-msg-user {
  align-self: flex-end;
}

.demo-msg-ai {
  align-self: flex-start;
}

.demo-msg .bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 85%;
  word-wrap: break-word;
}

.demo-msg-user .bubble {
  background: var(--accent);
  color: var(--navy);
  border-bottom-right-radius: 4px;
}

.demo-msg-ai .bubble {
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.85);
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}

.demo-msg-time {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  padding: 0 4px;
}

.demo-msg-user .demo-msg-time { text-align: right; }

/* Quick reply buttons */
.demo-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 0 4px;
}

.demo-quick-btn {
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  transition: all 0.2s ease;
}

.demo-quick-btn:hover {
  background: rgba(245,166,35,0.22);
  border-color: rgba(245,166,35,0.6);
}

/* Demo input */
.demo-input-area {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.demo-input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 14px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  resize: none;
  max-height: 80px;
  line-height: 1.5;
  transition: border-color 0.2s ease;
}

.demo-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.demo-input:focus {
  border-color: rgba(245,166,35,0.5);
}

.demo-send-btn {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.demo-send-btn:hover {
  background: var(--accent-dark);
}

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

/* End state */
.demo-end-state {
  padding: 28px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.demo-end-msg {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  line-height: 1.6;
}

.demo-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--navy);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.demo-cta-btn:hover {
  background: var(--accent-dark);
}

/* Demo section label badge */
.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ── Demo Mode Tabs ─────────────────────────────────────────────────────────── */
.demo-mode-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.demo-mode-tab {
  background: rgba(26,39,68,0.06);
  border: 1px solid rgba(26,39,68,0.12);
  border-radius: 10px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.demo-mode-tab:hover {
  background: rgba(245,166,35,0.08);
  border-color: rgba(245,166,35,0.3);
  color: var(--fg);
}

.demo-mode-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #FFFFFF;
}

/* ── Voice Wave Visualizer ──────────────────────────────────────────────────── */
.voice-wave-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 32px;
  padding: 4px 24px;
}

.voice-wave-bar span {
  display: block;
  width: 3px;
  height: 12px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.3;
  transition: all 0.15s ease;
}

.voice-wave-bar.active span {
  opacity: 1;
  animation: wave-bounce 0.8s infinite ease-in-out alternate;
}

.voice-wave-bar.active span:nth-child(1) { animation-delay: 0ms; height: 20px; }
.voice-wave-bar.active span:nth-child(2) { animation-delay: 80ms; height: 32px; }
.voice-wave-bar.active span:nth-child(3) { animation-delay: 160ms; height: 28px; }
.voice-wave-bar.active span:nth-child(4) { animation-delay: 240ms; height: 36px; }
.voice-wave-bar.active span:nth-child(5) { animation-delay: 120ms; height: 24px; }
.voice-wave-bar.active span:nth-child(6) { animation-delay: 200ms; height: 30px; }
.voice-wave-bar.active span:nth-child(7) { animation-delay: 40ms; height: 18px; }
.voice-wave-bar.active span:nth-child(8) { animation-delay: 280ms; height: 26px; }

@keyframes wave-bounce {
  from { transform: scaleY(0.4); }
  to { transform: scaleY(1); }
}

/* ── Voice Mic Button ───────────────────────────────────────────────────────── */
.voice-mic-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.voice-mic-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(245,166,35,0.3);
}

.voice-mic-btn:hover:not(:disabled) {
  transform: scale(1.08);
  background: var(--accent-dark);
}

.voice-mic-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.voice-mic-visual {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.2s ease;
}

.voice-mic-visual.active {
  background: #4CE06E;
  box-shadow: 0 0 8px rgba(76,224,110,0.6);
}

.voice-hint {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  flex: 1;
  text-align: center;
}

/* ── Voice End State ─────────────────────────────────────────────────────────── */
.voice-end-state {
  padding: 28px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.voice-end-msg {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  line-height: 1.6;
}

.voice-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--accent);
  color: var(--navy);
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.voice-cta-btn:hover { background: var(--accent-dark); }

/* Voice demo overrides for dark widget */
.voice-widget .demo-transcript {
  min-height: 260px;
}
  .demo-section {
    padding: 72px 16px;
  }

  .demo-persona-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .demo-transcript {
    max-height: 300px;
  }

  .demo-widget {
    border-radius: 16px;
  }
}

/* ── Hero CTA Row ── */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-cta-primary {
  display: inline-block;
  padding: 13px 28px;
  background: var(--accent);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}
.hero-cta-primary:hover { opacity: 0.9; }
.hero-cta-primary:active { transform: scale(0.98); }

.hero-cta-secondary {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.hero-cta-secondary:hover {
  border-color: rgba(255,255,255,0.65);
  color: #fff;
  background: rgba(255,255,255,0.06);
}

/* ── Pricing page booking section ── */
.pp-book-demo {
  background: var(--navy);
  padding: 80px 24px;
}
.pp-book-demo-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.pp-book-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.pp-book-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.pp-book-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 32px;
}
.pp-book-btn {
  display: inline-block;
  padding: 15px 36px;
  background: var(--accent);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}
.pp-book-btn:hover { opacity: 0.9; }
.pp-book-btn:active { transform: scale(0.98); }
.pp-book-fine {
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}