:root {
  --bg: #0B0B0E;
  --surface: #16161D;
  --surface2: #1E1E27;
  --border: rgba(255,255,255,0.07);
  --text: #E8E4DC;
  --text-muted: rgba(232,228,220,0.5);
  --accent: #FF7A1A;
  --accent-dim: rgba(255,122,26,0.12);
  --green: #34D399;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(11,11,14,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner { max-width: 1200px; margin: 0 auto; }
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ── HERO ── */
.hero { padding: 96px 48px 80px; }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,122,26,0.2);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 480px;
}
.hero-stat-row {
  display: flex;
  gap: 40px;
}
.hero-stat {}
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 120px;
}

/* ── BOOKING WIDGET ── */
.booking-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}
.widget-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28CA41; }
.widget-title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.widget-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.msg { display: flex; flex-direction: column; gap: 4px; }
.msg-inbound { align-items: flex-start; }
.msg-outbound { align-items: flex-end; }
.msg-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}
.inbound {
  background: var(--surface2);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.outbound {
  background: var(--accent);
  color: #0B0B0E;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}
.msg-time {
  font-size: 11px;
  color: var(--text-muted);
  padding: 0 4px;
}
.msg-outbound .msg-time { text-align: right; }
.msg-ai-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--accent);
  padding: 4px 0 4px 4px;
  opacity: 0.8;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.ai-pulse {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.2s ease-in-out infinite;
}
.widget-footer {
  padding: 10px 16px;
  border-top: 1px solid var(--border);
}
.widget-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--green);
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
}

/* ── PROOF ── */
.proof { padding: 80px 48px; border-top: 1px solid var(--border); }
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.proof-card {
  background: var(--surface);
  padding: 36px 32px;
}
.proof-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.proof-stat {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.proof-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── SHARED SECTION STYLES ── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 56px;
  max-width: 600px;
}

/* ── FEATURES ── */
.features { padding: 96px 48px; border-top: 1px solid var(--border); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.feature-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--surface2); }
.feature-icon-wrap {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── FLOW TIMELINE ── */
.flow { padding: 96px 48px; border-top: 1px solid var(--border); }
.flow-inner { max-width: 1200px; margin: 0 auto; }
.flow-timeline { display: flex; flex-direction: column; gap: 0; }
.flow-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.flow-step:last-child { border-bottom: none; }
.flow-step-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 4px;
}
.flow-step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.flow-step-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* ── NICHES ── */
.niches { padding: 96px 48px; border-top: 1px solid var(--border); }
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.niche-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}
.niche-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.niche-detail {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.niches-note {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  font-style: italic;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 16px;
  color: var(--text-muted);
}

/* ── FOOTER ── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-meta {
  font-size: 12px;
  color: rgba(232,228,220,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right { order: -1; }
  .proof-grid,
  .features-grid,
  .niches-grid { grid-template-columns: 1fr; }
  .flow-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .hero-stat-row { flex-direction: column; gap: 20px; }
}

/* ── DEMO PAGES ── */
.demo-page {
  padding: 60px 48px;
  min-height: calc(100vh - 80px);
}
.demo-inner { max-width: 900px; margin: 0 auto; }
.demo-header { margin-bottom: 48px; }
.demo-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.demo-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.demo-tab:hover { background: var(--surface2); color: var(--text); }
.demo-tab.active {
  background: var(--accent-dim);
  border-color: rgba(255,122,26,0.3);
  color: var(--accent);
}
.demo-tab svg { width: 16px; height: 16px; }

/* Phone mock */
.phone-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 32px 28px;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.phone-top-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: var(--surface2);
  border-radius: 24px;
}
.phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
}
.phone-caller-info { flex: 1; }
.phone-caller-name { font-weight: 600; font-size: 14px; }
.phone-caller-label { font-size: 11px; color: var(--green); }
.phone-dots { display: flex; gap: 4px; }
.phone-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted); }
.phone-status-bar { text-align: center; padding: 16px 0; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.phone-status-time { font-family: var(--font-display); font-size: 48px; font-weight: 700; letter-spacing: -0.04em; }
.phone-status-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.phone-menu { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.phone-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--surface2);
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
  font-size: 14px;
}
.phone-option:hover { border-color: var(--accent); background: var(--accent-dim); }
.phone-option-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #0B0B0E;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  margin-right: 12px;
}
.phone-messages { display: flex; flex-direction: column; gap: 10px; }
.phone-msg {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 85%;
}
.phone-msg.ai { background: var(--surface2); border-bottom-left-radius: 4px; }
.phone-msg.user { background: var(--accent); color: #0B0B0E; font-weight: 600; align-self: flex-end; border-bottom-right-radius: 4px; }
.phone-msg-time { font-size: 11px; color: var(--text-muted); margin-top: 4px; text-align: right; }
.phone-input-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}
.phone-keypad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.phone-key {
  padding: 16px;
  background: var(--surface2);
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s;
}
.phone-key:hover { background: var(--accent-dim); border-color: rgba(255,122,26,0.3); }
.phone-key:active { transform: scale(0.96); background: var(--accent); color: #0B0B0E; }
.phone-key.call { background: var(--green); color: #0B0B0E; font-size: 13px; font-weight: 700; }

/* Text chat demo */
.text-demo-container { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.text-phone-mock {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.text-phone-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
  display: flex;
  align-items: center;
  gap: 12px;
}
.text-contact-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-dim);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-weight: 700; font-size: 14px;
}
.text-contact-name { font-weight: 600; font-size: 14px; }
.text-contact-meta { font-size: 11px; color: var(--green); }
.text-messages { padding: 20px; display: flex; flex-direction: column; gap: 10px; min-height: 400px; }
.text-msg { display: flex; flex-direction: column; gap: 3px; }
.text-msg.outbound { align-items: flex-end; }
.text-bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.5;
}
.text-bubble.inbound {
  background: var(--surface2);
  border-bottom-left-radius: 4px;
}
.text-bubble.outbound {
  background: var(--accent);
  color: #0B0B0E;
  font-weight: 600;
  border-bottom-right-radius: 4px;
}
.text-timestamp { font-size: 10px; color: var(--text-muted); padding: 0 4px; }
.text-input-area {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: center;
}
.text-input {
  flex: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 10px 16px;
  color: var(--text);
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.text-input:focus { border-color: var(--accent); }
.text-send-btn {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 50%;
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #0B0B0E;
  flex-shrink: 0;
}
.text-send-btn:hover { opacity: 0.9; }
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.quick-reply {
  padding: 7px 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
}
.quick-reply:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }

/* Side panel */
.demo-side-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.demo-panel-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.demo-panel-title .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.demo-log { display: flex; flex-direction: column; gap: 8px; max-height: 400px; overflow-y: auto; }
.demo-log-entry {
  padding: 8px 12px;
  background: var(--surface2);
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.5;
  font-family: 'Courier New', monospace;
}
.demo-log-entry .tag {
  color: var(--accent);
  font-weight: 600;
}
.demo-log-entry .val { color: var(--green); }
.demo-log-entry .key { color: var(--text-muted); }

/* Calendar */
.cal-container { max-width: 700px; margin: 0 auto; }
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cal-month {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.cal-nav-btn {
  width: 36px; height: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cal-nav-btn:hover { background: var(--surface2); border-color: var(--accent); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.cal-day-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s;
  color: var(--text-muted);
}
.cal-day:hover:not(.disabled) { background: var(--surface2); border-color: var(--border); }
.cal-day.today { border-color: var(--accent); color: var(--accent); font-weight: 700; }
.cal-day.selected { background: var(--accent); color: #0B0B0E; font-weight: 700; }
.cal-day.disabled { opacity: 0.3; cursor: default; }
.cal-day.has-slots { position: relative; }
.cal-day.has-slots::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--green);
}
.cal-timeslots {
  margin-top: 24px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.cal-timeslots-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.cal-timeslots-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.cal-slot {
  padding: 10px 18px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.15s;
  color: var(--text);
}
.cal-slot:hover { border-color: var(--accent); background: var(--accent-dim); color: var(--accent); }
.cal-slot.selected { background: var(--accent); color: #0B0B0E; font-weight: 700; border-color: var(--accent); }
.cal-slot.booked { opacity: 0.4; cursor: default; pointer-events: none; }
.cal-form {
  margin-top: 24px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.cal-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.cal-form-row.full { grid-template-columns: 1fr; }
.cal-label { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; font-weight: 500; }
.cal-input {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.cal-input:focus { border-color: var(--accent); }
.cal-btn-primary {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #0B0B0E;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 8px;
}
.cal-btn-primary:hover { opacity: 0.9; }
.cal-confirmation {
  padding: 20px;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: 12px;
  text-align: center;
}
.cal-confirmation-icon { font-size: 32px; margin-bottom: 8px; }
.cal-confirmation-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.cal-confirmation-sub { font-size: 13px; color: var(--text-muted); }

/* Live indicator */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(52,211,153,0.1);
  border: 1px solid rgba(52,211,153,0.3);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
}
.live-badge .pulse {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

/* Demo index page */
.demo-hero {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.demo-hero-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.demo-hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,122,26,0.2);
}
.demo-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.demo-hero-sub { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0 auto 48px; }
.demo-cards { max-width: 900px; margin: 0 auto; padding: 60px 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.demo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  display: block;
}
.demo-card:hover { background: var(--surface2); border-color: rgba(255,122,26,0.3); transform: translateY(-2px); }
.demo-card-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: 20px;
}
.demo-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.demo-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.demo-card-arrow { margin-top: 16px; color: var(--accent); font-size: 14px; font-weight: 600; }

/* Confirmed state */
.demo-confirmed-box {
  padding: 32px;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.25);
  border-radius: 16px;
  text-align: center;
  margin-top: 20px;
}
.demo-confirmed-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.demo-confirmed-detail { font-size: 14px; color: var(--text-muted); }

/* AI typing indicator */
.ai-typing { display: flex; align-items: center; gap: 4px; padding: 8px 0; }
.ai-typing-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 1.2s ease-in-out infinite;
}
.ai-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-typing-dot:nth-child(3) { animation-delay: 0.4s; }

/* AI response panel */
.demo-response-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}
.demo-response-label { font-size: 11px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.demo-response-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  padding: 14px;
  background: var(--surface2);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  font-style: italic;
}

@media (max-width: 900px) {
  .text-demo-container { grid-template-columns: 1fr; }
  .demo-cards { grid-template-columns: 1fr; }
  .cal-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav,
  .hero,
  .proof,
  .features,
  .flow,
  .niches,
  .closing,
  .footer,
  .demo-page,
  .demo-hero,
  .demo-cards { padding-left: 24px; padding-right: 24px; }
}