/* ===============================================
   SPEED TO LEAD GROUP — APPLE GLASS DESIGN SYSTEM
   Ultra-Premium visionOS-Inspired Light Mode
   Brand: White + Royal Blue + Frosted Glass
   =============================================== */

:root {
  /* Brand Colors */
  --blue: #1A4FBF;
  --blue-mid: #2563EB;
  --blue-light: #3B7BF5;
  --blue-pale: #EBF1FF;
  --blue-xpale: #F4F7FF;

  /* Surface Colors — Apple-grade layering */
  --bg: #F2F2F7;
  /* iOS system background */
  --bg-off: #FFFFFF;
  --bg-subtle: #F2F2F7;
  --bg-section: #F8F8FC;

  /* Apple Glass Surfaces */
  --glass-1: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(242, 247, 255, 0.85) 100%);
  /* High-Contrast Crystalline Glass */
  --glass-2: linear-gradient(145deg, rgba(255, 255, 255, 0.85) 0%, rgba(238, 245, 255, 0.72) 100%);
  --glass-3: rgba(255, 255, 255, 0.55);
  --glass-blur: blur(28px) saturate(180%);
  --glass-blur-heavy: blur(48px) saturate(200%);

  /* Specular highlights — the Apple magic */
  --specular: inset 0 1.5px 0 rgba(255, 255, 255, 1), inset 0 -1px 0 rgba(26, 79, 191, 0.06);
  --specular-border: rgba(255, 255, 255, 0.95);

  /* Text Colors */
  --text-primary: #1C1C1E;
  /* Apple system text */
  --text-secondary: #3C3C43;
  --text-muted: #6C6C70;
  --text-light: #AEAEB2;

  /* Borders — Apple hairlines */
  --border: rgba(26, 79, 191, 0.18);
  --border-hover: rgba(26, 79, 191, 0.38);
  --border-light: rgba(60, 60, 67, 0.12);
  --border-card: rgba(255, 255, 255, 0.9);

  /* Cards — Apple Glass */
  --card-bg: var(--glass-1);
  --card-shadow: 0 12px 32px -4px rgba(26, 79, 191, 0.1), 0 3px 8px rgba(0, 0, 0, 0.03), inset 0 1.5px 0 rgba(255, 255, 255, 1), inset 0 -1px 0 rgba(26, 79, 191, 0.06);
  --card-shadow-hover: 0 20px 48px -6px rgba(26, 79, 191, 0.22), 0 4px 14px rgba(0, 0, 0, 0.05), inset 0 2px 0 rgba(255, 255, 255, 1);

  /* Accent States */
  --green: #34C759;
  /* Apple green */
  --green-pale: #D1FAE5;
  --red: #FF3B30;
  /* Apple red */
  --amber: #FF9F0A;
  /* Apple orange */
  --purple: #7C3AED;

  /* Shadows — Apple multi-layer */
  --shadow-btn: 0 2px 8px rgba(26, 79, 191, 0.32), 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-btn-hover: 0 8px 28px rgba(26, 79, 191, 0.42), 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-nav: 0 0 0 0.5px rgba(0, 0, 0, 0.1), 0 4px 32px rgba(0, 0, 0, 0.08);
  --shadow-float: 0 24px 64px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);

  /* Design System */
  --radius: 18px;
  --radius-sm: 10px;
  --radius-xl: 26px;
  --radius-pill: 100px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  touch-action: manipulation;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Clean Minimalist Studio Background (Zero Blue Rays & Blobs) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 50%, #F8FAFC 100%) !important;
  pointer-events: none;
}

/* Ambient Liquid Blobs Backdrop (Disabled) */
.liquid-ambient-container,
.hero-azure-orb,
.demo-liquid-ambient,
.cta-bg,
#cta-canvas,
.cta-section::before {
  display: none !important;
}

/* Unified Infinite Parallax 3D Circuit Landscape Canvas */
.global-parallax-container {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  transform: translateZ(0);
}

.global-parallax-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6000px;
  will-change: transform;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}

.parallax-layer-img {
  width: 100%;
  height: 950px;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: multiply;
  opacity: 0.55;
  filter: contrast(1.04) brightness(1.02);
  display: block;
  margin-bottom: -150px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.mobile-hero-img {
  display: none !important;
}

.desktop-hero-img {
  margin-top: 100px;
  mix-blend-mode: normal;
  opacity: 0.92;
  filter: contrast(1.06) brightness(1.02);
}

@media (max-width: 768px) {
  .liquid-ambient-container,
  .hero-azure-orb,
  .demo-liquid-ambient,
  .cta-bg,
  #cta-canvas {
    display: none !important;
  }
  body::before {
    background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 50%, #F8FAFC 100%) !important;
  }
  .cta-section::before {
    display: none !important;
  }
  .desktop-hero-img {
    display: none !important;
  }
  .mobile-hero-img {
    display: block !important;
    margin-top: 50px;
    mix-blend-mode: multiply;
    opacity: 0.48;
    filter: contrast(1.04) brightness(1.06);
    mask-image: radial-gradient(ellipse 85% 65% at 50% 30%, transparent 15%, #000 70%);
    -webkit-mask-image: radial-gradient(ellipse 85% 65% at 50% 30%, transparent 15%, #000 70%);
  }
  .global-parallax-track {
    height: 5200px;
  }
  .parallax-layer-img {
    height: 750px;
    margin-bottom: -120px;
  }
}

.liquid-blob {
  position: absolute;
  filter: blur(100px);
  opacity: 0.55;
  will-change: transform, opacity;
  pointer-events: none;
  transform-origin: center center;
  border-radius: 50%;
}

.liquid-blob-1 {
  top: -8%;
  left: -6%;
  width: 920px;
  height: 920px;
  background: radial-gradient(circle at 35% 35%, #93C5FD 0%, #60A5FA 40%, #38BDF8 75%, transparent 95%);
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  opacity: 0.58;
}

.liquid-blob-2 {
  top: 18%;
  right: -8%;
  width: 950px;
  height: 950px;
  background: radial-gradient(circle at 65% 35%, #BAE6FD 0%, #93C5FD 45%, #60A5FA 75%, transparent 95%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  opacity: 0.52;
}

.liquid-blob-3 {
  bottom: 12%;
  left: -8%;
  width: 880px;
  height: 880px;
  background: radial-gradient(circle at 50% 50%, #7DD3FC 0%, #93C5FD 45%, #C7D2FE 75%, transparent 95%);
  border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%;
  opacity: 0.50;
}

.liquid-blob-4 {
  bottom: -6%;
  right: -2%;
  width: 860px;
  height: 860px;
  background: radial-gradient(circle at 40% 60%, #C7D2FE 0%, #BAE6FD 45%, #93C5FD 75%, transparent 95%);
  border-radius: 35% 65% 60% 40% / 55% 35% 65% 45%;
  opacity: 0.48;
}

.liquid-blob-follower {
  top: 25%;
  left: 25%;
  width: 820px;
  height: 820px;
  background: radial-gradient(circle at 50% 50%, rgba(147, 197, 253, 0.65) 0%, rgba(186, 230, 253, 0.35) 45%, transparent 75%);
  border-radius: 50%;
  filter: blur(95px);
  opacity: 0.60;
  will-change: transform, opacity;
}

/* Local Hero & CTA Fluid Orbs */
.hero-liquid-orb {
  position: absolute;
  filter: blur(85px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.32;
  will-change: transform, border-radius;
}

.hero-liquid-orb-1 {
  top: 6%;
  right: 2%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.3), rgba(26, 79, 191, 0.15) 60%, transparent 80%);
  border-radius: 58% 42% 65% 35% / 48% 62% 38% 52%;
  animation: liquidMorph2 18s infinite ease-in-out alternate, liquidFloat1 16s infinite ease-in-out;
}

.hero-liquid-orb-2 {
  bottom: 8%;
  left: 2%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 60% 60%, rgba(6, 182, 212, 0.28), rgba(37, 99, 235, 0.15) 60%, transparent 80%);
  border-radius: 40% 60% 45% 55% / 60% 40% 60% 40%;
  animation: liquidMorph1 20s infinite ease-in-out alternate, liquidFloat2 18s infinite ease-in-out;
}

.cta-liquid-orb {
  position: absolute;
  filter: blur(65px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.42;
  will-change: transform, border-radius;
}

.cta-liquid-orb-1 {
  top: 15%;
  left: 15%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4), rgba(26, 79, 191, 0.18) 70%, transparent 90%);
  border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%;
  animation: liquidMorph3 18s infinite ease-in-out alternate;
}

.cta-liquid-orb-2 {
  bottom: 10%;
  right: 15%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(129, 140, 248, 0.35), rgba(37, 99, 235, 0.22) 70%, transparent 90%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: liquidMorph2 20s infinite ease-in-out alternate;
}

/* Fluid Organic Morph Keyframes */
@keyframes liquidMorph1 {
  0% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: rotate(0deg) scale(1);
  }

  33% {
    border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    transform: rotate(120deg) scale(1.08);
  }

  66% {
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    transform: rotate(240deg) scale(0.96);
  }

  100% {
    border-radius: 55% 45% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(360deg) scale(1.04);
  }
}

@keyframes liquidMorph2 {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(0deg) scale(1.02);
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: rotate(180deg) scale(0.95);
  }

  100% {
    border-radius: 50% 50% 40% 60% / 40% 40% 60% 60%;
    transform: rotate(360deg) scale(1.06);
  }
}

@keyframes liquidMorph3 {
  0% {
    border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%;
    transform: scale(1) rotate(0deg);
  }

  50% {
    border-radius: 70% 30% 60% 40% / 40% 30% 70% 60%;
    transform: scale(1.1) rotate(180deg);
  }

  100% {
    border-radius: 40% 60% 50% 50% / 60% 50% 50% 40%;
    transform: scale(0.98) rotate(360deg);
  }
}

@keyframes liquidFloat1 {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-40px) translateX(25px);
  }
}

@keyframes liquidFloat2 {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(35px) translateX(-30px);
  }
}

@keyframes liquidFloat3 {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-25px) translateX(-20px);
  }
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

/* ===== CANVAS BG ===== */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-off);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 10px;
}

/* ===== TYPOGRAPHY (Apple VisionOS 3D Metallic Sapphire Gradient) ===== */
.gradient-text {
  background: linear-gradient(90deg, #020617 0%, #1E3A8A 50%, #1D4ED8 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block !important;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

/* ===== SECTION ===== */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.problem-section,
.how-section,
.demo-section,
.dashboard-section,
.industries-section,
.integrations-section,
.roi-section,
.testimonials-section,
.pricing-section,
.faq-section,
.cta-section {
  /* content-visibility: auto; */
  /* contain-intrinsic-size: 1px 700px; */
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}



.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1E40AF;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 246, 255, 0.82) 100%);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  box-shadow: 0 8px 24px -4px rgba(26, 79, 191, 0.12), inset 0 1.5px 0 #FFFFFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -4px rgba(26, 79, 191, 0.18), inset 0 1.5px 0 #FFFFFF;
}

.badge-dot-red {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
  animation: badgePulseRed 2s infinite ease-in-out;
}

@keyframes badgePulseRed {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
  }

  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.12);
  }
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  max-width: 860px;
  margin: 0 auto 20px;
  color: #0F172A;
  text-wrap: balance;
}

.section-sub {
  font-size: 19px;
  color: #1E293B;
  font-weight: 500;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
  letter-spacing: -0.2px;
}

.sub-highlight-pill {
  display: inline-block;
  padding: 3px 12px;
  background: rgba(37, 99, 235, 0.08);
  color: #1D4ED8;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  margin: 0 3px;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.06);
}

/* ===== GLASS CARD — Apple visionOS + Liquid Synergy ===== */
.glass-card {
  background: var(--glass-1);
  border: 1px solid var(--specular-border);
  border-radius: var(--radius-xl);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

/* Glass refraction shimmer on top edge */
.glass-card::before,
.problem-card::before,
.industry-card::before,
.latency-matrix-card::before,
.faq-item::before,
.hero-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.95) 70%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* Interactive fluid mouse spotlight on glass cards (Liquid caustic) */
.glass-card::after,
.problem-card::after,
.industry-card::after,
.latency-matrix-card::after,
.faq-item::after,
.hero-stats::after,
.demo-stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(450px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(255, 255, 255, 0.4) 0%,
      rgba(59, 130, 246, 0.12) 28%,
      rgba(6, 182, 212, 0.05) 50%,
      transparent 72%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 3;
}

.glass-card:hover::after,
.problem-card:hover::after,
.industry-card:hover::after,
.latency-matrix-card:hover::after,
.faq-item:hover::after,
.hero-stats:hover::after,
.demo-stat-card:hover::after {
  opacity: 1;
}

.glass-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-5px) scale(1.005);
}

/* Liquid Ripple Click Element */
.liquid-ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(59, 130, 246, 0.35) 40%, rgba(6, 182, 212, 0) 70%);
  transform: scale(0);
  pointer-events: none;
  animation: liquidRippleSpread 0.75s cubic-bezier(0.2, 0.8, 0.4, 1) forwards;
  z-index: 10;
}

@keyframes liquidRippleSpread {
  0% {
    transform: scale(0);
    opacity: 0.9;
  }

  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* ===== BUTTONS ===== */
/* ===== BUTTONS (Apple Glass + Premium Smooth Micro-Interactions) ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #1A4FBF 0%, #2563EB 50%, #3B82F6 100%);
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), background 0.28s ease;
  box-shadow: 0 6px 20px -2px rgba(37, 99, 235, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  letter-spacing: -0.1px;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  box-shadow: 0 14px 32px -4px rgba(37, 99, 235, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  background: linear-gradient(135deg, #1640A0 0%, #1D4ED8 50%, #2563EB 100%);
}

.btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 4px 14px -2px rgba(37, 99, 235, 0.3);
}

.btn-primary .btn-text,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-xl {
  padding: 18px 36px;
  font-size: 17px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--text-primary);
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), background 0.28s ease, color 0.28s ease;
}

.btn-ghost:hover {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 10px 24px -4px rgba(26, 79, 191, 0.15), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--blue);
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid rgba(37, 99, 235, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), background 0.28s ease, color 0.28s ease;
}

.btn-outline:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 10px 28px -4px rgba(37, 99, 235, 0.4);
}

.btn-nav {
  padding: 10px 22px;
  font-size: 14px;
  background: var(--blue);
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(26, 79, 191, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-nav:hover {
  background: #1240A0;
  box-shadow: 0 5px 18px rgba(26, 79, 191, 0.42);
  transform: translateY(-1px);
}

.magnetic-btn {
  cursor: pointer;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ===== NAVIGATION — Floating Pill Apple Glass ===== */
.nav {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 24px 10px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(32px) saturate(190%);
  -webkit-backdrop-filter: blur(32px) saturate(190%);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 100px;
  box-shadow: 0 12px 36px -6px rgba(26, 79, 191, 0.08), 0 2px 10px rgba(0, 0, 0, 0.02), inset 0 1px 0 #FFFFFF;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.nav.scrolled .nav-inner {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(48px) saturate(200%);
  -webkit-backdrop-filter: blur(48px) saturate(200%);
  box-shadow: 0 16px 44px -8px rgba(26, 79, 191, 0.14), 0 2px 12px rgba(0, 0, 0, 0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-speedometer svg {
  width: 34px;
  height: 34px;
}

.logo-img-wrap {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.3));
  transition: transform 0.3s ease;
}

.nav-logo:hover .brand-logo-img,
.footer-logo:hover .brand-logo-img {
  transform: scale(1.08);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-speed {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #0F172A;
}

.logo-to {
  color: #1A4FBF;
}

.logo-group {
  font-size: 9px;
  letter-spacing: 3px;
  color: #64748B;
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  transition: color 0.2s ease;
  letter-spacing: 0.2px;
  text-decoration: none;
}

.nav-link:hover {
  color: #1A4FBF;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-secondary);
  transition: all 0.3s;
}

/* ===== MOBILE NAV OVERLAY (Apple VisionOS Glass Drawer) ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(36px) saturate(200%);
  -webkit-backdrop-filter: blur(36px) saturate(200%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(-16px);
}

.mobile-nav.open,
.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.mobile-nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 16px;
  width: 100%;
  transition: all 0.25s ease;
  display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.mobile-nav-cta {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 24px -2px rgba(37, 99, 235, 0.35);
  border-radius: 100px;
  display: flex !important;
}

/* ===== MOBILE NAV — Apple Glass ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(242, 242, 247, 0.92);
  backdrop-filter: blur(60px) saturate(200%);
  -webkit-backdrop-filter: blur(60px) saturate(200%);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.mobile-nav-link {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  transition: color var(--transition);
}

.mobile-nav-link:hover {
  color: var(--blue);
}

.mobile-nav-cta {
  margin-top: 12px;
  padding: 14px 36px;
  font-size: 16px;
}

/* ===== HERO SECTION — Seamless 3D Neural Circuit Skin (1:1 Reference) ===== */
.hero {
  position: relative;
  padding: 120px 0 35px;
  overflow: hidden;
  background: transparent;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Ethereal Azure-Blue Glow orb on top-left */
.hero-azure-orb {
  position: absolute;
  top: -120px;
  left: -140px;
  width: 70vw;
  height: 70vw;
  max-width: 850px;
  max-height: 850px;
  background: radial-gradient(circle at 35% 35%, rgba(160, 205, 255, 0.85) 0%, rgba(195, 225, 255, 0.5) 45%, rgba(248, 250, 252, 0) 75%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
  animation: floatAzureOrb 14s ease-in-out infinite alternate;
}

@keyframes floatAzureOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, 20px) scale(1.05);
  }

  100% {
    transform: translate(-20px, 15px) scale(0.98);
  }
}

/* Seamless 3D Neural Circuit Landscape Floor Layer (Skin of Hero) */
.hero-landscape-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-landscape-img {
  width: 100%;
  height: 135%;
  object-fit: cover;
  object-position: center 10%;
  mix-blend-mode: multiply;
  opacity: 0.98;
  filter: contrast(1.04) brightness(1.01);
  transition: transform 0.4s ease-out;
}

/* Universal 3D Circuit Floor Backdrop for Section Continuity */
.section-landscape-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.section-landscape-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: multiply;
  opacity: 0.55;
  filter: contrast(1.05) brightness(1.02);
  transition: transform 0.6s ease-out;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-header-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Status Pill HUD */
.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 100px;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow: 0 4px 18px rgba(26, 79, 191, 0.07), inset 0 1px 0 #FFFFFF;
  margin-bottom: 24px;
  font-size: 12px;
  color: #475569;
}

.pill-dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 10px #22C55E;
  animation: dot-blink 2s ease-in-out infinite;
}

.pill-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  color: #0F172A;
  letter-spacing: 0.8px;
}

.pill-sep {
  width: 1px;
  height: 12px;
  background: rgba(148, 163, 184, 0.35);
}

.pill-metric {
  font-size: 12px;
  font-weight: 500;
}

.pill-metric strong {
  font-weight: 700;
  color: #0F172A;
}

.text-green {
  color: #16A34A !important;
  font-weight: 700;
}

/* Hero Typography */
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(48px, 6.2vw, 84px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: #0A0F1D;
  margin-bottom: 20px;
  text-align: center;
}

.hero-number-accent {
  color: #1A4FBF;
  font-weight: 900;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 17.5px);
  color: #475569;
  line-height: 1.65;
  max-width: 660px;
  margin: 0 auto 34px;
  text-align: center;
  font-weight: 450;
}

/* CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary.pill-btn {
  background: #1A4FBF;
  color: #FFFFFF;
  box-shadow: 0 8px 24px -4px rgba(26, 79, 191, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary.pill-btn:hover {
  background: #1541A3;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px rgba(26, 79, 191, 0.55);
}

.btn-ghost.pill-btn {
  background: rgba(255, 255, 255, 0.88);
  color: #0F172A;
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03), inset 0 1px 0 #FFFFFF;
}

.btn-ghost.pill-btn:hover {
  background: #FFFFFF;
  border-color: #CBD5E1;
  color: #1A4FBF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 79, 191, 0.12);
}

/* ===== MID-SECTION 3D CIRCUIT STAGE & FLOATING HUD ===== */
.hero-stage-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  min-height: 220px;
  margin: 15px auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Floating Frosted Glass Bento Stats Pill (Center) */
.hero-stats-pill {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 44px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(240, 246, 255, 0.86) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 32px;
  backdrop-filter: blur(36px) saturate(190%);
  -webkit-backdrop-filter: blur(36px) saturate(190%);
  box-shadow:
    0 20px 50px -10px rgba(26, 79, 191, 0.16),
    0 2px 12px rgba(0, 0, 0, 0.03),
    inset 0 1.5px 0 #FFFFFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stats-pill:hover {
  transform: translateY(-3px);
  box-shadow:
    0 26px 60px -10px rgba(26, 79, 191, 0.22),
    inset 0 1.5px 0 #FFFFFF;
}

.stat-pill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 26px;
}

.stat-pill-num-row {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.stat-pill-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #0A0F1D;
  letter-spacing: -1px;
}

.stat-pill-unit-sub {
  font-size: 16px;
  font-weight: 700;
  color: #0F172A;
  margin-top: 2px;
}

.stat-pill-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #64748B;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

.stat-pill-divider {
  width: 1px;
  height: 40px;
  background: rgba(26, 79, 191, 0.12);
}

/* Floating 3D Call Node Card (Right) */
.hero-calling-node-card {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 210px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 248, 255, 0.9) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 12px;
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  box-shadow:
    0 24px 50px -10px rgba(26, 79, 191, 0.2),
    0 4px 16px rgba(0, 0, 0, 0.04),
    inset 0 1.5px 0 #FFFFFF;
  z-index: 5;
  animation: floatCallNode 5s ease-in-out infinite alternate;
  transition: transform 0.3s ease;
}

@keyframes floatCallNode {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(calc(-50% - 8px));
  }
}

.hero-calling-node-card:hover {
  transform: translateY(calc(-50% - 10px)) scale(1.02);
}

.node-card-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  background: #EBF3FF;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
}

.node-card-img {
  width: 100%;
  height: auto;
  display: block;
}

.node-card-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 6px 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 100px;
}

.node-dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16A34A;
  box-shadow: 0 0 8px #16A34A;
  animation: dot-blink 1.8s ease-in-out infinite;
}

.node-status-text {
  font-size: 11px;
  font-weight: 700;
  color: #15803D;
  letter-spacing: 0.2px;
}

.node-sparkle-star {
  position: absolute;
  right: -24px;
  bottom: -10px;
  font-size: 28px;
  color: rgba(147, 197, 253, 0.85);
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.6));
  pointer-events: none;
  animation: sparklePulse 3s ease-in-out infinite;
}

@keyframes sparklePulse {

  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.25) rotate(15deg);
    opacity: 1;
  }
}

/* ===== BOTTOM 3 LATENCY MATRIX CARDS (1:1 Reference) ===== */
.latency-matrix-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.latency-matrix-card {
  padding: 16px 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 250, 255, 0.88) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 10px 30px -6px rgba(26, 79, 191, 0.08), inset 0 1px 0 #FFFFFF;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latency-matrix-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -6px rgba(26, 79, 191, 0.14);
}

.latency-sub-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 8px;
  display: block;
}

.latency-card-body {
  display: flex;
  align-items: center;
  gap: 12px;
}

.latency-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(26, 79, 191, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.latency-matrix-main {
  font-size: 12px;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: 0.2px;
  line-height: 1.35;
}

/* ===== SCROLL INDICATOR ===== */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.35;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scroll-drop 1.5s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.01% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.hero-scroll-indicator span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== PROBLEM SECTION (SEAMLESS CONDUIT BRIDGE + LIQUID VISIONOS BENTO) ===== */
.problem-section {
  position: relative;
  background: transparent;
  padding: 110px 0 120px;
}

.conduit-bridge-aura {
  display: none;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

/* Problem cards — Liquid VisionOS Frosted Glass Bento */
.problem-card {
  padding: 28px 24px 24px;
  text-align: left;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(244, 248, 255, 0.88) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  backdrop-filter: blur(32px) saturate(190%);
  -webkit-backdrop-filter: blur(32px) saturate(190%);
  box-shadow: 0 12px 36px -6px rgba(26, 79, 191, 0.09), inset 0 1.5px 0 #FFFFFF;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.problem-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.problem-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.2px;
}

.tag-red {
  background: rgba(239, 68, 68, 0.1);
  color: #DC2626;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.tag-amber {
  background: rgba(245, 158, 11, 0.1);
  color: #D97706;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.tag-blue {
  background: rgba(37, 99, 235, 0.1);
  color: #1D4ED8;
  border: 1px solid rgba(37, 99, 235, 0.25);
}

.tag-purple {
  background: rgba(139, 92, 246, 0.1);
  color: #7C3AED;
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.mini-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.mini-pulse-dot.red {
  background: #EF4444;
  box-shadow: 0 0 6px #EF4444;
}

.mini-pulse-dot.amber {
  background: #F59E0B;
  box-shadow: 0 0 6px #F59E0B;
}

.mini-pulse-dot.blue {
  background: #2563EB;
  box-shadow: 0 0 6px #2563EB;
}

.mini-pulse-dot.purple {
  background: #8B5CF6;
  box-shadow: 0 0 6px #8B5CF6;
}

.problem-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-icon svg {
  width: 22px;
  height: 22px;
}

.problem-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 10px;
  color: #0A0F1D;
  display: flex;
  align-items: baseline;
}

.bento-danger .stat-number {
  color: #DC2626;
}

.bento-amber .stat-number {
  color: #D97706;
}

.bento-blue .stat-number {
  color: #1A4FBF;
}

.bento-purple .stat-number {
  color: #7C3AED;
}

.stat-symbol {
  font-size: 24px;
  font-weight: 700;
  margin-left: 2px;
}

.problem-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.35;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 16px;
}

.problem-card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(26, 79, 191, 0.08);
}

.card-footer-metric {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.text-red {
  color: #DC2626 !important;
}

.text-amber {
  color: #D97706 !important;
}

.text-blue {
  color: #1A4FBF !important;
}

.text-purple {
  color: #7C3AED !important;
}

/* Interactive Lead Decay Visualizer Box */
.decay-visualizer-box {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 246, 255, 0.9) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: 32px 38px;
  box-shadow: 0 16px 44px -8px rgba(26, 79, 191, 0.12), inset 0 1.5px 0 #FFFFFF;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.decay-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 14px;
}

.decay-tag {
  font-size: 11px;
  font-weight: 800;
  color: #1A4FBF;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.decay-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0A0F1D;
  letter-spacing: -0.5px;
}

.decay-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #15803D;
}

.decay-slider-track-wrap {
  position: relative;
  margin-bottom: 26px;
}

.decay-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.decay-label-point {
  font-size: 13px;
  font-weight: 700;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s ease;
}

.decay-label-point.active {
  color: #1A4FBF;
  font-weight: 800;
  transform: scale(1.05);
}

.decay-range-input {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(90deg, #22C55E 0%, #E2E8F0 100%);
  outline: none;
  cursor: pointer;
}

.decay-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1A4FBF;
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(26, 79, 191, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.decay-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.decay-matrix-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.decay-result-card {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}

.decay-res-label {
  font-size: 11.5px;
  font-weight: 600;
  color: #64748B;
  display: block;
  margin-bottom: 6px;
}

.decay-res-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1;
}

.decay-progress-bar {
  width: 100%;
  height: 6px;
  background: #E2E8F0;
  border-radius: 100px;
  overflow: hidden;
}

.decay-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.4s ease;
}

.bg-green {
  background: #22C55E;
}

.bg-amber {
  background: #F59E0B;
}

.bg-red {
  background: #EF4444;
}

.decay-res-status {
  margin-bottom: 6px;
}

.badge-status-won {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803D;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}

.badge-status-lost {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(239, 68, 68, 0.12);
  color: #DC2626;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}

.decay-res-desc {
  font-size: 12px;
  color: #475569;
  line-height: 1.45;
}

.problem-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.problem-cta-text {
  font-size: 16.5px;
  color: #475569;
}

.problem-cta-text strong {
  color: #0F172A;
}

/* ===== HOW IT WORKS ===== */
/* ===== 3D NEURAL PIPELINE & HOW IT WORKS ===== */
.how-section {
  position: relative;
  background: transparent;
  padding: 50px 0 60px;
}

.pipeline-3d-wrapper {
  position: relative;
  margin-top: 24px;
  perspective: 1400px;
}

.pipeline-liquid-ambient {
  position: absolute;
  top: 15%;
  left: 10%;
  right: 10%;
  bottom: 20%;
  background: radial-gradient(circle at 50% 50%, rgba(147, 197, 253, 0.45) 0%, rgba(186, 230, 253, 0.25) 45%, transparent 75%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  animation: liquidFloat1 18s ease-in-out infinite alternate;
}

/* 3D Model Pod (Compact Single-Screen Viewport Fitted) */
.pipeline-3d-pod {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.78);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 28px;
  padding: 14px 18px;
  max-width: 680px;
  margin: 0 auto 20px;
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  box-shadow:
    0 24px 60px -12px rgba(26, 79, 191, 0.12),
    0 6px 20px rgba(0, 0, 0, 0.03),
    inset 0 1.5px 0 rgba(255, 255, 255, 1);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease;
}

.pipeline-hud-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  background: rgba(241, 245, 249, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 100px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.pipeline-status-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.pulse-ring {
  position: absolute;
  left: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #2563EB;
  animation: ring-pulse 2s infinite ease-in-out;
}

.status-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2563EB;
  box-shadow: 0 0 10px #2563EB;
}

.hud-title {
  color: #1A4FBF;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.2px;
  font-family: 'Space Grotesk', sans-serif;
}

.pipeline-hud-telemetry {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #475569;
  font-family: monospace;
}

.hud-sep {
  color: #CBD5E1;
}

.glow-text {
  color: #1D4ED8;
  font-weight: 700;
}

.glow-text-green {
  color: #16A34A;
  font-weight: 700;
}

/* 3D Stage (Edge-to-Edge 100% Filled with ZERO LHS/RHS Gaps) */
.pipeline-3d-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 10px 28px rgba(26, 79, 191, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: #FFFFFF;
}

.pipeline-3d-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* 3D Interactive Hotspots */
.pipeline-hotspot {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 4;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pipeline-hotspot:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.hotspot-1 {
  top: 30%;
  left: 26%;
}

.hotspot-2 {
  top: 30%;
  left: 74%;
}

.hotspot-3 {
  top: 70%;
  left: 26%;
}

.hotspot-4 {
  top: 70%;
  left: 74%;
}

.hotspot-ping {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563EB;
  box-shadow: 0 0 12px #2563EB;
  position: relative;
}

.hotspot-ping::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid #2563EB;
  animation: ring-pulse 1.8s infinite ease-in-out;
}

.hotspot-tag {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: #0F172A;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 3px 14px rgba(37, 99, 235, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
  white-space: nowrap;
}

.pipeline-caustic-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(56, 189, 248, 0.18) 0%, transparent 65%);
  z-index: 3;
  mix-blend-mode: screen;
}

/* 4 Step Interactive Bento Cards below 3D Model */
.pipeline-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
  z-index: 2;
  position: relative;
}

.pipeline-step-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 247, 255, 0.88) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 26px 22px;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    0 14px 34px -4px rgba(26, 79, 191, 0.11),
    0 2px 6px rgba(0, 0, 0, 0.03),
    inset 0 1.5px 0 #FFFFFF;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pipeline-step-card:hover,
.pipeline-step-card.active {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.8);
  box-shadow:
    0 24px 50px -8px rgba(26, 79, 191, 0.22),
    0 0 0 2px rgba(59, 130, 246, 0.35),
    inset 0 2px 0 #FFFFFF;
}

.step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.step-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #1A4FBF;
  font-family: 'Space Grotesk', sans-serif;
}

.step-latency-pill {
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.step-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 14px rgba(26, 79, 191, 0.08);
}

.step-icon-wrap svg {
  width: 24px;
  height: 24px;
}

.icon-blue {
  color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}

.icon-green {
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.2);
}

.icon-purple {
  color: #7C3AED;
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(124, 58, 237, 0.2);
}

.icon-amber {
  color: #D97706;
  background: rgba(217, 119, 6, 0.08);
  border-color: rgba(217, 119, 6, 0.2);
}

.step-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
  line-height: 1.25;
}

.step-card-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.step-progress-bar {
  width: 100%;
  height: 3px;
  background: rgba(26, 79, 191, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.pipeline-step-card.active .progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2563EB, #06B6D4);
  animation: progressPulse 3s infinite linear;
}

@keyframes progressPulse {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 992px) {
  .pipeline-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hotspot-tag {
    font-size: 10px;
    padding: 4px 10px;
  }
}

@media (max-width: 640px) {
  .pipeline-steps-grid {
    grid-template-columns: 1fr;
  }

  .pipeline-3d-pod {
    padding: 14px;
    border-radius: 24px;
  }

  .pipeline-hud-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== DEMO SECTION & LIQUID GLASS BENTO STAGE ===== */
.demo-section {
  background: transparent;
  position: relative;
}

.demo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(238, 245, 255, 0.62) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 32px;
  padding: 36px 36px;
  max-width: 1040px;
  margin: 0 auto;
  backdrop-filter: blur(40px) saturate(190%);
  -webkit-backdrop-filter: blur(40px) saturate(190%);
  box-shadow:
    0 24px 60px -15px rgba(26, 79, 191, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.03),
    inset 0 2px 0 #FFFFFF,
    inset 0 -1px 0 rgba(26, 79, 191, 0.08);
  overflow: hidden;
}

/* Ambient Liquid Flow inside Demo Container */
.demo-liquid-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 480px 380px at 85% 30%, rgba(59, 130, 246, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 420px 340px at 15% 85%, rgba(6, 182, 212, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 380px 380px at 55% 90%, rgba(129, 140, 248, 0.15) 0%, transparent 70%);
  filter: blur(45px);
  animation: demoLiquidPulse 14s infinite ease-in-out alternate;
}

@keyframes demoLiquidPulse {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.08) rotate(3deg);
    opacity: 1;
  }

  100% {
    transform: scale(0.96) rotate(-3deg);
    opacity: 0.9;
  }
}

.demo-phone,
.demo-stats {
  position: relative;
  z-index: 2;
}

/* Phone */
.demo-phone {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 260px;
  height: 520px;
  max-height: 520px;
  background: #111827;
  border-radius: 36px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #111827;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-screen {
  padding: 24px 14px 16px;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-top: 4px;
  flex-shrink: 0;
}

.phone-signal span {
  display: inline-block;
  width: 4px;
  height: 10px;
  background: #F9FAFB;
  border-radius: 1px;
  margin-right: 2px;
  opacity: 0.5;
}

.phone-signal span:nth-child(1) {
  height: 5px;
}

.phone-signal span:nth-child(2) {
  height: 8px;
  opacity: 0.7;
}

.phone-signal span:nth-child(3) {
  height: 10px;
  opacity: 1;
}

.phone-time {
  font-size: 12px;
  font-weight: 600;
  color: #F9FAFB;
}

.phone-battery svg {
  width: 22px;
  height: 11px;
  color: #F9FAFB;
}

.phone-caller {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 10px;
  flex-shrink: 0;
}

.caller-avatar {
  position: relative;
  width: 52px;
  height: 52px;
}

.avatar-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  opacity: 0.5;
  animation: ring-grow 2s ease-out infinite;
}

@keyframes ring-grow {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.avatar-inner {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-inner svg {
  width: 28px;
  height: 28px;
}

.caller-info {
  text-align: center;
}

.caller-name {
  font-size: 15px;
  font-weight: 700;
  color: #F9FAFB;
  margin-bottom: 2px;
}

.caller-number {
  font-size: 12px;
  color: #9CA3AF;
  margin-bottom: 4px;
}

.call-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(5, 150, 105, 0.2);
  color: #34D399;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.call-transcript {
  flex: 1;
  min-height: 0;
  max-height: 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  padding-right: 4px;
  padding-bottom: 8px;
  scroll-behavior: smooth;
}

.call-transcript::-webkit-scrollbar {
  width: 3px;
}

.call-transcript::-webkit-scrollbar-track {
  background: transparent;
}

.call-transcript::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.transcript-line {
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: fade-slide-in 0.4s ease;
}

@keyframes fade-slide-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.incoming-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 170px;
  gap: 12px;
  color: #34D399;
  text-align: center;
}

.incoming-placeholder.is-hidden,
.incoming-placeholder.hidden {
  display: none !important;
}

.waveform-bars {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 28px;
}

.waveform-bars span {
  width: 4px;
  height: 100%;
  background: #34D399;
  border-radius: 3px;
  animation: waveBar 1.2s ease-in-out infinite alternate;
}

.waveform-bars span:nth-child(1) {
  animation-delay: 0.1s;
}

.waveform-bars span:nth-child(2) {
  animation-delay: 0.3s;
}

.waveform-bars span:nth-child(3) {
  animation-delay: 0.5s;
}

.waveform-bars span:nth-child(4) {
  animation-delay: 0.2s;
}

.waveform-bars span:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes waveBar {
  0% {
    height: 6px;
    opacity: 0.3;
  }

  100% {
    height: 28px;
    opacity: 1;
  }
}

.incoming-text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.transcript-line.is-hidden,
.transcript-line.hidden,
.transcript-booked.is-hidden,
.transcript-booked.hidden {
  display: none !important;
}

.transcript-line.ai .t-label {
  color: #93C5FD;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.transcript-line.lead .t-label {
  color: #34D399;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.t-text {
  font-size: 12px;
  color: #9CA3AF;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 10px;
}

.transcript-line.ai .t-text {
  background: rgba(26, 79, 191, 0.15);
  border-left: 2px solid #3B7BF5;
  color: #CBD5E1;
}

.transcript-line.lead .t-text {
  background: rgba(5, 150, 105, 0.1);
  border-left: 2px solid #34D399;
}

.transcript-booked {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(5, 150, 105, 0.15);
  border: 1px solid rgba(5, 150, 105, 0.3);
  border-radius: 10px;
  color: #34D399;
  font-weight: 700;
  font-size: 14px;
  animation: fade-slide-in 0.4s ease;
}

.transcript-booked svg {
  width: 20px;
  height: 20px;
}

.transcript-booked.hidden {
  display: none;
}

.call-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 12px;
  position: relative;
}

.call-controls.incoming .hidden-incoming {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.call-controls.active-call .hidden-incoming {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity 0.4s ease;
}

.ctrl-center-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}

.call-hint-text {
  font-size: 10.5px;
  font-weight: 700;
  color: #34D399;
  letter-spacing: 0.5px;
  animation: hintBlink 1.6s ease-in-out infinite;
  white-space: nowrap;
  pointer-events: none;
}

.call-controls.active-call .call-hint-text {
  display: none;
}

.ctrl-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.ctrl-btn svg {
  width: 20px;
  height: 20px;
}

.ctrl-mute,
.ctrl-speaker {
  background: rgba(255, 255, 255, 0.08);
  color: #9CA3AF;
}

.ctrl-mute:hover,
.ctrl-speaker:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #F9FAFB;
}

.ctrl-end {
  background: #059669;
  color: #fff;
  width: 64px;
  height: 64px;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.4);
  transition: all var(--transition-spring);
}

.ctrl-incoming-vibrate {
  animation: pulseVibrateCall 1.4s infinite cubic-bezier(0.36, 0, 0.66, 1);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}

@keyframes pulseVibrateCall {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  20% {
    transform: translateY(-6px) scale(1.06) rotate(-2deg);
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
  }

  40% {
    transform: translateY(-6px) scale(1.06) rotate(2deg);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }

  60% {
    transform: translateY(-6px) scale(1.06) rotate(-1deg);
    box-shadow: 0 0 0 16px rgba(16, 185, 129, 0);
  }

  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes hintBlink {

  0%,
  100% {
    opacity: 0.6;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.call-controls.active-call .ctrl-end {
  animation: none;
  background: #EF4444 !important;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
  transform: rotate(135deg);
}

.ctrl-end:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.5);
}

.phone-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(26, 79, 191, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* Demo Stats — High-Contrast Crystalline Glass Tiles */
.demo-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.demo-stat-card {
  padding: 32px 24px;
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 247, 255, 0.88) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow:
    0 14px 34px -4px rgba(26, 79, 191, 0.11),
    0 3px 8px rgba(0, 0, 0, 0.03),
    inset 0 1.5px 0 #FFFFFF,
    inset 0 -1px 0 rgba(26, 79, 191, 0.06);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.3s ease;
}

.demo-stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow:
    0 22px 52px -6px rgba(26, 79, 191, 0.22),
    0 4px 14px rgba(0, 0, 0, 0.05),
    inset 0 2px 0 #FFFFFF;
}

.demo-stat-icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(26, 79, 191, 0.06);
  border: 1px solid rgba(26, 79, 191, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.demo-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.8px;
}

.demo-stat-label {
  font-size: 13.5px;
  font-weight: 500;
  color: #4B5563;
  line-height: 1.4;
}

/* ===== DASHBOARD ===== */
.dashboard-section {
  background: transparent;
}

.dashboard-frame {
  padding: 32px;
  border-radius: 20px;
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.dash-logo {
  display: flex;
  gap: 6px;
}

.dash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dash-dot.green {
  background: #4ADE80;
}

.dash-dot.yellow {
  background: #FCD34D;
}

.dash-dot.red {
  background: #F87171;
}

.dash-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}

.dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: dot-blink 1.5s ease-in-out infinite;
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.dash-kpi {
  background: var(--bg-off);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.kpi-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.kpi-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.kpi-trend {
  font-size: 12px;
  font-weight: 700;
}

.kpi-trend.up {
  color: var(--green);
}

.kpi-trend.down {
  color: var(--red);
}

.dash-chart-area {
  margin-bottom: 24px;
}

.dash-chart-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dash-chart {
  background: var(--bg-off);
  border-radius: 10px;
  padding: 16px;
}

.activity-header {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.activity-item:hover {
  border-color: var(--border-light);
}

.act-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.act-dot.green {
  background: var(--green);
  box-shadow: 0 0 6px rgba(5, 150, 105, 0.4);
}

.act-dot.blue {
  background: var(--blue);
  box-shadow: 0 0 6px rgba(26, 79, 191, 0.4);
  animation: dot-blink 1.5s ease-in-out infinite;
}

.act-dot.purple {
  background: var(--purple);
}

.act-text {
  flex: 1;
}

.act-text strong {
  color: var(--text-primary);
}

.act-time {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ===== INDUSTRIES ===== */
.industries-section {
  position: relative;
  background: transparent;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Industry card — Apple glass tile */
.industry-card {
  background: var(--glass-1);
  border: 1px solid var(--specular-border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-spring);
  cursor: default;
  transform-style: preserve-3d;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.95) 70%, transparent 100%);
  pointer-events: none;
}

.industry-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-8px) rotateX(3deg);
  background: rgba(235, 241, 255, 0.7);
  border-color: rgba(26, 79, 191, 0.25);
}

/* ===== UNIFIED SUPER-PREMIUM LIQUID GLASS ICON CONTAINER SYSTEM ===== */
.liquid-glass-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(235, 243, 255, 0.88) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 10px 25px -4px rgba(26, 79, 191, 0.12),
    0 4px 10px -2px rgba(26, 79, 191, 0.08),
    inset 0 2px 4px rgba(255, 255, 255, 0.95);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.liquid-glass-icon-box svg {
  width: 26px;
  height: 26px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.industry-card:hover .liquid-glass-icon-box,
.demo-stat-card:hover .liquid-glass-icon-box,
.pipeline-step-card:hover .liquid-glass-icon-box {
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 16px 32px -4px rgba(26, 79, 191, 0.22),
    0 6px 16px -2px rgba(37, 99, 235, 0.16),
    inset 0 2px 4px rgba(255, 255, 255, 1);
}

.industry-card:hover .liquid-glass-icon-box svg,
.demo-stat-card:hover .liquid-glass-icon-box svg,
.pipeline-step-card:hover .liquid-glass-icon-box svg {
  transform: scale(1.12);
}

.industry-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.industry-stat {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.65);
  border: 0.5px solid rgba(26, 79, 191, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.industry-card-cta {
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-xpale));
  border: 1.5px solid var(--border);
}

.industry-cta-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--blue);
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  transition: all var(--transition);
}

.industry-cta-btn:hover {
  background: #1240A0;
  transform: scale(1.05);
}

/* ===== INTEGRATIONS ===== */
.integrations-section {
  background: transparent;
}

.integrations-hub {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
}

.hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.hub-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(26, 79, 191, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hub-logo svg {
  width: 36px;
  height: 36px;
}

.hub-logo span {
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.hub-pulse,
.hub-pulse-2 {
  position: absolute;
  inset: -20px;
  border-radius: 32px;
  border: 1px solid rgba(26, 79, 191, 0.25);
  animation: hub-pulse 2s ease-out infinite;
}

.hub-pulse-2 {
  inset: -40px;
  animation-delay: 1s;
  border-radius: 40px;
}

@keyframes hub-pulse {
  0% {
    opacity: 0.6;
    transform: scale(0.8);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.orbit-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.integrations-orbit {
  position: absolute;
  inset: 0;
  animation: orbitRotate 36s linear infinite;
  will-change: transform;
}

.integrations-orbit:hover {
  animation-play-state: paused;
}

.integrations-orbit:hover .int-badge {
  animation-play-state: paused;
}

.integration-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  transform-origin: 0 0;
  transform: rotate(var(--angle)) translateX(230px) rotate(calc(-1 * var(--angle))) translate(-50%, -50%);
}

.int-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: counterRotate 36s linear infinite;
  will-change: transform;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes orbitRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.int-badge:hover {
  transform: scale(1.15);
}

.int-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  box-shadow: var(--card-shadow);
  transition: all var(--transition);
}

.int-badge:hover .int-icon {
  box-shadow: var(--card-shadow-hover);
  border-color: var(--border);
}

.int-badge span {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.int-icon.meta {
  background: rgba(24, 119, 242, 0.08);
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.2);
}

.int-icon.google {
  background: rgba(234, 67, 53, 0.08);
  color: #EA4335;
  border-color: rgba(234, 67, 53, 0.2);
}

.int-icon.tiktok {
  background: #f9f9f9;
  color: #FF0050;
}

.int-icon.twilio {
  background: rgba(245, 47, 60, 0.08);
  color: #F52F3C;
  border-color: rgba(245, 47, 60, 0.2);
}

.int-icon.ghl {
  background: rgba(255, 140, 0, 0.1);
  color: #FF8C00;
  border-color: rgba(255, 140, 0, 0.2);
  font-size: 11px;
}

.int-icon.openai {
  background: rgba(16, 163, 127, 0.08);
  color: #10A37F;
  border-color: rgba(16, 163, 127, 0.2);
  font-size: 12px;
}

.int-icon.vapi {
  background: rgba(99, 102, 241, 0.08);
  color: #818CF8;
  border-color: rgba(99, 102, 241, 0.2);
}

.int-icon.retell {
  background: rgba(236, 72, 153, 0.08);
  color: #EC4899;
  border-color: rgba(236, 72, 153, 0.2);
}

.int-icon.make {
  background: rgba(99, 102, 241, 0.08);
  color: #6366F1;
  border-color: rgba(99, 102, 241, 0.2);
}

.int-icon.n8n {
  background: rgba(234, 88, 12, 0.08);
  color: #EA580C;
  border-color: rgba(234, 88, 12, 0.2);
  font-size: 12px;
}

/* ===== ROI CALCULATOR ===== */
.roi-section {
  background: transparent;
}

.roi-calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.roi-inputs {
  padding: 40px;
}

.roi-inputs h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.roi-field {
  margin-bottom: 28px;
}

.roi-field label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.roi-input-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

input[type="range"] {
  -webkit-appearance: none;
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--blue) var(--pct, 50%), var(--border-light) var(--pct, 50%));
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 1px var(--border), var(--shadow-btn);
  cursor: pointer;
  transition: transform 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.roi-input-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  min-width: 80px;
  text-align: right;
}

.roi-results {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.roi-results h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.roi-result-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.roi-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.roi-result-item.highlight {
  background: var(--blue-pale);
  padding: 14px 16px;
  border-radius: 10px;
  border-bottom: none;
}

.roi-result-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.roi-result-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
}

.roi-result-val.accent {
  color: var(--blue);
}

.roi-result-val.green {
  color: var(--green);
}

.roi-cta-btn {
  width: 100%;
  justify-content: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: transparent;
}

.testimonials-container {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  padding: 36px;
}

.testimonial-stars {
  font-size: 16px;
  color: var(--amber);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

.testimonial-result {
  display: inline-block;
  padding: 6px 14px;
  background: var(--green-pale);
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--card-shadow);
}

.testi-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.testi-dots {
  display: flex;
  gap: 8px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-light);
  cursor: pointer;
  transition: all 0.3s;
}

.testi-dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ===== PRICING ===== */
.pricing-section {
  background: transparent;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.toggle-label {
  font-size: 15px;
  color: var(--text-muted);
  transition: color 0.3s;
  cursor: pointer;
}

.toggle-label.active {
  color: var(--text-primary);
  font-weight: 600;
}

.toggle-save {
  display: inline-block;
  padding: 2px 8px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 6px;
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--border-light);
  border-radius: 100px;
  border: 1px solid var(--border-card);
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-switch[aria-checked="true"] {
  background: var(--blue);
}

.toggle-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.toggle-switch[aria-checked="true"] .toggle-knob {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  padding: 40px 36px;
  position: relative;
}

.pricing-featured {
  border-color: rgba(26, 79, 191, 0.3);
  background: var(--blue-pale);
  box-shadow: var(--card-shadow-hover);
  transform: scale(1.02);
}

.pricing-featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--blue);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-secondary);
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -2px;
  transition: all 0.3s;
}

.price-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 2px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.5;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feat-check {
  color: var(--green);
  font-size: 16px;
  flex-shrink: 0;
}

.feat-x {
  color: var(--text-light);
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
}

/* ===== FAQ — Apple Glass ===== */
.faq-section {
  background: transparent;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

/* FAQ item — Apple glass tile */
.faq-item {
  background: var(--glass-1);
  border: 0.5px solid var(--specular-border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: var(--card-shadow);
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.9) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.faq-item.open {
  border-color: rgba(26, 79, 191, 0.2);
  box-shadow: var(--card-shadow-hover);
  transform: scale(1.01);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  gap: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.6);
}

.faq-question span:first-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-icon {
  color: var(--blue);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CTA SECTION — Apple Glass Premium ===== */
.cta-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
  background: transparent;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#cta-canvas {
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.cta-section::before,
.cta-section::after {
  display: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

/* CTA badge — Apple glass pill */
.cta-badge {
  display: inline-block;
  padding: 7px 20px;
  border: 0.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 2px 12px rgba(26, 79, 191, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.cta-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(38px, 5.5vw, 74px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.cta-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
}

.cta-guarantee svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.cta-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14px;
}

.proof-avatars {
  display: flex;
}

.proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  border: 2px solid var(--bg);
  margin-left: -8px;
}

.proof-avatar:first-child {
  margin-left: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-light);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-speedometer svg {
  width: 36px;
  height: 36px;
}

.footer-tagline {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-off);
  border: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-secondary);
  transition: all var(--transition);
  box-shadow: var(--card-shadow);
}

.social-link:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-2px);
}

.footer-nav-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-nav-col a:hover {
  color: var(--blue);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  width: 100%;
}

/* ===== UTILITY ===== */
.hide-mobile {
  display: inline;
}

/* ===== ULTRA-PREMIUM MOBILE RESPONSIVENESS ENGINE ===== */
@media (max-width: 1100px) {
  .hero-calling-node-card {
    width: 190px;
    right: 0;
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .integrations-hub {
    width: 480px;
    height: 480px;
  }

  .integration-node {
    transform: rotate(var(--angle)) translateX(185px) rotate(calc(-1 * var(--angle))) translate(-50%, -50%);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 820px) {

  /* Global Layout & Padding */
  .section {
    padding: 70px 0;
  }

  .container {
    padding: 0 18px;
    width: 100%;
    max-width: 100%;
  }

  /* Typography Scaling */
  .section-title {
    font-size: clamp(26px, 6.5vw, 38px);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 16px;
    line-height: 1.6;
  }

  .section-header {
    margin-bottom: 44px;
  }

  /* Navigation & Mobile Drawer */
  .nav-inner {
    margin: 0 12px;
    padding: 10px 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero Section */
  .hero {
    padding: 110px 16px 60px;
    text-align: center;
  }

  .hero-headline {
    font-size: clamp(34px, 8.5vw, 48px);
    letter-spacing: -1.2px;
    line-height: 1.15;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    gap: 12px;
  }

  .hero-ctas .pill-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 52px;
  }

  .hero-stats-pill {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin: 28px auto 0;
    padding: 20px 16px;
    gap: 16px;
    border-radius: 24px;
  }

  .stat-pill-item {
    padding: 0;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .stat-pill-divider {
    width: 80%;
    height: 1px;
    margin: 0 auto;
    background: var(--border-light);
  }

  /* STRICT 1-ITEM PER ROW GRID LAYOUTS (No Crowding, Single Column) */
  .problem-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .decay-matrix-results {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .decay-box-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .pipeline-steps-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .industries-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .dash-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
    max-width: 440px;
    margin: 0 auto;
  }

  .latency-matrix-bar {
    grid-template-columns: 1fr !important;
    gap: 14px;
    max-width: 100%;
  }

  /* Live Simulation Decay Slider Mobile Grid */
  .decay-slider-labels {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px 10px !important;
    margin-bottom: 16px !important;
    width: 100% !important;
  }

  .decay-slider-label {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 8px 10px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    border-radius: 12px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: #334155 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .decay-slider-label.active {
    background: rgba(37, 99, 235, 0.1) !important;
    border-color: rgba(37, 99, 235, 0.4) !important;
    color: #1D4ED8 !important;
  }

  /* Interactive Demo Mobile Overhaul — Slender Smartphone Aspect Ratio */
  .demo-container {
    grid-template-columns: 1fr !important;
    gap: 28px;
    padding: 24px 16px;
    align-items: center;
  }

  .demo-phone {
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
  }

  .phone-frame {
    width: 100%;
    max-width: 280px;
    height: 520px;
    max-height: 520px;
    border-radius: 44px;
    margin: 0 auto;
  }

  .call-transcript {
    max-height: 230px;
    overflow-y: auto;
    scroll-behavior: smooth;
  }

  .demo-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 290px;
    margin: 0 auto;
    width: 100%;
  }

  .demo-stat-card {
    padding: 18px 12px;
  }

  .demo-stat-num {
    font-size: 26px;
  }

  /* ROI Calculator */
  .roi-calculator {
    grid-template-columns: 1fr !important;
    gap: 28px;
    padding: 24px 18px;
  }

  /* Workflow Steps */
  .workflow-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .workflow-arrow {
    transform: rotate(90deg);
    padding: 6px 0;
    margin: 0 auto;
  }

  .workflow-line {
    display: none;
  }

  /* Testimonials & Dashboard */
  .dashboard-mockup {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .testimonials-track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-card {
    flex: 0 0 92%;
  }

  /* Footer Mobile Structure */
  .footer-top {
    padding: 50px 0 30px !important;
  }

  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 32px !important;
    text-align: center !important;
  }

  .footer-brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 340px !important;
  }

  .footer-logo {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin: 0 auto 14px !important;
  }

  .footer-tagline {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    margin-bottom: 8px !important;
  }

  .footer-desc {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    color: #64748B !important;
    margin-bottom: 16px !important;
  }

  .footer-socials {
    display: flex !important;
    justify-content: center !important;
    gap: 14px !important;
    margin-top: 10px !important;
  }

  .footer-nav-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(226, 232, 240, 0.6) !important;
  }

  .footer-nav-col h4 {
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 1.8px !important;
    text-transform: uppercase !important;
    color: #1E293B !important;
    margin-bottom: 12px !important;
  }

  .footer-nav-col ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 !important;
  }

  .footer-nav-col a {
    font-size: 14px !important;
    color: #475569 !important;
    font-weight: 500 !important;
  }

  .footer-bottom {
    padding: 24px 0 !important;
    border-top: 1px solid rgba(226, 232, 240, 0.8) !important;
  }

  .footer-bottom p {
    font-size: 12.5px !important;
    color: #64748B !important;
    text-align: center !important;
    width: 100% !important;
  }

  .hide-mobile {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero-headline {
    font-size: 32px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-sub {
    font-size: 15px;
  }

  .problem-card,
  .industry-card,
  .pricing-card,
  .faq-item {
    padding: 20px 16px;
  }

  .demo-container {
    padding: 18px 12px;
  }

  .demo-phone {
    max-width: 265px;
    width: 100%;
    margin: 0 auto;
  }

  .phone-frame {
    width: 100%;
    max-width: 265px;
    height: 495px;
    max-height: 495px;
    border-radius: 38px;
    margin: 0 auto;
  }

  .call-transcript {
    max-height: 210px;
  }

  .demo-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 270px;
    margin: 0 auto;
  }

  .demo-stat-card {
    padding: 16px 10px;
  }

  .demo-stat-num {
    font-size: 22px;
  }
}

/* ===== ZERO LATENCY TELEMETRY HUD — Apple Glass ===== */
.zero-latency-hud {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 0.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(26, 79, 191, 0.1), 0 1px 4px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transform: translateZ(0);
}

.latency-pill-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: latencyPulse 1.8s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes latencyPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.35);
    opacity: 0.65;
  }
}

.latency-tag {
  color: var(--blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
}

.latency-sep {
  width: 1px;
  height: 14px;
  background: var(--border-light);
}

.latency-metric {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-family: 'Space Grotesk', monospace;
}

.latency-val {
  color: var(--green);
  font-weight: 700;
  font-family: monospace;
}

.latency-matrix-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  width: 100%;
  max-width: 680px;
}

/* Latency matrix — Apple glass mini-cards */
.latency-matrix-card {
  background: var(--glass-1);
  border: 1px solid var(--specular-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  text-align: left;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform: translateZ(0);
  position: relative;
  overflow: hidden;
}

.latency-matrix-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.95);
  pointer-events: none;
}

.latency-matrix-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}

.latency-matrix-title {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.latency-matrix-val {
  font-size: 20px;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--blue);
}

.latency-matrix-sub {
  font-size: 11px;
  color: var(--green);
  margin-top: 2px;
}

/* GPU Acceleration */
.glass-card,
.btn-primary,
.btn-ghost,
.btn-outline,
.industry-card,
.pricing-card,
.testimonial-card,
.speedometer-container,
#speedometer-needle {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ===============================================
   GET STARTED / LEAD CAPTURE + CAL.COM BOOKING
   Apple Glass Aesthetic — Responsive
   =============================================== */

.get-started-section {
  position: relative;
  overflow: hidden;
}

.get-started-card {
  background: var(--glass-1);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 42px 44px;
  box-shadow: var(--card-shadow);
  position: relative;
  overflow: hidden;
  max-width: 960px;
  margin: 20px auto 0;
  transition: box-shadow var(--transition), transform var(--transition);
}

.get-started-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #38BDF8, #1A4FBF, #7C3AED);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  opacity: 0.85;
}

/* --- Segmented Tab Switcher --- */
.get-started-switcher-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.get-started-switcher {
  display: inline-flex;
  padding: 5px;
  background: rgba(220, 230, 245, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
  gap: 4px;
}

.switcher-tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.switcher-tab:hover {
  color: var(--text-primary);
}

.switcher-tab.active {
  background: #ffffff;
  color: var(--blue-mid);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15), 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* --- Tab Panels --- */
.get-started-panel {
  display: none;
}

.get-started-panel.active {
  display: block;
  animation: panelFadeIn 0.35s ease forwards;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lead-form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.lead-form-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.08), rgba(56, 189, 248, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(37, 99, 235, 0.15);
  flex-shrink: 0;
}

.lead-form-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.lead-form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* --- Form Fields --- */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lead-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.lead-form-group-full {
  grid-column: 1 / -1;
}

.lead-form-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.required-star {
  color: var(--red);
  font-weight: 700;
}

.optional-tag {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.78rem;
}

.lead-form-input,
.lead-form-select,
.lead-form-textarea {
  width: 100%;
  padding: 13px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.lead-form-input::placeholder,
.lead-form-textarea::placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.lead-form-input:hover,
.lead-form-select:hover,
.lead-form-textarea:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.98);
}

.lead-form-input:focus,
.lead-form-select:focus,
.lead-form-textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  background: #fff;
}

/* Select dropdown arrow */
.lead-form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%236C6C70' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.lead-form-textarea {
  resize: vertical;
  min-height: 85px;
  max-height: 180px;
}

/* Validation error state */
.lead-form-input.error,
.lead-form-select.error,
.lead-form-textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.1);
}

.lead-form-error {
  font-size: 0.75rem;
  color: var(--red);
  min-height: 0;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s;
}

.lead-form-error.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- TCPA Consent Checkbox --- */
.lead-consent-group {
  margin-top: 4px;
  margin-bottom: 4px;
}

.lead-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  position: relative;
  padding: 2px 2px;
}

.lead-consent-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.lead-consent-custom-box {
  width: 17px;
  height: 17px;
  min-width: 17px;
  margin-top: 0px;
  border-radius: 5px;
  border: 1.5px solid var(--border-light);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.lead-consent-label:hover .lead-consent-custom-box {
  border-color: var(--blue-mid);
  background: #ffffff;
}

.lead-consent-checkbox:focus-visible + .lead-consent-custom-box {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.lead-consent-checkbox:checked + .lead-consent-custom-box {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.28);
}

.consent-check-icon {
  width: 10px;
  height: 8px;
  color: #ffffff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.18s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lead-consent-checkbox:checked + .lead-consent-custom-box .consent-check-icon {
  opacity: 1;
  transform: scale(1);
}

.lead-consent-checkbox.error + .lead-consent-custom-box {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.12);
}

.lead-consent-text {
  font-size: 0.74rem;
  line-height: 1.45;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.005em;
}

.lead-consent-group .lead-form-error {
  padding-left: 27px;
  margin-top: 2px;
  font-size: 0.73rem;
  line-height: 1.35;
}

/* --- Submit Button --- */
.lead-form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 30px;
  font-size: 1.02rem;
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.lead-form-submit.loading .btn-text,
.lead-form-submit.loading svg {
  opacity: 0;
}

.lead-form-submit.loading .lead-form-spinner {
  display: block;
}

.lead-form-spinner {
  display: none;
  width: 22px;
  height: 22px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top: 2.5px solid #fff;
  border-radius: 50%;
  animation: formSpin 0.7s linear infinite;
  position: absolute;
}

@keyframes formSpin {
  to { transform: rotate(360deg); }
}

/* --- Success State --- */
.lead-form-success {
  text-align: center;
  padding: 40px 20px;
  animation: successFadeIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.success-checkmark-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
}

.success-checkmark {
  width: 72px;
  height: 72px;
}

.success-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: successStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.15s forwards;
}

.success-check {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: successStroke 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes successStroke {
  to { stroke-dashoffset: 0; }
}

.success-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.success-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}

/* --- Cal.com Embed Card & Container --- */
.cal-embed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.cal-embed-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cal-timezone-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid var(--border-light);
  border-radius: 30px;
  padding: 7px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.cal-timezone-wrap:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.cal-timezone-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-mid);
  white-space: nowrap;
}

.cal-timezone-select {
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
  padding-right: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%231D4ED8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  -webkit-appearance: none;
  appearance: none;
}

#get-started,
.get-started-section {
  scroll-margin-top: 85px !important;
}

.cal-embed-container {
  border-radius: 16px;
  overflow: hidden;
  height: 440px;
  min-height: 440px;
  max-height: 440px;
  position: relative;
  background: transparent;
  display: flex;
  justify-content: center;
}

.cal-embed-container iframe {
  border-radius: 16px !important;
  height: 490px !important;
  width: 100% !important;
  max-width: 820px;
  border: none !important;
  margin-bottom: -50px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Loading state for Cal embed */
.cal-embed-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 440px;
  width: 100%;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cal-loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(26, 79, 191, 0.12);
  border-top: 3px solid var(--blue-mid);
  border-radius: 50%;
  animation: formSpin 0.8s linear infinite;
}

/* ===============================================
   RESPONSIVE — GET STARTED SECTION
   =============================================== */

@media (max-width: 768px) {
  #get-started,
  .get-started-section,
  .get-started-card {
    scroll-margin-top: 80px !important;
  }
  .get-started-card {
    padding: 24px 16px;
    border-radius: var(--radius);
  }
  .get-started-switcher {
    width: 100%;
  }
  .switcher-tab {
    flex: 1;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  .lead-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .lead-form-header,
  .cal-embed-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .cal-embed-container {
    height: auto;
    min-height: 540px;
    max-height: none;
    overflow: visible;
  }
  .cal-embed-container iframe {
    height: 560px !important;
    min-height: 560px !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 480px) {
  .get-started-card {
    padding: 20px 12px;
    scroll-margin-top: 90px;
  }
  .switcher-tab {
    padding: 9px 10px;
    font-size: 0.8rem;
    gap: 6px;
  }
  .switcher-tab svg {
    width: 15px;
    height: 15px;
  }
  .lead-form-title {
    font-size: 1.08rem;
  }
  .lead-form-input,
  .lead-form-select,
  .lead-form-textarea {
    padding: 11px 14px;
    font-size: 0.88rem;
  }
  .lead-form-submit {
    padding: 14px 20px;
    font-size: 0.92rem;
  }
  .lead-consent-group {
    margin-top: 2px;
    margin-bottom: 4px;
  }
  .lead-consent-label {
    gap: 10px;
    padding: 2px 2px;
  }
  .lead-consent-custom-box {
    width: 17px;
    height: 17px;
    min-width: 17px;
    margin-top: 0px;
  }
  .lead-consent-text {
    font-size: 0.72rem;
    line-height: 1.42;
  }
  .lead-consent-group .lead-form-error {
    padding-left: 27px;
    font-size: 0.72rem;
  }
  .cal-timezone-wrap {
    width: 100%;
    justify-content: space-between;
  }
  .cal-embed-container {
    height: auto;
    min-height: 540px;
    max-height: none;
    overflow: visible;
  }
  .cal-embed-container iframe {
    height: 560px !important;
    min-height: 560px !important;
    margin-bottom: 0 !important;
  }
  .success-title {
    font-size: 1.25rem;
  }
  .success-desc {
    font-size: 0.88rem;
  }
}

/* ===============================================
   SAAS PROMO VIDEO SHOWCASE SECTION
   Cinema VisionOS Player & Bento Feature Highlights
   =============================================== */
.badge-dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: badgePulseGreen 2s infinite ease-in-out;
}

@keyframes badgePulseGreen {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12); }
}

.saas-promo-section {
  position: relative;
  padding: 100px 0;
  z-index: 2;
  overflow: hidden;
}

.saas-promo-ambient {
  position: absolute;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.saas-ambient-1 {
  top: 15%;
  left: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, rgba(59, 130, 246, 0.06) 60%, transparent 80%);
}

.saas-ambient-2 {
  bottom: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(37, 99, 235, 0.08) 50%, transparent 80%);
}

.saas-promo-theater {
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 246, 255, 0.88) 100%);
  box-shadow: 0 24px 60px -12px rgba(26, 79, 191, 0.16), 0 4px 18px rgba(0, 0, 0, 0.04), inset 0 1.5px 0 #FFFFFF;
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  padding: 24px;
  position: relative;
  z-index: 1;
}

.saas-theater-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(26, 79, 191, 0.08);
  margin-bottom: 18px;
}

.theater-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.t-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #FF5F56; border: 0.5px solid rgba(0,0,0,0.12); }
.dot-yellow { background: #FFBD2E; border: 0.5px solid rgba(0,0,0,0.12); }
.dot-green { background: #27C93F; border: 0.5px solid rgba(0,0,0,0.12); }

.theater-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: -0.2px;
}

/* Missing Utility */
.is-hidden {
  display: none !important;
}

.theater-duration-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #1E40AF;
  padding: 4px 10px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 100px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}

/* Viewport & Player Frame */
.saas-video-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.saas-promo-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  background: #000000;
}

/* Play Button Overlay */
.video-play-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.25) 0%, rgba(2, 6, 23, 0.6) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 5;
}

.video-play-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-play-btn {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-play-btn:hover {
  transform: scale(1.08);
}

.play-btn-sonar {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.45) 0%, rgba(59, 130, 246, 0) 70%);
  animation: playSonarPulse 2.2s infinite ease-out;
  pointer-events: none;
}

@keyframes playSonarPulse {
  0% { transform: scale(0.9); opacity: 0.85; }
  100% { transform: scale(1.5); opacity: 0; }
}

.play-btn-inner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.52), inset 0 1.5px 0 rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.9);
  padding-left: 3px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.video-play-btn:hover .play-btn-inner {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.65), inset 0 1.5px 0 rgba(255, 255, 255, 0.6);
}

.play-btn-caption {
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 8px 18px;
  border-radius: 100px;
  letter-spacing: -0.1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.caption-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 0 2px rgba(52, 211, 153, 0.4);
  animation: beaconPulse 1.6s infinite;
}

@keyframes beaconPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* Video Control Bar */
.video-control-bar {
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 6;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-control-bar.v-ctrl-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
}

.v-ctrl-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.v-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #60A5FA;
}

.v-ctrl-btn:active {
  transform: scale(0.94);
}

.v-progress-container {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.v-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #3B82F6 0%, #60A5FA 100%);
  border-radius: 10px;
  transition: width 0.1s linear;
}

.v-time-display {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Fullscreen Mode Fixes */
:fullscreen .saas-video-viewport,
:-webkit-full-screen .saas-video-viewport {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

:fullscreen .saas-promo-video-element,
:-webkit-full-screen .saas-promo-video-element {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  background: #000000;
}

:fullscreen .video-control-bar,
:-webkit-full-screen .video-control-bar {
  bottom: 24px;
  left: 32px;
  right: 32px;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.9);
  padding: 10px 18px;
}

/* Streamlined Quick Feature Pills (Uncrowded & Clean) */
.promo-quick-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.quick-feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 79, 191, 0.1);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: 0 2px 8px rgba(26, 79, 191, 0.04);
  transition: all 0.2s ease;
}

.quick-feat-pill:hover {
  background: #FFFFFF;
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 4px 14px rgba(26, 79, 191, 0.08);
}

/* Promo Minimal Footer */
.saas-promo-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 79, 191, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.promo-footer-text span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Responsive Mobile Rules */
@media (max-width: 768px) {
  .saas-promo-section {
    padding: 60px 0;
  }
  .saas-promo-theater {
    padding: 14px 12px;
    border-radius: 18px;
  }
  .saas-theater-header {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .theater-title span {
    font-size: 0.75rem;
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .video-play-btn {
    width: 64px;
    height: 64px;
  }
  .play-btn-inner {
    width: 58px;
    height: 58px;
  }
  .play-btn-inner svg {
    width: 22px;
    height: 22px;
  }
  .play-btn-caption {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
  .video-control-bar {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 6px 10px;
    gap: 8px;
    border-radius: 10px;
  }
  .v-time-display {
    font-size: 0.68rem;
  }
  .v-ctrl-btn {
    padding: 4px;
  }
  .promo-quick-features {
    gap: 8px;
    margin-top: 16px;
  }
  .quick-feat-pill {
    font-size: 0.74rem;
    padding: 6px 12px;
  }
  .saas-promo-footer {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    margin-top: 16px;
    padding-top: 16px;
  }
  .promo-footer-actions .btn-primary {
    width: 100%;
    justify-content: center;
  }
}