/* ============================================================
   DESIGN TOKENS — NormiAI Brand, Dental
============================================================ */
:root {
  /* Backgrounds */
  --bg-page:      #ffffff;
  --bg-alt:       #f5f7fa;
  --bg-card:      #ffffff;
  --bg-dark:      #0a0a0a;
  --cream:        #f5f7fa;
  --olive-light:  #f1f5f9;
  --teal-bg:      #EAF6F7;

  /* Borders */
  --border:       #e8ecf0;
  --border-light: #f1f5f9;
  --border-mid:   #e2e8f0;

  /* Text */
  --text-heading: #0a0a0a;
  --text-body:    #4A4558;
  --text-muted:   #9490A8;
  --text-white:   #ffffff;

  /* Brand */
  --teal:         #2BAAB7;
  --teal-light:   rgba(43,170,183,0.09);
  --teal-dark:    #1E8F9A;
  --teal-bg:      #EAF6F7;
  --purple:       #9B5CC7;
  --purple-light: rgba(155,92,199,0.08);
  --purple-bg:    #F0E6F8;
  --olive:        #5A6643;
  --olive-light:  #f1f5f9;
  --gold:         #d4a853;
  --gold-light:   rgba(212,168,83,0.1);
  --gradient:     linear-gradient(135deg, #2BAAB7 0%, #9B5CC7 100%);

  /* Pillar accent colors — NormiAI palette */
  --attract-color: #2BAAB7;
  --attract-bg:    rgba(43,170,183,0.07);
  --attract-border:rgba(43,170,183,0.22);
  --engage-color:  #9B5CC7;
  --engage-bg:     rgba(155,92,199,0.07);
  --engage-border: rgba(155,92,199,0.22);
  --grow-color:    #5A6643;
  --grow-bg:       rgba(90,102,67,0.07);
  --grow-border:   rgba(90,102,67,0.22);

  /* Shadows — warm */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.03);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.09), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-xl:   0 24px 64px rgba(0,0,0,0.11);

  --font-serif: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --ease: 0.25s ease;
  --max-w: 1160px;
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; }
input, select, textarea { font-family: var(--font-sans); }

/* ============================================================
   LAYOUT
============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.calc-section,
.how-section,
.demo-section,
.pricing-section,
.pricing-hero-section,
.faq-section,
.prospecting-section,
.testimonials-section { padding: 96px 0; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.125rem; font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 540px;
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, #2BAAB7 0%, #9B5CC7 100%);
  color: #fff;
  border-color: transparent;
}
.btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(43,170,183,0.30);
}

.btn--outline {
  background: transparent;
  color: var(--text-heading);
  border-color: var(--border);
}
.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-body);
  border-color: transparent;
}
.btn--ghost:hover { color: var(--text-heading); }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn--lg  { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-md); }
.btn--xl  { padding: 20px 48px; font-size: 1.0625rem; border-radius: var(--radius-md); }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(43,170,183,0.12);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(43,170,183,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.navbar__logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.navbar__logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.navbar__logo-byline {
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.logo-accent { color: var(--teal); }
.logo-ai { color: #2BAAB7; }

/* ── Brand-specific fonts in powered-by marquee ──────────────────── */
[data-brand="openai"] .brand-name  { font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: -0.025em; }
[data-brand="claude"] .brand-name  { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; letter-spacing: -0.01em; }
[data-brand="gemini"] .brand-name  { font-family: 'Poppins', sans-serif; font-weight: 700; letter-spacing: 0.01em; }
[data-brand="vercel"] .brand-name  { font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.04em; }
[data-brand="supabase"] .brand-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
[data-brand="stripe"] .brand-name  { font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: -0.01em; }
[data-brand="twilio"] .brand-name  { font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.015em; }
[data-brand="airtable"] .brand-name { font-family: 'Poppins', sans-serif; font-weight: 800; letter-spacing: 0; }
[data-brand="calcom"] .brand-name  { font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: -0.01em; }

/* ── Beyond Dental section ───────────────────────────────────────── */
.beyond-dental-section {
  padding: 56px 0;
  background: var(--bg-alt);
}
.beyond-dental-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--bg-dark);
  border-radius: 20px;
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}
.beyond-dental-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(43,170,183,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.beyond-dental-left { flex: 1; }
.beyond-dental-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #2BAAB7;
  margin-bottom: 14px;
}
.beyond-dental-headline {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.beyond-dental-headline em { color: #2BAAB7; font-style: normal; }
.beyond-dental-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 480px;
}
.beyond-dental-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .beyond-dental-card { flex-direction: column; align-items: flex-start; padding: 36px 28px; }
  .beyond-dental-btn { width: 100%; justify-content: center; }
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.navbar__links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--ease);
}
.navbar__links a:hover { color: var(--text-heading); }
.navbar__links a.active { color: var(--teal); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-audit-btn {
  font-size: 0.875rem;
  padding: 9px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-body);
  font-weight: 600;
  transition: all var(--ease);
}
.nav-audit-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-heading);
  border-radius: var(--radius-full);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  background: var(--bg-page);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Aurora background — subtle teal + purple radial halos */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 78% 15%, rgba(43,170,183,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 18% 75%, rgba(155,92,199,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 50% -5%,  rgba(43,170,183,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 90% 85%,  rgba(90,102,67,0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; }

.hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: center;
}

.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 20px;
}

.hero__headline {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.hero__headline em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.0625rem);
  color: var(--text-body);
  max-width: 520px;
  line-height: 1.75;
}

.hero__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 8px;
}

.hero__trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
}
.trust-badge svg { color: var(--teal); flex-shrink: 0; }

/* Hero right — dashboard widget */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.hero__dashboard {
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.06);
}

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

.hero__dash-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.18);
  animation: statusPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.18); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0.06); }
}

.hero__status-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}

.hero__dash-badge {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.hero__metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero__metric {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.hero__metric-val {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hero__metric-unit { font-size: 0.875rem; font-weight: 500; opacity: 0.55; }
.hero__metric-name { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-bottom: 6px; line-height: 1.4; }
.hero__metric-delta { font-size: 0.7rem; font-weight: 600; }
.hero__metric-delta--up    { color: #4ade80; }
.hero__metric-delta--muted { color: rgba(255,255,255,0.3); }

/* ============================================================
   THREE PILLARS
============================================================ */
.pillars-section {
  background: var(--bg-page);
  padding: 64px 0 80px;
}

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

/* ============================================================
   HERO RADAR ANIMATION
============================================================ */
.radar-scene {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.radar-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(43,170,183,0.12) 0%, rgba(43,170,183,0.04) 50%, transparent 75%);
  pointer-events: none;
}

/* Sweep — conic gradient rotates as a full circle */
.radar-sweep {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(20,184,166,0.04) 20deg, rgba(20,184,166,0.16) 60deg, transparent 60deg);
  animation: radarSpin 4s linear infinite;
}

/* Sweep arm line */
.radar-arm {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 195px;
  height: 1.5px;
  margin-top: -0.75px;
  transform-origin: 0% 50%;
  background: linear-gradient(to right, rgba(20,184,166,1) 0%, rgba(20,184,166,0.6) 40%, transparent 100%);
  box-shadow: 0 0 6px rgba(20,184,166,0.5), 0 0 12px rgba(20,184,166,0.2);
  animation: radarSpin 4s linear infinite;
  z-index: 2;
}

@keyframes radarSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Rings */
.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(20,184,166,0.18);
  animation: ringBreath 3.5s ease-in-out infinite;
}
.radar-ring--1 { width: 110px;  height: 110px;  animation-delay: 0s; }
.radar-ring--2 { width: 200px;  height: 200px;  animation-delay: 0.4s; border-color: rgba(20,184,166,0.14); }
.radar-ring--3 { width: 290px;  height: 290px;  animation-delay: 0.8s; border-color: rgba(20,184,166,0.10); }
.radar-ring--4 { width: 390px;  height: 390px;  animation-delay: 1.2s; border-color: rgba(20,184,166,0.07); }

@keyframes ringBreath {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

/* Cross-hair */
.radar-cross {
  position: absolute;
  background: rgba(20,184,166,0.1);
}
.radar-cross--h { width: 390px; height: 1px; }
.radar-cross--v { width: 1px;   height: 390px; }

/* Core */
.radar-core {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}
.radar-core__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(20,184,166,0.5), 0 0 14px rgba(255,255,255,0.9), 0 0 28px rgba(20,184,166,0.6);
}
.radar-core__halo {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(20,184,166,0.7);
  animation: haloPulse 2.4s ease-out infinite;
}
.radar-core__halo--2 {
  animation-delay: 1.2s;
}
@keyframes haloPulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(4.5); opacity: 0; }
}

/* Orbiting nodes */
.radar-orbit {
  position: absolute;
  width:  calc(var(--r) * 2);
  height: calc(var(--r) * 2);
  border-radius: 50%;
  animation: orbitSpin var(--dur, 10s) linear infinite var(--off, 0s);
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.radar-node {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(20,184,166,0.9);
  box-shadow: 0 0 8px rgba(20,184,166,0.8), 0 0 18px rgba(20,184,166,0.3);
}
.radar-node--bright {
  width: 9px;
  height: 9px;
  background: #fff;
  box-shadow: 0 0 10px #fff, 0 0 22px rgba(20,184,166,0.8), 0 0 40px rgba(20,184,166,0.3);
}
.radar-node--sm {
  width: 5px;
  height: 5px;
  opacity: 0.65;
}

/* Detection blips */
.radar-blip {
  position: absolute;
  left: var(--bx, 50%);
  top:  var(--by, 50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #14b8a6;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(20,184,166,0.9);
  animation: blipPop 5s ease-in-out infinite var(--bd, 0s);
  z-index: 3;
}
.radar-blip::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(20,184,166,0.7);
  animation: blipRing 5s ease-in-out infinite var(--bd, 0s);
}
@keyframes blipPop {
  0%,18%,82%,100% { opacity: 0; transform: translate(-50%,-50%) scale(0); }
  28%,72%          { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
@keyframes blipRing {
  0%,18%  { transform: scale(0);   opacity: 0; }
  28%     { transform: scale(1);   opacity: 1; }
  72%     { transform: scale(3.5); opacity: 0; }
  100%    { transform: scale(3.5); opacity: 0; }
}

@media (max-width: 900px) {
  .radar-scene { transform: scale(0.72); transform-origin: center; }
}
@media (max-width: 600px) {
  .radar-scene { transform: scale(0.52); }
}

/* ============================================================
   PILLARS
============================================================ */
.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease);
  display: flex;
  flex-direction: column;
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(43,170,183,0.3);
}

/* Icon header instead of image */
.pillar__icon-wrap {
  position: relative;
  width: 100%;
  padding: 32px 28px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.pillar--attract .pillar__icon-wrap { border-bottom: 1px solid var(--border); }
.pillar--engage  .pillar__icon-wrap { border-bottom: 1px solid var(--border); }
.pillar--grow    .pillar__icon-wrap { border-bottom: 1px solid var(--border); }

.pillar__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar--attract .pillar__icon { background: rgba(43,170,183,0.12); color: var(--attract-color); }
.pillar--engage  .pillar__icon { background: rgba(155,92,199,0.12);  color: var(--engage-color); }
.pillar--grow    .pillar__icon { background: rgba(90,102,67,0.12);  color: var(--grow-color); }

.pillar__tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pillar__tag--attract { background: rgba(43,170,183,0.12); color: var(--attract-color); }
.pillar__tag--engage  { background: rgba(155,92,199,0.12);  color: var(--engage-color); }
.pillar__tag--grow    { background: rgba(90,102,67,0.12);  color: var(--grow-color); }

.pillar__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

.pillar__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.35;
  margin: 0;
}

.pillar__list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pillar__list li {
  font-size: 0.875rem;
  color: var(--text-body);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pillar--attract .pillar__list li::before { content: '✓'; position: absolute; left: 0; color: var(--attract-color); font-weight: 800; font-size: 0.875rem; }
.pillar--engage  .pillar__list li::before { content: '✓'; position: absolute; left: 0; color: var(--engage-color);  font-weight: 800; font-size: 0.875rem; }
.pillar--grow    .pillar__list li::before { content: '✓'; position: absolute; left: 0; color: var(--grow-color);    font-weight: 800; font-size: 0.875rem; }

/* ============================================================
   STATS BAR — clean light cards
============================================================ */
.stats-bar {
  background: var(--bg-page);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 32px 40px;
  position: relative;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 200px;
  line-height: 1.55;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  align-self: stretch;
  margin: 16px 0;
}

/* ============================================================
   POWERED BY — arose.ai glass marquee
============================================================ */
.powered-by-section {
  padding: 52px 0 44px;
  background: var(--bg-page);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.powered-by-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  display: block;
  margin-bottom: 32px;
  opacity: 0.6;
}

/* Glass container wrapping the marquee */
.powered-by-glass {
  position: relative;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px 0;
}

.powered-by-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.powered-by-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marqueeTech 40s linear infinite;
}

.powered-by-track:hover { animation-play-state: paused; }

@keyframes marqueeTech {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Individual brand items — 4 visible at a time */
.brand-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 25vw;
  padding: 14px 0;
  white-space: nowrap;
  color: var(--text-muted);
  transition: color 0.35s ease, transform 0.35s ease;
}

.brand-item:hover {
  color: var(--text-body);
  transform: translateY(-2px);
}

.brand-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.35s ease;
}

.brand-item:hover .brand-logo { opacity: 1; }

.brand-name {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ============================================================
   ROI CALCULATOR
============================================================ */
.calc-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.calc-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 6px 6px 0;
  gap: 4px;
}

.calc-tab {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
  white-space: nowrap;
}
.calc-tab:hover { color: var(--text-heading); background: rgba(0,0,0,0.02); }
.calc-tab.active {
  background: var(--bg-card);
  color: var(--teal);
  border-bottom: 2px solid var(--teal);
  margin-bottom: -1px;
}

.calc-body { display: grid; grid-template-columns: 1fr 340px; }

.calc-sliders { padding: 36px 40px; border-right: 1px solid var(--border); }

.calc-panel { display: none; flex-direction: column; gap: 28px; }
.calc-panel.active { display: flex; }

.slider-group { display: flex; flex-direction: column; gap: 10px; }

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-label-row label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
}

.slider-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  min-width: 60px;
  text-align: right;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--radius-full);
  outline: none;
  cursor: pointer;
  background: linear-gradient(
    to right,
    var(--teal) 0%,
    var(--teal) var(--pct, 20%),
    #e8ecf0 var(--pct, 20%),
    #e8ecf0 100%
  );
  transition: background var(--ease);
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid var(--teal);
  box-shadow: 0 2px 8px rgba(43,170,183,0.25);
  cursor: grab;
  transition: transform var(--ease), box-shadow var(--ease);
}
.slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15); }
.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid var(--teal);
  box-shadow: 0 2px 8px rgba(43,170,183,0.25);
  cursor: grab;
}

.slider-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.calc-results {
  background: linear-gradient(160deg, rgba(43,170,183,0.06) 0%, rgba(43,170,183,0.02) 100%);
  border-left: 1px solid rgba(43,170,183,0.12);
  padding: 36px 32px;
  display: flex;
  align-items: center;
}

.calc-result-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.calc-result-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.calc-result-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1;
}

.calc-result-number--green { color: #2BAAB7; }
.calc-divider { height: 1px; background: var(--border); margin: 4px 0; }
.calc-result-footnote { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }
.calc-cta { margin-top: 8px; font-size: 0.875rem; padding: 14px 16px; white-space: normal; text-align: center; line-height: 1.4; }

/* ============================================================
   HOW IT WORKS — STEPS (arose.ai style)
============================================================ */
.how-section { background: var(--bg-alt); border-top: 1px solid var(--border); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}

/* Connecting line */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 20px;
  transition: all var(--ease);
}
.step-item:hover .step-number {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.step-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background var(--ease);
}
.step-item:hover .step-icon-box { background: rgba(43,170,183,0.15); }

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ============================================================
   DEMO SECTION — AI Audio Player
============================================================ */
.demo-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── Audio card ── */
.ai-audio-card {
  max-width: 820px;
  margin: 0 auto 36px;
  background: var(--bg-dark);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  user-select: none;
}

/* Waveform background bars */
.ai-waveform {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 48px;
  pointer-events: none;
  opacity: 0.12;
}

.ai-waveform span {
  flex: 1;
  max-width: 6px;
  border-radius: 3px;
  background: #fff;
  height: 32px;
  transform-origin: center;
  transition: height 0.15s ease;
}

/* Playing state: bars animate */
.ai-audio-card.is-playing .ai-waveform { opacity: 0.22; }
.ai-audio-card.is-playing .ai-waveform span { animation: waveBar 0.9s ease-in-out infinite alternate; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(odd)  { animation-delay: calc(var(--i, 0) * 0.08s); }
.ai-audio-card.is-playing .ai-waveform span:nth-child(even) { animation-delay: calc(var(--i, 0) * 0.12s); }
.ai-audio-card.is-playing .ai-waveform span:nth-child(1)  { --i:1; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(2)  { --i:3; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(3)  { --i:2; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(4)  { --i:5; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(5)  { --i:1; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(6)  { --i:4; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(7)  { --i:2; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(8)  { --i:6; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(9)  { --i:3; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(10) { --i:1; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(11) { --i:5; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(12) { --i:2; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(13) { --i:4; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(14) { --i:1; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(15) { --i:3; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(16) { --i:6; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(17) { --i:2; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(18) { --i:4; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(19) { --i:1; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(20) { --i:5; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(21) { --i:3; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(22) { --i:2; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(23) { --i:4; }
.ai-audio-card.is-playing .ai-waveform span:nth-child(24) { --i:1; }

@keyframes waveBar {
  from { height: 12px; }
  to   { height: calc(12px + var(--i, 3) * 10px); }
}

/* Content row */
.ai-audio-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 36px 40px 28px;
}

/* Left: meta */
.ai-audio-meta { display: flex; flex-direction: column; gap: 8px; }

.ai-audio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5eead4;
}

.ai-audio-dot-live {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: statusPulse 2s ease-in-out infinite;
}

.ai-audio-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
}

.ai-audio-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* Center: play button */
.ai-play-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ai-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--teal);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(43,170,183,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s;
  flex-shrink: 0;
}

.ai-play-btn:hover {
  background: #0f766e;
  transform: scale(1.08);
  box-shadow: 0 0 0 14px rgba(43,170,183,0.14), 0 8px 32px rgba(43,170,183,0.4);
}

.ai-audio-card.is-playing .ai-play-btn {
  box-shadow: 0 0 0 10px rgba(43,170,183,0.15), 0 6px 24px rgba(43,170,183,0.35);
  animation: playPulse 2.2s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 10px rgba(43,170,183,0.15), 0 6px 24px rgba(43,170,183,0.35); }
  50%       { box-shadow: 0 0 0 18px rgba(43,170,183,0.06), 0 6px 24px rgba(43,170,183,0.35); }
}

.ai-play-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
  text-align: center;
  transition: color 0.2s;
}

.ai-play-btn:hover + .ai-play-label,
.ai-play-wrap:hover .ai-play-label { color: rgba(255,255,255,0.85); }

/* Right: time display */
.ai-audio-time-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.ai-time-current { color: #fff; }
.ai-time-sep { color: rgba(255,255,255,0.25); }
.ai-time-total { color: rgba(255,255,255,0.4); }

/* Progress bar */
.ai-progress-row {
  position: relative;
  z-index: 1;
  padding: 0 40px 28px;
}

.ai-progress-track {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  cursor: pointer;
  overflow: hidden;
  transition: height 0.2s ease;
}

.ai-progress-track:hover { height: 6px; }

.ai-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), #2dd4bf);
  border-radius: var(--radius-full);
  transition: width 0.1s linear;
}

/* CTA row */
.demo-cta-row { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.demo-cta-note { font-size: 0.875rem; color: var(--text-muted); }

/* ============================================================
   FREE PROSPECTING TOOL
============================================================ */
.prospecting-section { background: var(--bg-alt); border-top: 1px solid var(--border); }

.prospecting-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.prosp-step { display: none; }
.prosp-step.active { display: block; }

.prosp-form-header { padding: 24px 40px 0; }

.prosp-what-we-check {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 18px;
  background: var(--teal-light);
  border: 1px solid rgba(43,170,183,0.15);
  border-radius: var(--radius-md);
}

.prosp-check-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal-dark);
}

.field-required { color: #ef4444; font-size: 0.75rem; }
.field-optional { color: var(--text-muted); font-size: 0.75rem; font-weight: 400; }

.prosp-form {
  padding: 24px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--text-heading); }

.form-group input,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--text-heading);
  background: var(--bg-page);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43,170,183,0.08);
}
.form-group input::placeholder { color: var(--text-muted); }

.prosp-submit-row { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 8px; }
.prosp-privacy { font-size: 0.875rem; color: var(--text-muted); }

/* Audit Results */
.prosp-results {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.prosp-results-header h3 { font-size: 1.375rem; font-weight: 800; color: var(--text-heading); margin-bottom: 4px; }
.prosp-results-sub { font-size: 0.875rem; color: var(--text-muted); }

.prosp-score-circle {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}

.prosp-circle-svg { width: 120px; height: 120px; transform: rotate(-90deg); }
.prosp-circle-bg { fill: none; stroke: #e8ecf0; stroke-width: 10; }
.prosp-circle-fill {
  fill: none;
  stroke: #ef4444;
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s ease;
}

.prosp-circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}

.prosp-score-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-heading);
  display: block;
}
.prosp-score-denom { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; }

/* Score verdict text (set dynamically by JS) */
.prosp-score-verdict { font-size: 14px; font-weight: 700; margin-bottom: 4px; }

/* Grade badge */
.prosp-grade-badge {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin: 8px 0 4px;
  color: #ef4444;
}
.prosp-grade-badge.grade-dp { color: #f97316; }
.prosp-grade-badge.grade-cm { color: #eab308; }

/* Left panel (light) */
.prosp-left-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
}

/* Loss callout */
.prosp-loss-callout {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  width: 100%;
  margin-top: 16px;
}
.prosp-loss-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #ef4444; margin-bottom: 4px; }
.prosp-loss-number { font-size: 22px; font-weight: 800; color: var(--text-heading); }
.prosp-loss-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.prosp-email-confirm {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
.prosp-email-confirm strong { color: var(--teal); }

.prosp-cta-section { width: 100%; }
.prosp-cta-headline { font-size: 14px; font-weight: 700; color: var(--text-heading); margin: 0 0 4px; }
.prosp-cta-sub { font-size: 12px; color: var(--text-body); margin: 0; }

/* Grade pill badges */
.prosp-cat-grade {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 4px;
  white-space: nowrap;
  color: #fff;
}
.prosp-cat-grade--f  { background: #ef4444; }
.prosp-cat-grade--d  { background: #f97316; }
.prosp-cat-grade--dp { background: #f97316; }
.prosp-cat-grade--cm { background: #eab308; color: #1c1917; }

.prosp-cat-fill--red { background: #ef4444 !important; }

/* PDF note */
.prosp-pdf-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(43,170,183,0.06);
  border: 1px solid rgba(43,170,183,0.2);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12px;
  color: var(--teal);
  margin-top: 16px;
  line-height: 1.5;
}

.prosp-retake-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.prosp-retake-btn:hover { border-color: var(--teal); color: var(--teal); }

.audit-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.audit-close-btn:hover { border-color: #ef4444; color: #ef4444; }

/* Category progress bars */
.prosp-cat-bar {
  height: 6px;
  background: var(--border-light);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.prosp-cat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #34d399);
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section {
  background: var(--bg-page);
  border-top: 1px solid var(--border);
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--ease), border-color var(--ease);
}
.testimonial-card:hover { transform: translateY(-3px); border-color: rgba(43,170,183,0.3); }
.testimonial-card--featured {
  border-color: var(--teal);
  border-width: 2px;
}

.testimonial-stars { color: var(--teal); font-size: 1rem; letter-spacing: 2px; }
.testimonial-quote { font-size: 1rem; color: var(--text-body); line-height: 1.75; flex: 1; font-style: italic; }

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--border);
}

.testimonial-name { font-size: 0.875rem; font-weight: 700; color: var(--text-heading); }
.testimonial-location { font-size: 0.875rem; color: var(--text-muted); }

/* ============================================================
   PRICING — HERO CARD
============================================================ */
.pricing-hero-section { background: var(--bg-alt); border-top: 1px solid var(--border); }

.pricing-hero-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.pricing-hero-top {
  padding: 48px 56px 40px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Currency toggle */
.pricing-currency-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
  margin-bottom: 18px;
}
.currency-btn {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.2s ease;
}
.currency-btn--active {
  background: #2BAAB7;
  color: #fff;
}
.currency-btn:hover:not(.currency-btn--active) { color: rgba(255,255,255,0.8); }

.pricing-demo-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  margin-bottom: 20px;
}

.pricing-hero-headline {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  max-width: 560px;
}

.pricing-hero-headline em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-hero-sub {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.pricing-hero-amount-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-amount-badge {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  min-width: 160px;
}
.pricing-amount-badge--yearly { border-color: rgba(212,168,83,0.3); background: rgba(212,168,83,0.04); }

.pricing-amount-from { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.pricing-amount-big { font-family: var(--font-serif); font-size: 2.25rem; font-weight: 900; color: var(--text-heading); line-height: 1; }
.pricing-amount-per { font-size: 0.875rem; color: var(--text-muted); margin-top: 4px; }
.pricing-amount-sep { font-size: 0.875rem; color: var(--text-muted); font-weight: 600; }

.pricing-features-section { padding: 40px 56px 48px; }
.pricing-features-title { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 24px; text-align: center; }

.pricing-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.pricing-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  transition: border-color var(--ease), background var(--ease);
}
.pricing-feat-item:hover { border-color: rgba(43,170,183,0.25); background: rgba(43,170,183,0.03); }

.pricing-feat-icon { font-size: 1.375rem; flex-shrink: 0; }
.pricing-feat-text { display: flex; flex-direction: column; gap: 2px; }
.pricing-feat-text strong { font-size: 0.875rem; font-weight: 700; color: var(--text-heading); }
.pricing-feat-text span { font-size: 0.875rem; color: var(--text-body); line-height: 1.5; }

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

.pricing-cta-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================================
   FAQ
============================================================ */
.faq-section { background: var(--bg-page); border-top: 1px solid var(--border); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
  transition: color var(--ease);
}
.faq-question:hover { color: var(--teal); }

.faq-icon { font-size: 1.375rem; font-weight: 300; color: var(--teal); flex-shrink: 0; transition: transform 0.3s ease; line-height: 1; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.is-open .faq-answer { max-height: 300px; padding-bottom: 22px; }
.faq-answer p { font-size: 1rem; color: var(--text-body); line-height: 1.75; }

/* ============================================================
   FINAL CTA (stays dark for contrast)
============================================================ */
.final-cta {
  background: var(--bg-dark);
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(43,170,183,0.1);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.final-cta__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.final-cta__btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.eyebrow--light { color: #5eead4; }

.final-cta__inner h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.final-cta__inner h2 em { font-style: normal; color: #5eead4; }
.final-cta__inner p { color: rgba(255,255,255,0.55); font-size: 1rem; max-width: 480px; line-height: 1.75; }

.final-cta .btn--primary { background: var(--teal); border-color: var(--teal); font-size: 1.0625rem; }
.final-cta .btn--primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); box-shadow: 0 10px 32px rgba(43,170,183,0.4); }
.final-cta__trust { font-size: 0.875rem; color: rgba(255,255,255,0.25); }

/* ============================================================
   FOOTER (stays dark)
============================================================ */
.footer {
  background: #0a0f1e;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0 40px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-logo .navbar__logo-name {
  color: #fff;
}
.footer-logo .navbar__logo-byline {
  color: rgba(255,255,255,0.4);
}

.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.4); line-height: 1.75; max-width: 280px; }

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color var(--ease); }
.footer-links ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.25); }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.875rem; color: rgba(255,255,255,0.25); transition: color var(--ease); }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

.footer-trust-badges { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.footer-badge { font-size: 0.775rem; color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-full); padding: 5px 12px; }
.footer-udyam {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  background: rgba(43,170,183,0.10);
  border: 1px solid rgba(43,170,183,0.25);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  letter-spacing: 0.01em;
}

/* ============================================================
   BOOKING MODAL — 2-column layout
============================================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}
.modal.is-open { display: flex; align-items: center; justify-content: center; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__box {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 40px;
  margin: 16px;
}

.modal__box--cal {
  padding: 0;
  max-width: 920px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--ease), color var(--ease);
  line-height: 1;
  z-index: 10;
}
.modal__close:hover { background: var(--bg-alt); color: var(--text-heading); }

/* Cal modal two-column layout */
.cal-modal-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  height: 88vh;
  max-height: 700px;
}

/* Sidebar — clean dark gradient */
.cal-modal-sidebar {
  background: linear-gradient(170deg, #0e2f33 0%, #0a0a0a 60%);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid rgba(43,170,183,0.12);
  overflow-y: auto;
}

.cal-modal-logo { margin-bottom: -4px; }

.cal-sidebar-intro { display: flex; flex-direction: column; gap: 10px; }

.cal-modal-headline {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

.cal-modal-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0;
}

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

.cal-modal-feature { display: flex; align-items: flex-start; gap: 14px; }

.cal-modal-feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(43,170,183,0.15);
  border: 1px solid rgba(43,170,183,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2dd4bf;
  flex-shrink: 0;
}

.cal-modal-feature-title { color: #fff; font-size: 0.875rem; font-weight: 600; line-height: 1.3; }
.cal-modal-feature-sub { color: rgba(255,255,255,0.4); font-size: 0.75rem; line-height: 1.45; margin-top: 2px; }

.cal-modal-trust {
  margin-top: auto;
  padding-top: 4px;
}

.cal-modal-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cal-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  width: 100%;
}

.cal-trust-badge svg { color: #2dd4bf; flex-shrink: 0; }

.cal-modal-commitment {
  margin-top: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
}

.commitment-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.commitment-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #14b8a6;
  cursor: pointer;
}

.commitment-note {
  margin: 8px 0 0 25px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  font-style: italic;
}

.cal-modal-commitment.commitment-required {
  border-color: rgba(239,68,68,0.5);
  background: rgba(239,68,68,0.06);
  animation: commitShake 0.4s ease;
}

@keyframes commitShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* Embed right side */
.cal-modal-embed-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cal-modal-close-btn {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
  padding: 0;
}
.cal-modal-close-btn:hover { background: var(--border); color: var(--text-heading); }

.cal-modal-embed-header {
  padding: 24px 28px 12px;
  border-bottom: 1px solid var(--border);
}
.cal-embed-step-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.cal-embed-title { font-size: 16px; font-weight: 700; color: var(--text-heading); margin-bottom: 2px; }
.cal-embed-sub { font-size: 12px; color: var(--text-muted); }

/* Step 1 form inside modal */
.cal-form-step {
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cal-form-step .form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cal-form-step .form-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-heading);
}

.cal-form-step .form-field input,
.cal-form-step .form-field select {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-heading);
  background: var(--bg-page);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.cal-form-step .form-field input:focus,
.cal-form-step .form-field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(43,170,183,0.08);
}
.cal-form-step .form-field input::placeholder { color: var(--text-muted); }

.cal-form-btn {
  margin-top: 8px;
  width: 100%;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--ease), transform var(--ease);
}
.cal-form-btn:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ============================================================
   PAYMENT MODAL
============================================================ */
#payment-modal { display: none; position: fixed; inset: 0; z-index: 4000; align-items: center; justify-content: center; }

/* ============================================================
   DEMO SHOWCASE — ElevenLabs style 2-column
============================================================ */
.demo-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: start;
}

/* live dot (shared) */
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: statusPulse 2s ease-in-out infinite;
  flex-shrink: 0;
  display: inline-block;
}

/* ── Video demo placeholder ── */
.demo-video-wrap { margin-bottom: 36px; }

.demo-video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0a0c14;
  aspect-ratio: 16 / 6;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22), 0 0 0 1px rgba(99,102,241,0.1);
}

.demo-video-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.demo-video-waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 80px;
  opacity: 0.18;
}

.demo-video-waveform span {
  display: block;
  width: 3px;
  background: #6366f1;
  border-radius: 99px;
  animation: waveFloat 1.2s ease-in-out infinite alternate;
}
.demo-video-waveform span:nth-child(1)  { height: 30%; animation-delay: 0.0s; }
.demo-video-waveform span:nth-child(2)  { height: 55%; animation-delay: 0.1s; }
.demo-video-waveform span:nth-child(3)  { height: 80%; animation-delay: 0.05s; }
.demo-video-waveform span:nth-child(4)  { height: 45%; animation-delay: 0.15s; }
.demo-video-waveform span:nth-child(5)  { height: 70%; animation-delay: 0.08s; }
.demo-video-waveform span:nth-child(6)  { height: 90%; animation-delay: 0.2s; }
.demo-video-waveform span:nth-child(7)  { height: 60%; animation-delay: 0.03s; }
.demo-video-waveform span:nth-child(8)  { height: 35%; animation-delay: 0.12s; }
.demo-video-waveform span:nth-child(9)  { height: 75%; animation-delay: 0.06s; }
.demo-video-waveform span:nth-child(10) { height: 50%; animation-delay: 0.18s; }
.demo-video-waveform span:nth-child(11) { height: 88%; animation-delay: 0.09s; }
.demo-video-waveform span:nth-child(12) { height: 42%; animation-delay: 0.14s; }
.demo-video-waveform span:nth-child(13) { height: 65%; animation-delay: 0.04s; }
.demo-video-waveform span:nth-child(14) { height: 78%; animation-delay: 0.17s; }
.demo-video-waveform span:nth-child(15) { height: 38%; animation-delay: 0.07s; }
.demo-video-waveform span:nth-child(16) { height: 55%; animation-delay: 0.11s; }
.demo-video-waveform span:nth-child(17) { height: 82%; animation-delay: 0.02s; }
.demo-video-waveform span:nth-child(18) { height: 47%; animation-delay: 0.16s; }
.demo-video-waveform span:nth-child(19) { height: 68%; animation-delay: 0.05s; }
.demo-video-waveform span:nth-child(20) { height: 92%; animation-delay: 0.13s; }
.demo-video-waveform span:nth-child(21) { height: 33%; animation-delay: 0.0s; }
.demo-video-waveform span:nth-child(22) { height: 58%; animation-delay: 0.1s; }
.demo-video-waveform span:nth-child(23) { height: 73%; animation-delay: 0.07s; }
.demo-video-waveform span:nth-child(24) { height: 44%; animation-delay: 0.19s; }
.demo-video-waveform span:nth-child(25) { height: 85%; animation-delay: 0.03s; }
.demo-video-waveform span:nth-child(26) { height: 62%; animation-delay: 0.15s; }
.demo-video-waveform span:nth-child(27) { height: 40%; animation-delay: 0.08s; }
.demo-video-waveform span:nth-child(28) { height: 77%; animation-delay: 0.12s; }
.demo-video-waveform span:nth-child(29) { height: 52%; animation-delay: 0.06s; }
.demo-video-waveform span:nth-child(30) { height: 36%; animation-delay: 0.18s; }

@keyframes waveFloat {
  from { transform: scaleY(0.4); }
  to   { transform: scaleY(1); }
}

.demo-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(217,70,239,0.05) 100%);
}

.demo-video-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.demo-video-playbtn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.demo-video-playbtn:hover {
  background: rgba(99,102,241,0.4);
  transform: scale(1.08);
  box-shadow: 0 0 0 8px rgba(99,102,241,0.15), 0 8px 32px rgba(0,0,0,0.3);
}

.demo-video-caption {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ── AI Agent column ── */
.demo-agent-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.demo-agent-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-agent-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #d946ef);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.demo-agent-info { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.demo-agent-name { font-size: 0.8625rem; font-weight: 700; color: var(--text-heading); }

.demo-agent-role {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.demo-agent-status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: statusPulse 2s ease-in-out infinite;
}

.demo-agent-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #6366f1, #d946ef);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
}

.demo-agent-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 280px;
}

.agent-msg {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 80%;
  animation: agentMsgIn 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
}
.agent-msg--ai   { align-self: flex-start; }
.agent-msg--patient { align-self: flex-end; }

@keyframes agentMsgIn {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.agent-msg-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.agent-msg--ai .agent-msg-bubble {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-heading);
  border-bottom-left-radius: 5px;
}

.agent-msg--patient .agent-msg-bubble {
  background: linear-gradient(135deg, rgba(99,102,241,0.12), rgba(217,70,239,0.08));
  border: 1px solid rgba(99,102,241,0.18);
  color: var(--text-heading);
  border-bottom-right-radius: 5px;
}

.agent-msg--confirm .agent-msg-bubble {
  background: rgba(43,170,183,0.07);
  border-color: rgba(43,170,183,0.2);
}

.agent-confirm-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
}

.agent-msg-time {
  font-size: 0.65rem;
  color: var(--text-muted);
  padding: 0 2px;
}

/* Typing indicator */
.agent-msg--typing { align-self: flex-start; }

.agent-typing-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  padding: 12px 16px;
}

.agent-typing-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typingBounce 1.2s ease-in-out infinite;
}
.agent-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.agent-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30%          { transform: translateY(-5px); opacity: 1; }
}

/* Agent footer tasks */
.demo-agent-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.demo-agent-tasks {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.agent-task {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.agent-task--done {
  color: var(--teal);
}

/* ── Metrics column ── */
.demo-metrics-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.demo-metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.demo-metric-card:hover {
  transform: translateY(-2px);
  border-color: rgba(43,170,183,0.25);
}

.demo-metric-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(217,70,239,0.06));
  border: 1px solid rgba(99,102,241,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
  flex-shrink: 0;
}

.demo-metric-body { display: flex; flex-direction: column; gap: 2px; }

.demo-metric-val {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1;
}

.demo-metric-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Scenarios box */
.demo-scenarios-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-scenarios-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

.demo-scenario-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.demo-scenario-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-body);
  cursor: default;
  transition: border-color var(--ease), color var(--ease);
}

.demo-scenario-pill--active {
  background: rgba(99,102,241,0.07);
  border-color: rgba(99,102,241,0.22);
  color: #6366f1;
}

/* ============================================================
   HERO ENHANCEMENTS — animated gradient, glow
============================================================ */
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43,170,183,0.07) 0%, transparent 70%);
  bottom: -200px;
  left: -100px;
  pointer-events: none;
  animation: heroBlob 8s ease-in-out infinite alternate;
}

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

/* Animated hero headline gradient shimmer — teal → purple (NormiAI) */
.hero__headline em {
  position: relative;
  background: linear-gradient(90deg, #2BAAB7, #9B5CC7, #2BAAB7);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
  from { background-position: 0% center; }
  to   { background-position: 200% center; }
}

/* Stats counter number — glow on hover */
.stat-item:hover .stat-number {
  color: var(--teal);
  text-shadow: 0 0 40px rgba(43,170,183,0.25);
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

/* ============================================================
   ADVANCED ANIMATIONS & EFFECTS
============================================================ */

/* Floating particles in hero */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}
.hero-particle:nth-child(1)  { width:3px;height:3px;background:#6366f1;left:12%;animation-duration:14s;animation-delay:0s; }
.hero-particle:nth-child(2)  { width:2px;height:2px;background:#d946ef;left:25%;animation-duration:18s;animation-delay:2s; }
.hero-particle:nth-child(3)  { width:4px;height:4px;background:#2BAAB7;left:38%;animation-duration:11s;animation-delay:1s; }
.hero-particle:nth-child(4)  { width:2px;height:2px;background:#6366f1;left:52%;animation-duration:16s;animation-delay:3s; }
.hero-particle:nth-child(5)  { width:3px;height:3px;background:#d946ef;left:65%;animation-duration:13s;animation-delay:0.5s; }
.hero-particle:nth-child(6)  { width:2px;height:2px;background:#2BAAB7;left:78%;animation-duration:19s;animation-delay:2.5s; }
.hero-particle:nth-child(7)  { width:4px;height:4px;background:#6366f1;left:88%;animation-duration:12s;animation-delay:1.5s; }
.hero-particle:nth-child(8)  { width:2px;height:2px;background:#d946ef;left:45%;animation-duration:17s;animation-delay:4s; }

@keyframes particleFloat {
  0%   { bottom:-10px; opacity:0; transform:translateX(0) scale(0.5); }
  10%  { opacity:0.6; }
  90%  { opacity:0.3; }
  100% { bottom:110%; opacity:0; transform:translateX(30px) scale(1); }
}

/* Gradient border on cards — hover shimmer */
.feature-card,
.process-step,
.pricing-card {
  position: relative;
  isolation: isolate;
}

.feature-card::before,
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(99,102,241,0), rgba(217,70,239,0), rgba(6,182,212,0));
  z-index: -1;
  transition: background 0.4s ease;
  pointer-events: none;
}

.feature-card:hover::before {
  background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(217,70,239,0.15), rgba(6,182,212,0.2));
}

.pricing-card:hover::before {
  background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(217,70,239,0.2));
}

/* 3D card tilt — applied via JS, but CSS handles the transition */
.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.1s ease-out, box-shadow 0.25s ease;
  will-change: transform;
}
.tilt-card:hover {
  box-shadow: var(--shadow-lg), 0 20px 60px rgba(99,102,241,0.12);
}

/* Scroll reveal — additional CSS for AOS overrides */
[data-aos="fade-up-glow"] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34,1.2,0.64,1);
}
[data-aos="fade-up-glow"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Section heading shimmer — applied to .section-header h2 on hover */
.section-header h2 {
  background: linear-gradient(90deg, var(--text-heading) 0%, var(--text-heading) 40%, #6366f1 50%, #d946ef 60%, var(--text-heading) 70%, var(--text-heading) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sectionHeadingShimmer 5s linear infinite paused;
}
.section-header:hover h2 { animation-play-state: running; }

@keyframes sectionHeadingShimmer {
  from { background-position: 0% center; }
  to   { background-position: 250% center; }
}

/* Glow pulse on teal CTAs */
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* AI badge floating animation in hero */
.hero-badge-float {
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ============================================================
   FLOATING HOLOGRAPHIC ORB — persistent AI demo player
============================================================ */
.fp-orb {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.fp-orb--hidden { opacity: 0; }
.fp-orb--visible { opacity: 1; pointer-events: auto; }

/* The morphing orb button */
.fp-orb-btn {
  position: absolute;
  inset: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.25s ease;
}
.fp-orb-btn:hover { transform: scale(1.08); }
.fp-orb-btn:active { transform: scale(0.96); }

/* Iridescent morphing blob */
.fp-orb-blob {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    #6366f1 0deg,
    #8b5cf6 72deg,
    #d946ef 144deg,
    #06b6d4 216deg,
    #9B5CC7 288deg,
    #6366f1 360deg
  );
  animation: orbMorph 4.5s ease-in-out infinite, orbColorShift 7s linear infinite;
  box-shadow:
    0 0 22px rgba(99,102,241,0.55),
    0 0 48px rgba(139,92,246,0.32),
    0 0 72px rgba(217,70,239,0.16),
    0 8px 32px rgba(0,0,0,0.25);
  transition: box-shadow 0.5s ease;
  will-change: border-radius, filter;
}

/* Glass shine overlay */
.fp-orb-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 32% 28%,
    rgba(255,255,255,0.48) 0%,
    rgba(255,255,255,0.12) 38%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 1;
  animation: orbMorph 4.5s ease-in-out infinite;
}

/* Play / pause icons */
.fp-orb-play,
.fp-orb-pause {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.95);
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
  pointer-events: none;
}

/* Tooltip label — positioned relative to .fp-orb-core */
.fp-orb-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(8,8,16,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.92);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 9px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.fp-orb-core:hover .fp-orb-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Orb core — contains rings + button + tooltip */
.fp-orb-core {
  position: relative;
  width: 68px;
  height: 68px;
  flex-shrink: 0;
}

/* Pulse rings — positioned absolute within .fp-orb-core */
.fp-orb-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(129,140,248,0.45);
  animation: orbRingPulse 2.6s ease-out infinite;
  pointer-events: none;
  z-index: 1;
}
.fp-orb-ring--2 {
  inset: -16px;
  border-color: rgba(192,132,252,0.3);
  animation-delay: 0.87s;
}
.fp-orb-ring--3 {
  inset: -24px;
  border-color: rgba(217,70,239,0.2);
  animation-delay: 1.73s;
}

/* Expanded mini-player (appears to the left of the orb) */
.fp-mini {
  background: rgba(8,10,20,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 12px 14px;
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 260px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(99,102,241,0.15);
  animation: fpMiniSlideIn 0.3s cubic-bezier(0.34,1.56,0.64,1) forwards;
  z-index: 2;
  pointer-events: auto;
}
.fp-mini.is-open { display: flex; }

.fp-mini-info {
  display: flex;
  align-items: center;
  gap: 9px;
}
.fp-mini-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: statusPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.fp-mini-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.fp-mini-sub {
  font-size: 0.675rem;
  color: rgba(255,255,255,0.38);
}
.fp-mini-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fp-mini-playbtn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #6366f1;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.fp-mini-playbtn:hover { background: #4f46e5; transform: scale(1.1); }
.fp-mini-track {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 99px;
  cursor: pointer;
  overflow: hidden;
}
.fp-mini-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6366f1, #d946ef);
  border-radius: 99px;
  transition: width 0.1s linear;
}
.fp-mini-time {
  font-size: 0.64rem;
  color: rgba(255,255,255,0.35);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.fp-mini-close {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  color: rgba(255,255,255,0.4);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.fp-mini-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Animations */
@keyframes orbMorph {
  0%,100% { border-radius: 50%; }
  14%  { border-radius: 62% 38% 67% 33% / 58% 44% 56% 42%; }
  28%  { border-radius: 37% 63% 45% 55% / 42% 62% 38% 58%; }
  42%  { border-radius: 58% 42% 38% 62% / 63% 39% 61% 37%; }
  57%  { border-radius: 44% 56% 63% 37% / 49% 53% 47% 51%; }
  71%  { border-radius: 67% 33% 53% 47% / 39% 63% 37% 61%; }
  85%  { border-radius: 52% 48% 44% 56% / 56% 44% 60% 40%; }
}

@keyframes orbColorShift {
  from { filter: hue-rotate(0deg) brightness(1.05); }
  to   { filter: hue-rotate(360deg) brightness(1.05); }
}

@keyframes orbRingPulse {
  0%   { transform: scale(0.82); opacity: 0.65; }
  100% { transform: scale(1.55); opacity: 0; }
}

@keyframes fpMiniSlideIn {
  from { opacity: 0; transform: translateX(10px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* Playing state — faster flow, stronger glow */
.fp-orb.is-playing .fp-orb-blob {
  animation: orbMorph 1.8s ease-in-out infinite, orbColorShift 2.5s linear infinite;
  box-shadow:
    0 0 36px rgba(99,102,241,0.82),
    0 0 72px rgba(139,92,246,0.55),
    0 0 110px rgba(217,70,239,0.32),
    0 8px 32px rgba(0,0,0,0.3);
}
.fp-orb.is-playing .fp-orb-shine {
  animation: orbMorph 1.8s ease-in-out infinite;
}
.fp-orb.is-playing .fp-orb-core .fp-orb-ring { animation-duration: 1.3s; }
.fp-orb.is-playing .fp-orb-core .fp-orb-ring--2 { animation-delay: 0.43s; animation-duration: 1.3s; }
.fp-orb.is-playing .fp-orb-core .fp-orb-ring--3 { animation-delay: 0.87s; animation-duration: 1.3s; }

/* ============================================================
   RESPONSIVE — TABLET
============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__text { align-items: center; text-align: center; }
  .hero__cta-row { justify-content: center; }
  .hero__trust-badges { justify-content: center; }
  .hero__visual { max-width: 520px; margin: 0 auto; width: 100%; }

  .calc-body { grid-template-columns: 1fr; }
  .calc-sliders { border-right: none; border-bottom: 1px solid var(--border); }
  .demo-showcase { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }

  .pricing-feat-grid { grid-template-columns: 1fr; }
  .pricing-hero-top { padding: 36px 32px 28px; }
  .pricing-features-section { padding: 28px 32px 36px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pillars { grid-template-columns: 1fr; max-width: 480px; margin: 48px auto 0; }

  .stats-bar__grid { grid-template-columns: 1fr; gap: 0; }
  .stat-divider { display: none; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Audio player stacks on mobile */
  .ai-audio-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    padding: 28px 24px 20px;
  }
  .ai-audio-time-wrap { justify-content: center; }
  .ai-progress-row { padding: 0 24px 24px; }
  .ai-waveform { padding: 0 24px; }

  /* Demo showcase stacks on mobile */
  .demo-showcase { grid-template-columns: 1fr; }
  .demo-video-card { aspect-ratio: 16 / 7; }

  /* Floating orb smaller on mobile */
  .fp-orb { right: 16px; }
  .fp-orb-core { width: 56px; height: 56px; }
  .fp-orb-ring { inset: -6px; }
  .fp-orb-ring--2 { inset: -12px; }
  .fp-orb-ring--3 { inset: -18px; }
  .fp-mini { width: calc(100vw - 100px); max-width: 260px; }
  .fp-orb-tooltip { display: none; }

  .calc-section,
  .how-section,
  .demo-section,
  .pricing-hero-section,
  .faq-section,
  .prospecting-section,
  .testimonials-section { padding: 72px 0; }

  .final-cta { padding: 80px 0; }

  .navbar__links {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .navbar__links.is-open { display: flex; }
  .navbar__links li { width: 100%; }
  .navbar__links a { display: block; padding: 12px 24px; font-size: 1rem; }
  .navbar__actions .btn--ghost { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__actions { gap: 6px; }
  .navbar__actions .btn--primary { font-size: 0.875rem; padding: 10px 16px; }
  .nav-audit-btn { display: none; }

  .hero { padding: 110px 0 64px; }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .hero__cta-row .btn { justify-content: center; }
  .hero__headline { font-size: 2.25rem; }

  .steps-grid { grid-template-columns: 1fr; gap: 28px; }

  .calc-sliders { padding: 28px 24px; }
  .calc-results { padding: 28px 24px; }
  .calc-tabs { overflow-x: auto; }
  .calc-tab { font-size: 0.875rem; padding: 10px 14px; }

  .modal__box { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cal-modal-layout { grid-template-columns: 1fr; }
  .cal-modal-sidebar { display: none; }

  .prosp-form { padding: 20px 24px 32px; }
  .prosp-form-header { padding: 20px 24px 0; }
  .prosp-results { padding: 28px 24px; }

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

  .stats-bar { padding: 48px 0; }
  .stats-bar__grid { grid-template-columns: 1fr; gap: 0; max-width: 100%; }
  .stat-item { padding: 28px 24px; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  /* Section headers — reduce bottom margin on mobile */
  .section-header { margin-bottom: 36px; }
  .section-sub { font-size: 1rem; }

  /* Navbar — hide the primary CTA on very small screens, hamburger is enough */
  .navbar__actions .btn--primary { display: none; }

  /* Tighter padding on the prospecting form */
  .prosp-form { padding: 16px 20px 28px; }
  .prosp-form-header { padding: 16px 20px 0; }

  /* WhatsApp button — slightly smaller on mobile */
  .whatsapp-float { width: 46px; height: 46px; bottom: 20px; right: 16px; }

  /* AIO hero cards — scale down on mobile */
  .aio-card { padding: 7px 10px; gap: 7px; min-width: 120px; }
  .aio-card__icon { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 1.75rem; letter-spacing: -0.02em; }
  h2 { font-size: 1.375rem; }
  .final-cta__inner h2 { font-size: 1.75rem; }
  .final-cta__btns { flex-direction: column; align-items: stretch; }
  .pricing-hero-amount-row { flex-direction: column; }

  /* Tighter inner padding on big cards at 480px */
  .pricing-hero-top { padding: 24px 20px 20px; }
  .pricing-features-section { padding: 20px 20px 24px; }
  .calc-sliders { padding: 20px 16px; }
  .calc-results { padding: 20px 16px; }

  /* Trust badges wrap cleanly */
  .hero__trust-badges { flex-wrap: wrap; gap: 8px; }

  /* Testi cards — tighter padding */
  .testi-card { padding: 24px 20px; }

  /* Footer logo text doesn't overflow */
  .navbar__logo-name { font-size: 0.95rem; }
  .navbar__logo-byline { font-size: 0.625rem; }
  .navbar__logo-img { height: 34px; }
}

/* ============================================================
   AIO SCENE — Holographic AI Orbital System
============================================================ */
.aio-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
}

.aio-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.aio-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(43, 170, 183, 0.22);
  border-radius: 12px;
  padding: 9px 13px;
  animation: cardFloat 6s ease-in-out infinite;
  animation-delay: var(--fd, 0s);
  z-index: 10;
  pointer-events: none;
  min-width: 148px;
}

.aio-card__icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(43,170,183,0.15) 0%, rgba(43,170,183,0.08) 100%);
  border: 1px solid rgba(43, 170, 183, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2BAAB7;
  flex-shrink: 0;
}

.aio-card__title {
  font-size: 11.5px;
  font-weight: 700;
  color: #0a0a0a;
  white-space: nowrap;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.aio-card__sub {
  font-size: 9.5px;
  color: #4A4558;
  white-space: nowrap;
  line-height: 1.25;
  margin-top: 2px;
}

@keyframes cardFloat {
  0%,  100% { transform: translateY(0px);  }
  50%        { transform: translateY(-7px); }
}

/* ============================================================
   NORMIAI FLOW DIAGRAM — Patient Journey Section
============================================================ */
.nf-section {
  padding: 96px 0 80px;
  background: #fff;
  overflow: hidden;
}

.nf-stage-wrap {
  margin-top: 52px;
  padding: 0 24px;
  overflow-x: auto;
}

.nf-stage {
  position: relative;
  display: grid;
  grid-template-columns: 210px 1fr 210px;
  align-items: center;
  gap: 0;
  max-width: 960px;
  min-width: 640px;
  margin: 0 auto;
  min-height: 340px;
  padding: 20px 0;
}

.nf-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}

/* Columns */
.nf-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.nf-col__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.nf-col--right .nf-col__label { text-align: right; }

/* Nodes */
.nf-node {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #e8ecf0;
  border-radius: 12px;
  padding: 11px 14px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: default;
}

.nf-node:hover {
  border-color: rgba(43,170,183,0.45);
  box-shadow: 0 4px 20px rgba(43,170,183,0.1);
  transform: translateY(-2px);
}

.nf-node--result {
  justify-content: space-between;
  flex-direction: row-reverse;
}

.nf-node__icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(43,170,183,0.07);
  border: 1px solid rgba(43,170,183,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2BAAB7;
  flex-shrink: 0;
}

.nf-node__title {
  font-size: 12.5px;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.3;
}

.nf-node__sub {
  font-size: 10.5px;
  color: var(--text-muted);
  line-height: 1.3;
  margin-top: 1px;
}

/* Hub */
.nf-hub {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  padding: 24px 16px;
}

.nf-hub__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(43,170,183,0.14);
  animation: nfRingPulse 3.5s ease-in-out infinite;
  pointer-events: none;
}

.nf-hub__ring--1 { width: 150px; height: 150px; animation-delay: 0s; }
.nf-hub__ring--2 { width: 195px; height: 195px; animation-delay: 0.8s; }
.nf-hub__ring--3 { width: 240px; height: 240px; animation-delay: 1.6s; }

@keyframes nfRingPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 0.18; transform: scale(1.03); }
}

.nf-hub__card {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #2BAAB7 0%, #1E8F9A 100%);
  border-radius: 20px;
  padding: 26px 28px;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(43,170,183,0.25),
    0 20px 60px rgba(43,170,183,0.32),
    0 6px 20px rgba(43,170,183,0.18);
  min-width: 158px;
  animation: nfHubPulse 4s ease-in-out infinite;
}

@keyframes nfHubPulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(43,170,183,0.25), 0 20px 60px rgba(43,170,183,0.32), 0 6px 20px rgba(43,170,183,0.18); }
  50%       { box-shadow: 0 0 0 1px rgba(43,170,183,0.4),  0 24px 72px rgba(43,170,183,0.42), 0 8px 28px rgba(43,170,183,0.26); }
}

.nf-hub__logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
}

.nf-hub__logo span { opacity: 0.75; }

.nf-hub__tagline {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  margin-top: 5px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nf-hub__divider {
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 12px auto;
}

.nf-hub__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nf-hub__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nf-hub__stat-val {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.nf-hub__stat-lbl {
  font-size: 8.5px;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nf-hub__stat-sep {
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,0.18);
}

@media (max-width: 768px) {
  .nf-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: unset;
    gap: 24px;
    padding: 0 8px;
  }
  .nf-hub { padding: 0; }
  .nf-hub__ring { display: none; }
  .nf-svg { display: none; }
  .nf-col--right .nf-col__label { text-align: left; }
  .nf-node--result { flex-direction: row; justify-content: flex-start; }
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-alt);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.testi-card:hover {
  border-color: rgba(43,170,183,0.3);
  transform: translateY(-2px);
}
.testi-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  font-style: italic;
  flex: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.testi-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-heading);
}
.testi-practice {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.testi-stars {
  margin-left: auto;
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (min-width: 600px) and (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
