/* ==========================================
   LOCALFLOW — CSS DESIGN SYSTEM
   ========================================== */

:root {
  --bg: #0a1628;
  --bg-2: #0f1f38;
  --bg-card: #111f38;
  --fg: #f0f4ff;
  --fg-muted: #8899aa;
  --accent: #00e5b4;
  --accent-dim: rgba(0,229,180,0.12);
  --accent-2: #6c8aff;
  --red: #ef4444;
  --orange: #f97316;
  --yellow: #eab308;
  --border: rgba(255,255,255,0.08);
  --radius: 12px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ---- NAV ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  text-decoration: none;
}

.tagline-chip {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0,229,180,0.2);
  letter-spacing: 0.03em;
}

/* ---- SECTION SHARED ---- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #00e5b4 0%, transparent 70%);
  top: -150px;
  right: -100px;
  animation: drift1 12s ease-in-out infinite alternate;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #6c8aff 0%, transparent 70%);
  bottom: -50px;
  left: -80px;
  animation: drift2 15s ease-in-out infinite alternate;
}

@keyframes drift1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-40px, 30px) scale(1.1); }
}

@keyframes drift2 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -20px) scale(0.95); }
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.headline-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  max-width: 160px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ---- PROBLEM ---- */
.problem {
  padding: 100px 24px;
  background: var(--bg-2);
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-headline {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.problem-body {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ---- LEAK METER ---- */
.leak-meter {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.leak-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.leak-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.leak-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--red);
  background: rgba(239,68,68,0.12);
  padding: 3px 8px;
  border-radius: 10px;
  border: 1px solid rgba(239,68,68,0.2);
}

.leak-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.leak-fill {
  height: 100%;
  background: linear-gradient(90deg, #ef4444, #f97316, #eab308);
  border-radius: 4px;
  transition: width 0.6s ease;
}

.leak-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.leak-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}

.leak-icon { flex-shrink: 0; }

.leak-val {
  margin-left: auto;
  font-weight: 600;
  color: var(--fg);
  font-size: 13px;
}

.leak-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--fg-muted);
}

.leak-dollar {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--red);
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 24px;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(0,229,180,0.3);
  transform: translateY(-2px);
}

.feature-icon {
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}

.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.features-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 40px;
  background: var(--bg-2);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.outcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.outcome-number {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}

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

/* ---- PRICING ---- */
.pricing {
  padding: 100px 24px;
  background: var(--bg-2);
}

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

.pricing-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(0,229,180,0.35);
  background: linear-gradient(135deg, rgba(0,229,180,0.06) 0%, var(--bg-card) 60%);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.card-header {
  margin-bottom: 20px;
}

.card-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 10px;
}

.card-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 4px;
}

.price-dollar {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg-muted);
  margin-top: 6px;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.card-price-note {
  font-size: 13px;
  color: var(--fg-muted);
}

.card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.card-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-note {
  font-size: 15px;
  color: var(--fg-muted);
  text-align: center;
}

.pricing-note strong {
  color: var(--accent);
}

/* ---- CLOSING ---- */
.closing {
  padding: 100px 24px;
}

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

.closing-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 580px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.closing-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 32px 40px;
  background: var(--bg-2);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.proof-stars {
  display: flex;
  gap: 3px;
}

.proof-stat {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

.proof-item p {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
}

.proof-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ---- FOOTER ---- */
.footer {
  padding: 60px 24px 40px;
  border-top: 1px solid var(--border);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

.footer-copy {
  font-size: 12px;
  color: rgba(136,153,170,0.5);
  margin-top: 8px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .stat-divider {
    width: 50px;
    height: 1px;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .features-outcomes {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .closing-proof {
    flex-direction: column;
    gap: 24px;
  }

  .proof-divider {
    width: 50px;
    height: 1px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 20px 60px;
  }

  .stat {
    padding: 0 16px;
  }

  .stat-number {
    font-size: 24px;
  }
}
/* ==========================================
   DENTAL DEMO PAGE
   ========================================== */

.demo-page {
  padding-top: 80px;
}

/* ---- DEMO HEADER ---- */
.demo-header {
  padding: 60px 24px 40px;
  text-align: center;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,180,0.2);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.demo-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.demo-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 28px;
}

.demo-office-info {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--fg-muted);
}

.demo-office-info .office-name {
  font-weight: 600;
  color: var(--fg);
}

.demo-office-info svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* ---- DEMO LAYOUT ---- */
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- DEMO LEFT PANEL ---- */
.demo-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---- DEMO RIGHT PANEL (CHAT) ---- */
.demo-right {
  position: sticky;
  top: 80px;
}

.chat-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 520px;
}

.chat-header {
  background: var(--accent);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-header-info h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--bg);
  font-family: 'Syne', sans-serif;
}

.chat-header-info p {
  font-size: 11px;
  color: rgba(10,22,40,0.6);
  font-weight: 500;
}

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.chat-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  animation: bubbleIn 0.25s ease;
}

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

.chat-bubble.bot {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  color: var(--fg);
  align-self: flex-start;
}

.chat-bubble.user {
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.chat-bubble .bubble-time {
  font-size: 10px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.quick-reply {
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,180,0.25);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.quick-reply:hover {
  background: var(--accent);
  color: var(--bg);
}

.chat-input-area {
  padding: 16px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.chat-input-row {
  display: flex;
  gap: 10px;
}

.chat-input {
  flex: 1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.chat-input::placeholder { color: var(--fg-muted); }
.chat-input:focus { border-color: rgba(0,229,180,0.4); }

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

.chat-send-btn:hover { transform: scale(1.08); }

/* ---- DEMO CARDS ---- */
.demo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.demo-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.demo-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  font-family: 'Syne', sans-serif;
}

.demo-card-subtitle {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}

.demo-card-body {
  padding: 24px;
}

/* ---- FORMS ---- */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.form-input, .form-select {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.form-input::placeholder { color: var(--fg-muted); }
.form-input:focus, .form-select:focus { border-color: rgba(0,229,180,0.4); }

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238899aa' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-select option {
  background: var(--bg-card);
  color: var(--fg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  width: 100%;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: #00cba0;
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(0,229,180,0.25);
}

.btn-ghost:hover {
  background: rgba(0,229,180,0.18);
}

/* ---- FEEDBACK / SUCCESS STATES ---- */
.form-success {
  background: rgba(0,229,180,0.1);
  border: 1px solid rgba(0,229,180,0.25);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  margin-top: 12px;
}

.form-success svg {
  margin: 0 auto 10px;
  display: block;
}

.form-success h4 {
  font-size: 14px;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  margin-bottom: 4px;
}

.form-success p {
  font-size: 13px;
  color: var(--fg-muted);
}

.form-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 12px;
  padding: 12px;
  font-size: 13px;
  color: var(--red);
  margin-top: 8px;
  display: none;
}

.form-error.visible {
  display: block;
}

/* ---- REVIEW REQUEST TRIGGER ---- */
.review-trigger {
  text-align: center;
}

.review-trigger p {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.review-trigger .stars-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.review-star {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,180,0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.review-star:hover, .review-star.active {
  background: var(--accent);
}

.review-trigger .btn {
  max-width: 280px;
  margin: 0 auto;
}

/* ---- LEAD CAPTURE ---- */
.lead-capture {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ---- DEMO STATUS BADGES ---- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.status-badge.live {
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,180,0.2);
}

.status-badge .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

/* ---- DEMO FOOTER ---- */
.demo-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.demo-footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.demo-footer-cta p {
  font-size: 15px;
  color: var(--fg-muted);
}

.demo-footer-cta .btn {
  max-width: 280px;
}

/* ---- CHAT TOGGLE (MOBILE) ---- */
.chat-toggle-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(0,229,180,0.3);
}

@media (max-width: 900px) {
  .demo-right {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: rgba(10,22,40,0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: flex-end;
  }

  .demo-right.open {
    display: flex;
  }

  .chat-widget {
    height: 70vh;
    border-radius: 16px 16px 0 0;
    max-width: 100%;
  }

  .chat-toggle-btn {
    display: flex;
  }

  .demo-grid {
    padding-bottom: 80px;
  }
}

/* ---- DEMO SECTION LABELS ---- */
.demo-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.demo-section-label .label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
