/* ============================================================
   eVA Agent , Premium Enterprise SaaS Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --color-navy:       #0A1628;
  --color-navy-mid:   #0F2044;
  --color-blue:       #1A56DB;
  --color-blue-light: #3B82F6;
  --color-blue-glow:  #60A5FA;
  --color-accent:     #2563EB;
  --color-accent-2:   #0EA5E9;
  --color-white:      #FFFFFF;
  --color-gray-50:    #F8FAFC;
  --color-gray-100:   #F1F5F9;
  --color-gray-200:   #E2E8F0;
  --color-gray-300:   #CBD5E1;
  --color-gray-400:   #94A3B8;
  --color-gray-500:   #64748B;
  --color-gray-600:   #475569;
  --color-gray-700:   #334155;
  --color-gray-800:   #1E293B;
  --color-gray-900:   #0F172A;
  --color-green:      #10B981;
  --color-amber:      #F59E0B;
  --color-purple:     #7C3AED;
  --color-purple-mid: #9B59F5;
  --color-purple-light: #A78BFA;
  --gradient-brand:   linear-gradient(135deg, #1A56DB 0%, #7C3AED 100%);
  --gradient-brand-h: linear-gradient(135deg, #1646C0 0%, #6D28D9 100%);
  --shadow-brand:     0 8px 32px rgba(124,58,237,.28);

  --font-primary: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  --font-secondary: 'Inter', system-ui, -apple-system, sans-serif;

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

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.08);
  --shadow-blue: 0 8px 32px rgba(26,86,219,.25);
  --shadow-glow: 0 0 60px rgba(59,130,246,.18);

  --transition-fast:   150ms cubic-bezier(.4,0,.2,1);
  --transition-base:   250ms cubic-bezier(.4,0,.2,1);
  --transition-slow:   400ms cubic-bezier(.4,0,.2,1);
  --transition-spring: 500ms cubic-bezier(.34,1.56,.64,1);

  --container-max: 1280px;
  --section-pad:   96px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background: var(--color-white);
  color: var(--color-gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ───────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-blue);
  background: rgba(26,86,219,.08);
  border: 1px solid rgba(26,86,219,.16);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  margin-bottom: 20px;
}

.section-label .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
  animation: pulse 2s infinite;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.18;
  letter-spacing: -.02em;
}

.section-sub {
  font-size: 17px;
  color: var(--color-gray-500);
  line-height: 1.7;
  max-width: 600px;
  margin-top: 16px;
}

.text-blue   { color: var(--color-blue); }
.text-center { text-align: center; }
.mx-auto     { margin-left: auto; margin-right: auto; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.85); }
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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

@keyframes scanLine {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(240px); opacity: 0; }
}

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

@keyframes progressBar {
  from { width: 0; }
}

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

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 13px 26px;
  cursor: pointer;
  border: none;
  transition: var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255,255,255,.12);
  transition: var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--gradient-brand-h);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124,58,237,.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-gray-200);
}
.btn-outline:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
  background: rgba(26,86,219,.04);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}

.btn-lg {
  font-size: 16px;
  padding: 15px 32px;
  border-radius: 14px;
}

.btn-icon {
  width: 18px; height: 18px;
  transition: transform var(--transition-base);
}
.btn:hover .btn-icon { transform: translateX(3px); }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition-base);
}

.nav.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -.03em;
}

.nav-logo-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-accent-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26,86,219,.3);
}

.nav-logo-mark svg { width: 20px; height: 20px; fill: white; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-600);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.nav-links a:hover {
  color: var(--color-navy);
  background: var(--color-gray-100);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--color-navy);
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--color-navy) 0%, #0D1F3C 55%, #0A2047 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 8px var(--color-green);
  animation: pulse 2s infinite;
}

.hero-badge span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  letter-spacing: .01em;
}

.hero-headline {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.hero-headline .gradient-text {
  background: linear-gradient(90deg, #60A5FA 0%, #818CF8 50%, #C084FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-full);
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.hero-trust-badge:hover {
  background: rgba(255,255,255,.13);
  color: rgba(255,255,255,.95);
}

/* ── Hero Dashboard Illustration ────────────────────────────── */
.hero-visual {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-dashboard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 20px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-xl), 0 0 80px rgba(26,86,219,.2);
  position: relative;
  overflow: hidden;
}

.hero-dashboard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
}

.dash-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red   { background: #FF5F57; }
.dash-dot.amber { background: #FEBC2E; }
.dash-dot.green { background: #28C840; }

.dash-title-bar {
  flex: 1;
  height: 28px;
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}

.dash-title-bar span {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.dash-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 14px;
}

.dash-card-label {
  font-size: 10px;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
  font-weight: 600;
}

.dash-card-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.dash-card-sub {
  font-size: 10px;
  color: var(--color-green);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.dash-progress-bar {
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.dash-progress-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-accent-2) 100%);
  animation: progressBar 1.5s ease forwards;
  animation-delay: .5s;
  width: 0;
}

.dash-pipeline {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 10px;
}

.dash-pipeline-title {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.pipeline-stages {
  display: flex;
  gap: 6px;
  align-items: flex-end;
}

.pipeline-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pipeline-bar-wrap {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: flex-end;
}

.pipeline-bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(26,86,219,.7) 0%, rgba(14,165,233,.5) 100%);
  animation: progressBar 1.2s ease forwards;
  animation-delay: var(--delay, 0s);
}

.pipeline-label {
  font-size: 9px;
  color: rgba(255,255,255,.4);
  text-align: center;
  font-weight: 500;
}

.dash-chat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 12px;
}

.chat-msg {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  align-items: flex-start;
}

.chat-avatar-sm {
  width: 24px; height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: white;
}

.chat-avatar-sm.ai { background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-accent-2) 100%); }
.chat-avatar-sm.user { background: rgba(255,255,255,.15); }

.chat-bubble {
  background: rgba(255,255,255,.08);
  border-radius: 10px 10px 10px 2px;
  padding: 7px 10px;
  font-size: 10.5px;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
  max-width: 200px;
}

.chat-bubble.user-bubble {
  background: rgba(26,86,219,.3);
  border-radius: 10px 10px 2px 10px;
  color: rgba(255,255,255,.85);
}

.typing-dots {
  display: flex;
  gap: 3px;
  padding: 8px 10px;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  width: fit-content;
}

.typing-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  animation: dotDance .8s ease infinite;
}

.typing-dot:nth-child(2) { animation-delay: .15s; }
.typing-dot:nth-child(3) { animation-delay: .3s; }

/* Floating micro-cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.float-card.top-right {
  top: -24px;
  right: -24px;
  animation: float 5s ease-in-out infinite;
  animation-delay: 1s;
}

.float-card.bottom-left {
  bottom: -20px;
  left: -24px;
  animation: float 5.5s ease-in-out infinite;
  animation-delay: 2s;
}

.float-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.float-icon.green { background: rgba(16,185,129,.12); }
.float-icon.blue  { background: rgba(26,86,219,.12); }

.float-text-wrap { line-height: 1.2; }

.float-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-gray-800);
}

.float-sub {
  font-size: 10.5px;
  color: var(--color-gray-400);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════ */
.trust-bar {
  padding: 40px 0;
  background: var(--color-gray-50);
  border-top: 1px solid var(--color-gray-100);
  border-bottom: 1px solid var(--color-gray-100);
}

.trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-gray-400);
  text-align: center;
  margin-bottom: 28px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.trust-logo-img {
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.45);
  transition: filter var(--transition-base), transform var(--transition-base);
  display: block;
}

.trust-logo-item:hover .trust-logo-img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.04);
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gray-500);
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  box-shadow: var(--shadow-sm);
}

.trust-badge svg { color: var(--color-green); }

/* ══════════════════════════════════════════════════════════════
   METRICS
══════════════════════════════════════════════════════════════ */
.metrics {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--color-gray-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.metric-card {
  background: var(--color-white);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition-base);
  cursor: default;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.metric-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); z-index: 1; }
.metric-card:hover::before { transform: scaleX(1); }

.metric-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}

.metric-number .metric-suffix {
  font-size: 32px;
  color: var(--color-blue);
}

.metric-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 6px;
}

.metric-desc {
  font-size: 13px;
  color: var(--color-gray-400);
  line-height: 1.5;
}

.metric-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(26,86,219,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 18px;
}

/* ══════════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════════ */
.features {
  padding: var(--section-pad) 0;
  background: var(--color-gray-50);
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.feature-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,86,219,.03) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-base);
}

.feature-card:hover {
  border-color: rgba(26,86,219,.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  position: relative;
  z-index: 1;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.feature-desc {
  font-size: 14px;
  color: var(--color-gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.feature-outcome {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-blue);
  padding-top: 16px;
  border-top: 1px solid var(--color-gray-100);
  position: relative;
  z-index: 1;
}

.feature-mini-ui {
  margin: 16px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-100);
  padding: 12px;
  position: relative;
  z-index: 1;
}

/* ── Mini UI: Voice Interview ──────────────────────────────── */
.mini-voice {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 40px;
}

.wave-bar {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--color-blue) 0%, var(--color-accent-2) 100%);
  animation: wave 1s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { height: 8px; }
  50%       { height: var(--height, 24px); }
}

.mini-voice-label {
  text-align: center;
  font-size: 10px;
  color: var(--color-gray-400);
  font-weight: 500;
}

.mini-score-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-score-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--color-gray-200);
  border-radius: 3px;
  overflow: hidden;
}

.mini-score-bar {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-accent-2) 100%);
}

.mini-score-label {
  font-size: 10px;
  color: var(--color-gray-500);
  width: 80px;
  font-weight: 500;
}

.mini-score-val {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-navy);
  width: 28px;
  text-align: right;
}

/* ── Mini UI: Follow-up ────────────────────────────────────── */
.mini-followup { display: flex; flex-direction: column; gap: 6px; }

.mini-notif {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  padding: 8px 10px;
}

.notif-icon { font-size: 14px; }

.notif-body { flex: 1; }
.notif-title { font-size: 10px; font-weight: 600; color: var(--color-gray-700); }
.notif-sub   { font-size: 9px; color: var(--color-gray-400); margin-top: 1px; }

.notif-time {
  font-size: 9px;
  color: var(--color-gray-300);
  font-weight: 500;
}

/* ── Mini UI: Candidates ───────────────────────────────────── */
.mini-candidates { display: flex; flex-direction: column; gap: 6px; }

.mini-candidate {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
}

.cand-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.cand-name { font-size: 10px; font-weight: 600; color: var(--color-gray-700); flex: 1; }
.cand-role { font-size: 9px; color: var(--color-gray-400); }

.cand-score {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.score-high   { background: rgba(16,185,129,.1); color: var(--color-green); }
.score-mid    { background: rgba(245,158,11,.1); color: var(--color-amber); }
.score-low    { background: rgba(239,68,68,.1); color: #EF4444; }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════════ */
.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--color-white);
  overflow: hidden;
}

.how-header {
  text-align: center;
  margin-bottom: 72px;
}

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

.steps-row::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(12.5% + 26px);
  right: calc(12.5% + 26px);
  height: 2px;
  background: var(--gradient-brand);
  z-index: 0;
}

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

.step-number-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid transparent;
  background-clip: padding-box;
  outline: 2px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 0 0 6px rgba(124,58,237,.08), 0 0 0 2px rgba(26,86,219,.35);
  z-index: 1;
}

.step-number {
  font-size: 18px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-icon {
  font-size: 20px;
  position: absolute;
  top: -8px;
  right: -8px;
  background: white;
  border-radius: 50%;
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 1px solid var(--color-gray-200);
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.step-desc {
  font-size: 13.5px;
  color: var(--color-gray-500);
  line-height: 1.6;
}

.step-card-inner {
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 20px;
  width: 100%;
  transition: var(--transition-base);
}

.step-card:hover .step-card-inner {
  background: var(--color-white);
  border-color: rgba(26,86,219,.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ══════════════════════════════════════════════════════════════
   WHY DIFFERENT
══════════════════════════════════════════════════════════════ */
.why-different {
  padding: var(--section-pad) 0;
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.why-different::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,.2) 0%, transparent 70%);
}

.why-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-header .section-title { color: var(--color-white); }
.why-header .section-sub   { color: rgba(255,255,255,.55); margin: 16px auto 0; }

.comparison-table {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

/* Scroll-fade hint on mobile */
@media (max-width: 768px) {
  .comparison-table {
    box-shadow: inset -24px 0 20px -8px rgba(10,22,40,.6);
  }
  .comparison-table::-webkit-scrollbar { height: 4px; }
  .comparison-table::-webkit-scrollbar-track { background: rgba(255,255,255,.05); }
  .comparison-table::-webkit-scrollbar-thumb {
    background: rgba(124,58,237,.5);
    border-radius: 2px;
  }
}

.comparison-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.comp-head-cell {
  padding: 18px 24px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  border-right: 1px solid rgba(255,255,255,.06);
}

.comp-head-cell:last-child { border-right: none; }

.comp-head-cell.eva-col {
  color: var(--color-blue-glow);
  background: rgba(26,86,219,.12);
  display: flex;
  align-items: center;
  gap: 8px;
}

.comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--transition-fast);
}

.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: rgba(255,255,255,.03); }

.comp-cell {
  padding: 16px 24px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.comp-cell:last-child { border-right: none; }
.comp-cell:first-child { font-weight: 600; color: rgba(255,255,255,.85); }

.comp-cell.eva-col {
  background: rgba(26,86,219,.08);
  color: rgba(255,255,255,.9);
  font-weight: 500;
}

.comp-check { color: var(--color-green); font-size: 16px; }
.comp-cross  { color: rgba(255,255,255,.25); font-size: 16px; }
.comp-partial { color: var(--color-amber); font-size: 13px; }

/* ══════════════════════════════════════════════════════════════
   INDUSTRY USE CASES
══════════════════════════════════════════════════════════════ */
.use-cases {
  padding: var(--section-pad) 0;
  background: var(--color-gray-50);
}

.use-cases-header {
  text-align: center;
  margin-bottom: 56px;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.use-case-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.use-case-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--card-accent, linear-gradient(90deg, var(--color-blue) 0%, var(--color-accent-2) 100%));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-base);
}

.use-case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.use-case-card:hover::after { transform: scaleX(1); }

.use-case-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.use-case-industry {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 8px;
}

.use-case-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.use-case-desc {
  font-size: 13.5px;
  color: var(--color-gray-500);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════════════ */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition-base);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 64px;
  color: var(--color-gray-100);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,86,219,.15);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.star { color: #F59E0B; font-size: 14px; }

.testimonial-quote {
  font-size: 14.5px;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #059669;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--color-gray-100);
}

.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
}

.author-role {
  font-size: 12px;
  color: var(--color-gray-400);
  margin-top: 1px;
}

/* ══════════════════════════════════════════════════════════════
   TEAM SECTION
══════════════════════════════════════════════════════════════ */
.team-section {
  padding: var(--section-pad) 0;
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: '';
  position: absolute;
  top: -160px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124,58,237,.12) 0%, transparent 70%);
  pointer-events: none;
}

.team-header {
  text-align: center;
  margin-bottom: 64px;
}

.team-header .section-title { color: var(--color-white); }
.team-header .section-sub   { color: rgba(255,255,255,.5); margin: 16px auto 0; }

/* ── 3-col grid ─────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* ── Card ───────────────────────────────────────────────────── */
.team-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-xl);
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: var(--transition-base);
}

.team-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 24px 64px rgba(0,0,0,.35), 0 0 0 1px rgba(124,58,237,.2);
}

.team-card:hover::before { opacity: 1; }

/* Featured (centre) card , slightly elevated always */
.team-card--featured {
  background: rgba(255,255,255,.06);
  border-color: rgba(124,58,237,.25);
  box-shadow: 0 8px 32px rgba(124,58,237,.12);
}

.team-card--featured::before { opacity: 1; }

/* ── Photo area ─────────────────────────────────────────────── */
.team-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  gap: 16px;
}

.team-photo-wrap {
  position: relative;
  width: 100px; height: 100px;
  flex-shrink: 0;
}

.team-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  position: relative;
  z-index: 1;
  border: 3px solid rgba(255,255,255,.12);
}

.team-photo-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--gradient-brand);
  z-index: 0;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.team-card:hover .team-photo-ring,
.team-card--featured .team-photo-ring {
  opacity: 1;
}

/* When ring is visible, push photo in front and add gap */
.team-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--color-navy);
  z-index: 0;
}

.team-photo { z-index: 2; }
.team-photo-ring { inset: -5px; z-index: -1; }

/* ── Role badge ─────────────────────────────────────────────── */
.team-role-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(124,58,237,.15);
  border: 1px solid rgba(124,58,237,.3);
  color: var(--color-purple-light);
}

.team-role-badge--blue {
  background: rgba(26,86,219,.15);
  border-color: rgba(26,86,219,.35);
  color: var(--color-blue-glow);
}

.team-role-badge--green {
  background: rgba(16,185,129,.12);
  border-color: rgba(16,185,129,.3);
  color: #6EE7B7;
}

/* ── Card body ──────────────────────────────────────────────── */
.team-card-body { flex: 1; }

.team-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -.02em;
  margin-bottom: 10px;
  text-align: center;
}

.team-bio {
  font-size: 13.5px;
  color: rgba(255,255,255,.52);
  line-height: 1.7;
  text-align: center;
}

/* ── Tags ───────────────────────────────────────────────────── */
.team-card-footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.team-tag {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-full);
  padding: 4px 11px;
  transition: var(--transition-fast);
}

.team-card:hover .team-tag {
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.09);
}

/* ── Team email row ──────────────────────────────────────────── */
.team-email-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin-top: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.team-card:hover .team-email-row {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.13);
}

.team-email-icon {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,.35);
  flex-shrink: 0;
}

.team-email-text {
  flex: 1;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  font-family: 'Inter', monospace;
  letter-spacing: 0.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.team-copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.35);
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color var(--transition-fast), background var(--transition-fast);
  flex-shrink: 0;
}

.team-copy-btn:hover {
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08);
}

.team-copy-btn .lucide {
  width: 14px;
  height: 14px;
}

.copy-tooltip {
  position: absolute;
  bottom: calc(100% + 6px);
  right: 0;
  background: var(--color-green);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
}

.team-copy-btn.copied {
  color: var(--color-green);
}

.team-copy-btn.copied .copy-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .team-card--featured { transform: none; }
}

/* ══════════════════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════════════════ */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--color-navy) 0%, #0D2348 60%, #0A1C3A 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(26,86,219,.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 75% 60%, rgba(14,165,233,.12) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  backdrop-filter: blur(8px);
}

.cta-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-footnote {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--color-gray-900);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--color-gray-500);
  line-height: 1.65;
  margin: 16px 0 20px;
  max-width: 260px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -.02em;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--color-gray-400);
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--color-white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-copy {
  font-size: 13px;
  color: var(--color-gray-600);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--color-gray-600);
  transition: var(--transition-fast);
}
.footer-bottom-links a:hover { color: var(--color-gray-400); }

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-gray-600);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  margin-top: 12px;
}

.powered-by span { color: var(--color-blue-glow); font-weight: 600; }

/* ══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr; gap: 48px; }
  /* Mobile order: text content first, visual mockups below */
  .hero-content    { order: 1; }
  .hero-visual     { order: 2; }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: repeat(2, 1fr); }
  .use-cases-grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row       { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-row::before { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .container { padding: 0 20px; }

  /* ── Mobile nav: logo left · [Book Demo + hamburger] right ── */
  .nav-inner { justify-content: flex-start; gap: 0; }
  .nav-links  { display: none; }
  .nav-actions .btn-outline { display: none; }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;        /* push the group to the right */
  }
  .nav-actions .btn-primary {
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 10px;
  }
  .nav-mobile-toggle { display: flex; margin-left: 4px; }

  .features-grid   { grid-template-columns: 1fr; }
  .metrics-grid    { grid-template-columns: 1fr; }
  .use-cases-grid  { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-row       { grid-template-columns: 1fr; }
  /* ── Comparison table: horizontal scroll, no cut-off ──────── */
  .comparison-table {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
  }
  .comparison-head,
  .comp-row { grid-template-columns: 148px 82px 102px 112px; min-width: 444px; }
  .comp-head-cell, .comp-cell { padding: 12px 10px; font-size: 11px; }
  .trust-logos     { gap: 24px; }
  .hero-ctas       { flex-direction: column; align-items: flex-start; }
  .footer-grid     { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom   { flex-direction: column; gap: 12px; text-align: center; }
  .cta-buttons     { flex-direction: column; }
  .float-card      { display: none; }
}

@media (max-width: 480px) {
  .metrics-grid    { grid-template-columns: repeat(2, 1fr); }
  .metric-number   { font-size: 36px; }
  .hero-headline   { font-size: 32px; }
}

/* ── Logo images , desktop + mobile ─────────────────────────── */
.logo-img      { display: none; height: 38px; width: auto; object-fit: contain; }
.logo-desktop  { display: block; }
.logo-mobile   { display: none; }

@media (max-width: 768px) {
  .logo-desktop { display: none; }
  .logo-mobile  { display: block; height: 32px; }
}

/* ── Footer logo ─────────────────────────────────────────────── */
.footer-logo-img { height: 40px; width: auto; object-fit: contain; display: block; }

/* ── Metric icon , custom SVG images ────────────────────────── */
.metric-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.metric-icon img { width: 52px; height: 52px; object-fit: contain; }

/* ── Nav transparent state (over dark hero) ─────────────────── */
.nav:not(.scrolled) .nav-mobile-toggle { color: rgba(255,255,255,.9); }
.nav:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,.72);
}
.nav:not(.scrolled) .nav-links a:hover {
  color: var(--color-white);
  background: rgba(255,255,255,.08);
}
.nav:not(.scrolled) .btn-outline {
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.28);
  background: transparent;
}
.nav:not(.scrolled) .btn-outline:hover {
  color: var(--color-white);
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

/* ── Float card z-index fix ─────────────────────────────────── */
.hero-dashboard { position: relative; z-index: 1; }
.float-card     { z-index: 30; background: rgba(255,255,255,.97); }

/* ── Dashboard chat: fixed height, no overflow ──────────────── */
.dash-chat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 12px;
  max-height: 126px;
  overflow: hidden;
  position: relative;
}

/* ── Lucide icon sizing ──────────────────────────────────────── */
i[data-lucide] { display: flex; align-items: center; justify-content: center; }
.feature-icon-wrap .lucide { width: 24px; height: 24px; }
.metric-icon .lucide        { width: 20px; height: 20px; }
.use-case-icon .lucide      { width: 22px; height: 22px; }
.step-icon .lucide          { width: 12px; height: 12px; }
.notif-icon .lucide         { width: 15px; height: 15px; }
.float-icon .lucide         { width: 17px; height: 17px; }

/* ── Mobile Nav ──────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 16px 20px 24px;
  z-index: 999;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  flex-direction: column;
  gap: 2px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--color-white);
  background: rgba(255,255,255,.08);
}

.mobile-nav .btn {
  margin-top: 12px;
  justify-content: center;
  background: var(--gradient-brand);
  color: var(--color-white);
  box-shadow: var(--shadow-brand);
  border: none;
}

.mobile-nav .btn:hover {
  background: var(--gradient-brand-h);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════
   INNER PAGES (About, Security, Privacy, Terms, Cookies, Contact)
══════════════════════════════════════════════════════════════ */

/* ── Inner hero banner ───────────────────────────────────────── */
.inner-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, #0c1e44 60%, #0a1628 100%);
  padding: 130px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(124,58,237,.22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(26,86,219,.14) 0%, transparent 70%);
  pointer-events: none;
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.inner-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.38);
  margin-bottom: 20px;
}

.inner-breadcrumb a {
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: color .2s;
}

.inner-breadcrumb a:hover { color: rgba(255,255,255,.7); }

.inner-breadcrumb-sep { opacity: .4; }

.inner-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-full);
  padding: 5px 14px 5px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-purple-light);
  margin-bottom: 22px;
  letter-spacing: .03em;
}

.inner-hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--color-purple-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.inner-hero-title {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.1;
  font-family: var(--font-primary);
}

.inner-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.52);
  line-height: 1.65;
  margin: 0;
}

/* ── Inner page body content ─────────────────────────────────── */
.inner-body {
  background: var(--color-gray-50);
  padding: 72px 0 96px;
}

.inner-body .container {
  max-width: 820px;
}

.inner-last-updated {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-gray-400);
  background: var(--color-gray-100);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  margin-bottom: 44px;
  letter-spacing: .02em;
}

/* Rich text sections */
.inner-section {
  margin-bottom: 48px;
}

.inner-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-gray-200);
  font-family: var(--font-primary);
}

.inner-section p {
  font-size: 15px;
  color: var(--color-gray-600);
  line-height: 1.78;
  margin: 0 0 14px;
}

.inner-section p:last-child { margin-bottom: 0; }

.inner-section ul,
.inner-section ol {
  padding-left: 22px;
  margin: 0 0 14px;
}

.inner-section li {
  font-size: 15px;
  color: var(--color-gray-600);
  line-height: 1.78;
  margin-bottom: 8px;
}

.inner-section a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inner-section a:hover { color: var(--color-purple); }

.inner-section strong { color: var(--color-gray-800); }

/* Callout card inside inner section */
.inner-callout {
  background: linear-gradient(135deg, rgba(26,86,219,.06) 0%, rgba(124,58,237,.06) 100%);
  border: 1px solid rgba(124,58,237,.15);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 20px 0;
}

.inner-callout p { margin: 0; color: var(--color-gray-700); }

/* Security badge grid */
.security-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.security-badge-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.security-badge-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.security-badge-icon.green  { background: rgba(16,185,129,.12); color: #10B981; }
.security-badge-icon.blue   { background: rgba(26,86,219,.10);  color: var(--color-blue); }
.security-badge-icon.purple { background: rgba(124,58,237,.10); color: var(--color-purple); }
.security-badge-icon.amber  { background: rgba(245,158,11,.10); color: var(--color-amber); }

.security-badge-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.security-badge-desc {
  font-size: 13px;
  color: var(--color-gray-500);
  line-height: 1.55;
}

/* Cookie type table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 18px 0 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cookie-table th {
  background: var(--color-navy);
  color: rgba(255,255,255,.85);
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
}

.cookie-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-gray-200);
  color: var(--color-gray-600);
  vertical-align: top;
  background: var(--color-white);
}

.cookie-table tr:last-child td { border-bottom: none; }

/* Contact page layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(26,86,219,.1), rgba(124,58,237,.1));
  border: 1px solid rgba(124,58,237,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--color-purple);
}

.contact-info-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-gray-400);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-navy);
}

.contact-info-value a {
  color: var(--color-blue);
  text-decoration: none;
}

.contact-info-value a:hover { text-decoration: underline; }

/* Contact form card */
.contact-form-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

/* About page */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.about-value-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}

.about-value-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.about-value-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.about-value-desc {
  font-size: 13px;
  color: var(--color-gray-500);
  line-height: 1.6;
}

.about-stat-row {
  display: flex;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  margin: 24px 0;
}

.about-stat {
  flex: 1;
  padding: 22px;
  text-align: center;
  background: var(--color-white);
  border-right: 1px solid var(--color-gray-200);
}

.about-stat:last-child { border-right: none; }

.about-stat-num {
  font-size: 32px;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 12px;
  color: var(--color-gray-500);
  font-weight: 600;
}

/* Inner page , mobile */
@media (max-width: 768px) {
  .inner-hero { padding: 110px 0 60px; }
  .inner-hero-title { font-size: 32px; }
  .inner-hero-sub { font-size: 15px; }
  .security-badges { grid-template-columns: 1fr; }
  .about-values-grid { grid-template-columns: 1fr; }
  .about-stat-row { flex-direction: column; }
  .about-stat { border-right: none; border-bottom: 1px solid var(--color-gray-200); }
  .about-stat:last-child { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-card { padding: 24px; }
  .cookie-table { font-size: 13px; }
  .cookie-table th, .cookie-table td { padding: 10px 12px; }
}

/* ══════════════════════════════════════════════════════════════
   AUDIO SCREENING DEMO
══════════════════════════════════════════════════════════════ */
.audio-demo {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, #0a1628 0%, #0d1f42 100%);
  position: relative;
  overflow: hidden;
}

.audio-demo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(26,86,219,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 50%, rgba(124,58,237,.10) 0%, transparent 70%);
  pointer-events: none;
}

/* Override section-title & section-sub color for dark section */
.audio-demo .section-title { color: #fff; }
.audio-demo .section-sub   { color: rgba(255,255,255,.48); }
.audio-demo .section-label { color: rgba(255,255,255,.55); }
.audio-demo .section-label .dot { background: var(--color-purple-light); }

.audio-demo-header { text-align: center; margin-bottom: 52px; position: relative; z-index: 1; }

/* Three-column stage */
.audio-demo-stage {
  display: grid;
  grid-template-columns: 260px 1fr 240px;
  gap: 20px;
  align-items: start;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

/* ── Left: metadata card ─────────────────────────────────────── */
.audio-meta-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}

.audio-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(124,58,237,.18);
  border: 1px solid rgba(124,58,237,.28);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-purple-light);
  padding: 4px 12px 4px 8px;
  margin-bottom: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.audio-live-dot {
  width: 7px; height: 7px;
  background: var(--color-purple-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.audio-meta-rows { display: flex; flex-direction: column; gap: 14px; }

.audio-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.audio-meta-row:last-child { border-bottom: none; padding-bottom: 0; }

.audio-meta-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.38);
}

.audio-meta-value {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-align: right;
}

.audio-score {
  color: var(--color-purple-light);
  font-size: 15px;
  font-weight: 800;
}

.audio-status {
  background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.25);
  color: #34D399;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

/* ── Centre: player card ─────────────────────────────────────── */
.audio-player-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 28px 28px 22px;
  box-shadow:
    0 0 0 1px rgba(124,58,237,.12),
    0 24px 60px rgba(0,0,0,.35);
  position: relative;
}

/* Top gradient line */
.audio-player-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 0 0 2px 2px;
  opacity: .7;
}

.audio-player-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.audio-caller-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.audio-caller-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}

.audio-caller-name {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}

.audio-caller-sub {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin-top: 2px;
}

.audio-recording-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #EF4444;
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: var(--radius-full);
  padding: 4px 10px;
}

.audio-rec-dot {
  width: 6px; height: 6px;
  background: #EF4444;
  border-radius: 50%;
  animation: pulse 1.2s ease infinite;
}

/* Waveform bars */
.audio-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 52px;
  margin-bottom: 20px;
  overflow: hidden;
}

.audio-waveform span {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: rgba(124,58,237,.35);
  transition: background .3s;
  flex-shrink: 0;
}

/* Static heights , varied pattern */
.audio-waveform span:nth-child(1)  { height: 14px; }
.audio-waveform span:nth-child(2)  { height: 26px; }
.audio-waveform span:nth-child(3)  { height: 38px; }
.audio-waveform span:nth-child(4)  { height: 20px; }
.audio-waveform span:nth-child(5)  { height: 44px; }
.audio-waveform span:nth-child(6)  { height: 30px; }
.audio-waveform span:nth-child(7)  { height: 18px; }
.audio-waveform span:nth-child(8)  { height: 48px; }
.audio-waveform span:nth-child(9)  { height: 22px; }
.audio-waveform span:nth-child(10) { height: 36px; }
.audio-waveform span:nth-child(11) { height: 12px; }
.audio-waveform span:nth-child(12) { height: 42px; }
.audio-waveform span:nth-child(13) { height: 28px; }
.audio-waveform span:nth-child(14) { height: 50px; }
.audio-waveform span:nth-child(15) { height: 16px; }
.audio-waveform span:nth-child(16) { height: 34px; }
.audio-waveform span:nth-child(17) { height: 24px; }
.audio-waveform span:nth-child(18) { height: 46px; }
.audio-waveform span:nth-child(19) { height: 10px; }
.audio-waveform span:nth-child(20) { height: 40px; }
.audio-waveform span:nth-child(21) { height: 52px; }
.audio-waveform span:nth-child(22) { height: 18px; }
.audio-waveform span:nth-child(23) { height: 32px; }
.audio-waveform span:nth-child(24) { height: 44px; }
.audio-waveform span:nth-child(25) { height: 26px; }
.audio-waveform span:nth-child(26) { height: 14px; }
.audio-waveform span:nth-child(27) { height: 48px; }
.audio-waveform span:nth-child(28) { height: 20px; }
.audio-waveform span:nth-child(29) { height: 38px; }
.audio-waveform span:nth-child(30) { height: 30px; }
.audio-waveform span:nth-child(31) { height: 10px; }
.audio-waveform span:nth-child(32) { height: 42px; }
.audio-waveform span:nth-child(33) { height: 22px; }
.audio-waveform span:nth-child(34) { height: 50px; }
.audio-waveform span:nth-child(35) { height: 16px; }
.audio-waveform span:nth-child(36) { height: 36px; }
.audio-waveform span:nth-child(37) { height: 28px; }
.audio-waveform span:nth-child(38) { height: 12px; }
.audio-waveform span:nth-child(39) { height: 44px; }
.audio-waveform span:nth-child(40) { height: 24px; }
.audio-waveform span:nth-child(41) { height: 40px; }
.audio-waveform span:nth-child(42) { height: 18px; }
.audio-waveform span:nth-child(43) { height: 52px; }
.audio-waveform span:nth-child(44) { height: 30px; }
.audio-waveform span:nth-child(45) { height: 14px; }
.audio-waveform span:nth-child(46) { height: 46px; }
.audio-waveform span:nth-child(47) { height: 20px; }
.audio-waveform span:nth-child(48) { height: 38px; }
.audio-waveform span:nth-child(49) { height: 26px; }
.audio-waveform span:nth-child(50) { height: 10px; }

/* Equal height override , uniform bars */
.audio-waveform span { height: 34px; }

/* Played bars , lit up */
.audio-waveform span.played {
  background: var(--gradient-brand);
}

/* Animate when playing */
@keyframes waveBar {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(0.55); }
}

.audio-waveform.playing span {
  animation: waveBar 0.9s ease-in-out infinite;
  background: linear-gradient(180deg, #7C3AED, #1A56DB);
}

.audio-waveform.playing span:nth-child(odd)  { animation-delay: 0s; }
.audio-waveform.playing span:nth-child(3n)   { animation-delay: 0.15s; }
.audio-waveform.playing span:nth-child(5n)   { animation-delay: 0.3s; }
.audio-waveform.playing span:nth-child(7n)   { animation-delay: 0.45s; }

/* Progress bar */
.audio-progress-wrap { margin-bottom: 22px; }

.audio-progress-bar {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 8px;
}

.audio-progress-fill {
  height: 100%;
  background: var(--gradient-brand);
  border-radius: 4px;
  width: 0%;
  transition: width .1s linear;
  pointer-events: none;
}

.audio-progress-thumb {
  position: absolute;
  top: 50%; right: auto;
  width: 12px; height: 12px;
  background: #fff;
  border: 2px solid #7C3AED;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  left: 0%;
  transition: left .1s linear;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(124,58,237,.4);
}

.audio-time-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  font-family: monospace;
}

/* Controls */
.audio-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.audio-play-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-brand);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-brand);
  transition: transform .15s, box-shadow .15s;
  flex-shrink: 0;
}

.audio-play-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 10px 32px rgba(124,58,237,.45);
}

.audio-play-btn:active { transform: scale(.96); }

.audio-skip-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-primary);
  transition: background .2s, color .2s;
}

.audio-skip-btn:hover {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
}

.audio-disclaimer {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.22);
  margin: 0;
}

/* ── Right: insights card ────────────────────────────────────── */
.audio-insights-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}

.audio-insights-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

.audio-insights-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.audio-insight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.audio-insight-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.audio-insight-icon.green {
  background: rgba(16,185,129,.18);
  color: #34D399;
  border: 1px solid rgba(16,185,129,.25);
}

.audio-insight-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.audio-insight-val {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  margin-top: 1px;
}

.audio-verdict {
  background: linear-gradient(135deg, rgba(124,58,237,.15), rgba(26,86,219,.15));
  border: 1px solid rgba(124,58,237,.22);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.audio-verdict-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 6px;
}

.audio-verdict-value {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-purple-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .audio-demo-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .audio-player-card { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .audio-demo-stage { grid-template-columns: 1fr; }
  .audio-player-card { grid-column: auto; }
  .audio-waveform span { width: 2.5px; gap: 2px; }
}

/* ══════════════════════════════════════════════════════════════
   VIDEO TESTIMONIAL
══════════════════════════════════════════════════════════════ */
.video-testimonial {
  padding: var(--section-pad) 0;
  background: var(--color-gray-50);
  position: relative;
  overflow: hidden;
}

.video-testi-header {
  text-align: center;
  margin-bottom: 52px;
}

/* Stage: positions glow behind the card */
.video-testi-stage {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

/* Ambient glow behind the video */
.video-testi-glow {
  position: absolute;
  inset: -40px -60px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(124,58,237,.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26,86,219,.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(30px);
}

/* Card wrapper , gradient border effect */
.video-testi-card {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  padding: 3px;                       /* creates the border width */
  background: var(--gradient-brand);
  box-shadow:
    0 24px 64px rgba(124,58,237,.22),
    0 8px 24px rgba(0,0,0,.10);
  transition: box-shadow .3s ease, transform .3s ease;
}

.video-testi-card:hover {
  box-shadow:
    0 32px 80px rgba(124,58,237,.30),
    0 12px 32px rgba(0,0,0,.14);
  transform: translateY(-4px);
}

/* 16 : 9 responsive embed */
.video-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius-xl) - 3px);
  overflow: hidden;
  background: #000;
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Caption below the video */
.video-testi-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 14px;
  font-style: italic;
  color: var(--color-gray-500);
  position: relative;
  z-index: 1;
}

.video-quote-icon {
  width: 16px;
  height: 16px;
  color: var(--color-purple-light);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .video-testi-stage { max-width: 100%; }
  .video-testi-card  { border-radius: var(--radius-lg); padding: 2px; }
  .video-embed-wrap  { border-radius: calc(var(--radius-lg) - 2px); }
}

/* ── YouTube facade (thumbnail → iframe on click) ─────────────── */
.yt-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
  overflow: hidden;
}

.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.yt-facade:hover .yt-thumb {
  transform: scale(1.03);
}

.yt-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(5, 14, 30, 0.42);
  transition: background .3s ease;
}

.yt-facade:hover .yt-overlay {
  background: rgba(5, 14, 30, 0.28);
}

.yt-play-fab {
  width: 72px;
  height: 72px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(124,58,237,.5), 0 0 0 6px rgba(255,255,255,.12);
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
  flex-shrink: 0;
}

.yt-facade:hover .yt-play-fab {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(124,58,237,.65), 0 0 0 8px rgba(255,255,255,.15);
}

.yt-overlay-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  letter-spacing: .04em;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* ══════════════════════════════════════════════════════════════
   DEMO MODAL
══════════════════════════════════════════════════════════════ */

/* Overlay */
.demo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 14, 30, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.demo-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Card */
.demo-modal {
  background: linear-gradient(160deg, #0d1f42 0%, #0a1628 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 44px 40px 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: translateY(22px) scale(0.97);
  transition: transform .38s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(124, 58, 237, 0.12);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.12) transparent;
}

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

.demo-modal-overlay.open .demo-modal {
  transform: translateY(0) scale(1);
}

/* Decorative top gradient line */
.demo-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 40px; right: 40px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 0 0 2px 2px;
  opacity: .8;
}

/* Close button */
.demo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  color: rgba(255, 255, 255, 0.45);
  padding: 7px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
  line-height: 0;
}

.demo-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

/* Modal header */
.demo-modal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-purple-light);
  margin: 0 0 10px;
}

.demo-modal-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
  font-family: var(--font-primary);
}

.demo-modal-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  margin: 0 0 28px;
  line-height: 1.6;
}

/* Form layout */
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

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

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: .01em;
}

.form-label .optional-tag {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.28);
  margin-left: 4px;
}

/* Inputs, select, textarea */
.form-input,
.form-select,
.form-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 14px;
  padding: 11px 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.22);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgba(99, 130, 246, 0.6);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.14);
}

/* Dropdown arrow */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  padding-right: 36px;
}

.form-select option {
  background: #0d1f42;
  color: #fff;
}

/* Textarea */
.form-textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.55;
}

/* "Other" text field , hidden until dropdown = Other */
.form-other-wrap {
  display: none;
}

.form-other-wrap.visible {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Honeypot , completely hidden */
.demo-botcheck {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

/* Inline error message */
.demo-error-msg {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.22);
  border-radius: var(--radius-md);
  color: #FCA5A5;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  line-height: 1.5;
}

/* Submit button */
.demo-form-submit {
  background: var(--gradient-brand);
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-shadow: var(--shadow-brand);
  transition: background .2s, transform .15s, box-shadow .2s, opacity .2s;
  margin-top: 4px;
  position: relative;
  overflow: hidden;
}

.demo-form-submit:hover {
  background: var(--gradient-brand-h);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(124, 58, 237, 0.42);
}

.demo-form-submit:active {
  transform: none;
}

.demo-form-submit.loading {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
}

/* Success state */
.demo-modal-success {
  display: none;
  text-align: center;
  padding: 24px 0 16px;
}

.demo-modal-success.visible {
  display: block;
}

.demo-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.demo-success-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  font-family: var(--font-primary);
}

.demo-success-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.65;
  margin: 0 0 28px;
}

.demo-success-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 28px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.demo-success-close-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .demo-modal {
    padding: 36px 22px 28px;
    border-radius: var(--radius-lg);
    max-height: 96vh;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .demo-modal-title {
    font-size: 21px;
  }
}
