@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

/* ==========================================================================
   CSS Variables & Theme Setup (Wealthy, Clean, Premium B2B)
   ========================================================================== */
:root {
  /* Solid Colors */
  --color-white: #ffffff;
  --color-offwhite: #f8fafc;
  --color-pearl: #fdfbf7;

  --color-navy: #0f172a;
  --color-navy-muted: #334155;
  --color-slate: #64748b;

  --color-emerald: #10b981;
  --color-forest: #064e3b;

  --color-gold: #d4af37;
  --color-amber: #f59e0b;

  /* Premium Gradients */
  --grad-navy: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --grad-emerald: linear-gradient(135deg, #065f46 0%, #10b981 100%);
  --grad-gold: linear-gradient(135deg, #b48811 0%, #f59e0b 100%);
  --grad-blue: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  --grad-cyan: linear-gradient(135deg, #0e7490 0%, #06b6d4 100%);
  --grad-rose: linear-gradient(135deg, #be123c 0%, #f43f5e 100%);
  --grad-violet: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
  --grad-indigo: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
  --grad-sky: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
  --grad-teal: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  --grad-sunset: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
  --grad-light-blue: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  --grad-surface: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);

  /* Typography */
  --font-primary: "Manrope", sans-serif;

  /* Fluid Spacing & Sizes (Tightened for narrow screens) */
  --container-max: 1200px;
  --space-xs: clamp(0.5rem, 1.5vw, 1rem); /* 8px - 16px */
  --space-sm: clamp(0.875rem, 2vw, 1.25rem); /* 14px - 20px */
  --space-md: clamp(
    1.25rem,
    3vw,
    2rem
  ); /* 20px - 32px (Used for Card Padding) */
  --space-lg: clamp(2rem, 5vw, 4rem); /* 32px - 64px */
  --space-xl: clamp(
    3rem,
    8vw,
    6rem
  ); /* 48px - 96px (Used for Section Padding) */

  /* Structural */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  /* Shadows - Ultra Premium / Stripe-like */
  --shadow-soft:
    0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-float:
    0 20px 25px -5px rgba(15, 23, 42, 0.1),
    0 8px 10px -6px rgba(15, 23, 42, 0.1);
  --shadow-glass: 0 30px 60px rgba(15, 23, 42, 0.15);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-white);
  /* Firefox Scrollbar Support */
  scrollbar-width: thin;
  scrollbar-color: var(--color-emerald) var(--color-offwhite);
}

/* Custom Scrollbar (Webkit) */
::-webkit-scrollbar {
  width: 16px; /* Wide track for structural feel */
}
::-webkit-scrollbar-track {
  background: var(--color-offwhite);
  border-left: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: inset 2px 0 8px rgba(15, 23, 42, 0.02); /* Soft depth */
}
::-webkit-scrollbar-thumb {
  /* Vibrant 3-color brand gradient */
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-emerald) 50%, #3b82f6 100%);
  border-radius: 20px;
  /* Magic trick: thick border matching track makes the thumb look like a floating, ultra-thin line */
  border: 5px solid var(--color-offwhite); 
}
::-webkit-scrollbar-thumb:hover {
  /* Shifts colors and shrinks the border, causing the thumb to dynamically "expand" when hovered */
  background: linear-gradient(180deg, #3b82f6 0%, var(--color-gold) 50%, var(--color-emerald) 100%);
  border: 3px solid var(--color-offwhite); 
}
body {
  font-family: var(--font-primary);
  color: var(--color-navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* Typography Hierarchy */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-navy);
}

.display-1 {
  font-size: clamp(2rem, 8vw, 4rem);
}
.display-2 {
  font-size: clamp(1.75rem, 6vw, 3rem);
}
.display-3 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
}

.body-lg {
  font-size: clamp(1rem, 3vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-navy-muted);
  font-weight: 500;
}
.body-md {
  font-size: 1rem;
  line-height: 1.6;
}
.body-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Text Gradients */
.text-grad-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.1em;
  margin-right: -0.1em;
}
.text-grad-emerald {
  background: var(--grad-emerald);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.1em;
  margin-right: -0.1em;
}
.text-grad-blue {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.1em;
  margin-right: -0.1em;
}
.text-grad-cyan { background: var(--grad-cyan); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; padding-right: 0.1em; margin-right: -0.1em; }
.text-grad-rose { background: var(--grad-rose); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; padding-right: 0.1em; margin-right: -0.1em; }
.text-grad-violet { background: var(--grad-violet); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; padding-right: 0.1em; margin-right: -0.1em; }
.text-grad-indigo { background: var(--grad-indigo); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; padding-right: 0.1em; margin-right: -0.1em; }
.text-grad-sky { background: var(--grad-sky); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; padding-right: 0.1em; margin-right: -0.1em; }
.text-grad-teal { background: var(--grad-teal); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; padding-right: 0.1em; margin-right: -0.1em; }
.text-grad-sunset { background: var(--grad-sunset); -webkit-background-clip: text; -webkit-text-fill-color: transparent; color: transparent; padding-right: 0.1em; margin-right: -0.1em; }
.text-teal { color: #14b8a6; }
.text-sunset { color: #f43f5e; }

/* Elegant Underlining */
.elegant-underline {
  position: relative;
  display: inline;
  white-space: nowrap;
  z-index: 1;
}
.elegant-underline::after {
  content: "";
  position: absolute;
  left: -2%;
  bottom: -4px;
  width: 104%;
  height: 12px;
  border-bottom: 4px solid #e11d48; /* Bold Premium Red */
  border-radius: 50%;
  z-index: -1;
}
.elegant-underline-emerald::after {
  border-bottom-color: var(--color-emerald);
}
.elegant-underline-blue::after {
  border-bottom-color: #3b82f6;
}
.elegant-underline-purple::after {
  border-bottom-color: #8b5cf6;
}
.elegant-underline-orange::after {
  border-bottom-color: #f59e0b;
}
.elegant-underline-cyan::after { border-bottom-color: #06b6d4; }
.elegant-underline-rose::after { border-bottom-color: #f43f5e; }
.elegant-underline-violet::after { border-bottom-color: #8b5cf6; }
.elegant-underline-indigo::after { border-bottom-color: #6366f1; }
.elegant-underline-sky::after { border-bottom-color: #0ea5e9; }
.elegant-underline-teal::after { border-bottom-color: #14b8a6; }
.elegant-underline-sunset::after { border-bottom-color: #f43f5e; }

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}

.btn-navy {
  background: var(--grad-navy);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(10, 25, 47, 0.15);
}
.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(10, 25, 47, 0.25);
}
.btn-navy:active {
  transform: translateY(1px) scale(0.98);
}

.btn-emerald {
  background: var(--color-emerald);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}
.btn-emerald:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}
.btn-emerald:active {
  transform: translateY(1px) scale(0.98);
}

.btn-glow {
  position: relative;
  overflow: hidden;
  --mouse-x: 50%;
  --mouse-y: 50%;
}
.btn-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    80px circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.9),
    transparent 50%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-glow:hover::before {
  opacity: 1;
}
.btn-glow-text {
  position: relative;
  z-index: 1;
}

.btn-outline {
  background: var(--color-white);
  border: 1px solid rgba(15, 23, 42, 0.1);
  color: var(--color-navy);
  box-shadow: var(--shadow-soft);
}
.btn-outline:hover {
  border-color: rgba(15, 23, 42, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
}
.btn-outline:active {
  transform: translateY(1px) scale(0.98);
}

/* Premium Cards */
.premium-card {
  background: linear-gradient(145deg, #ffffff 0%, #f4f7f9 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
  padding: var(--space-md);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}

/* ==========================================================================
   Section Themes
   ========================================================================== */
.section {
  padding: var(--space-xl) 0;
  position: relative;
  box-shadow: inset 0 15px 30px -15px rgba(15, 23, 42, 0.03);
}

.section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2), transparent);
}

.section-white {
  background: linear-gradient(145deg, #ffffff 0%, rgba(59, 130, 246, 0.02) 100%);
}
.section-offwhite {
  background: linear-gradient(145deg, #f8fafc 0%, rgba(16, 185, 129, 0.03) 100%);
}
.section-navy {
  background: var(--grad-navy);
  color: var(--color-white);
  box-shadow: inset 0 20px 40px -20px rgba(0, 0, 0, 0.3);
}
.section-navy::before {
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), rgba(16, 185, 129, 0.4), transparent);
}
.section-blueprint {
  background-color: var(--color-offwhite);
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
}
.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy h4,
.section-navy h5,
.section-navy h6 {
  color: var(--color-white);
}
.section-navy .body-lg,
.section-navy .text-muted {
  color: rgba(255, 255, 255, 0.8);
}
.section-pearl {
  background: linear-gradient(145deg, #fdfdfd 0%, rgba(245, 158, 11, 0.03) 100%);
  box-shadow: inset 0 20px 40px -15px rgba(15, 23, 42, 0.05);
}
.section-pearl::before {
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), rgba(16, 185, 129, 0.2), transparent);
}

/* ==========================================================================
   Header (Floating Pill)
   ========================================================================== */
.header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: var(--container-max);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-pill);
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  z-index: 100;
  box-shadow: var(--shadow-float);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  width: 100%;
  max-width: 100%;
  top: 0;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 1rem 2rem;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.05em;
  color: var(--color-navy);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy-muted);
}
.nav-links a:hover {
  color: var(--color-navy);
}

.mobile-text { display: none; }

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .header {
    padding: 0.75rem 1rem;
  }
  .header-btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.875rem !important;
  }
  .desktop-text { display: none; }
  .mobile-text { display: inline; }
}

/* ==========================================================================
   Hero Section (Video Interface)
   ========================================================================== */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--space-xl) + 2rem);
  padding-bottom: var(--space-lg);
  background: radial-gradient(
    circle at 50% 0%,
    var(--color-white) 0%,
    var(--color-offwhite) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  /* DESKTOP TOP PADDING */
  padding-top: 4rem;
}
@media (max-width: 768px) {
  .hero-header {
    /* MOBILE TOP PADDING */
    padding-top: 3.5rem;
  }
  .hero-header .body-lg {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.hero-video-wrapper {
  position: relative;
  width: 90%;
  max-width: 850px;
  border-radius: 24px;
  background: var(--color-white);
  padding: 8px; /* Internal white border mimicking a device/window */
  box-shadow: var(--shadow-glass);
  z-index: 2;
}

.hero-video-wrapper video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 16px;
  background: var(--color-navy); /* Fallback */
}

.custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-float);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background: var(--color-white);
}
.custom-play-btn svg {
  margin-left: 6px; /* optical alignment */
}

/* Hero UI Caption */
.hero-caption {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-navy);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  z-index: 10;
}

/* Animations for floating CRM Cards */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.crm-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  animation: float 6s ease-in-out infinite;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.hero-video-wrapper.video-playing .crm-card {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.crm-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.crm-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.crm-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}
.crm-card-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-slate);
}

/* Specific Card Positioning */
.crm-card-1 {
  top: 8%;
  left: -5%;
  animation-delay: 0s;
}
.crm-card-1 .crm-card-icon {
  background: #ecfdf5;
  color: var(--color-emerald);
}

.crm-card-2 {
  bottom: 15%;
  right: -5%;
  animation-delay: -2s; /* Offsets animation sync */
}
.crm-card-2 .crm-card-icon {
  background: var(--grad-navy);
  color: var(--color-white);
}

.crm-card-3 {
  bottom: -5%;
  left: 10%;
  animation-delay: -4s;
}
.crm-card-3 .crm-card-icon {
  background: #fef3c7;
  color: var(--color-amber);
}

@media (max-width: 992px) {
  .hero-video-wrapper {
    width: 95%;
  }
  .hero-caption {
    top: -30px;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }
  .crm-card {
    transform: scale(0.85);
  }
  .crm-card-1 {
    left: -2%;
    top: -2%;
  }
  .crm-card-2 {
    right: -2%;
    bottom: 5%;
  }
  .crm-card-3 {
    display: none;
  } /* Hide 3rd on mobile to prevent clutter */
}
@media (max-width: 768px) {
  .hero-video-wrapper {
    padding: 4px;
    border-radius: 16px;
  }
  .crm-card {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }
  .crm-card-icon {
    width: 32px;
    height: 32px;
  }
  .crm-card-title {
    font-size: 0.75rem;
  }
  .crm-card-sub {
    font-size: 0.6875rem;
  }
  .crm-card-1 {
    top: -12%;
    left: -2%;
  }
  .crm-card-2 {
    bottom: -12%;
    right: -2%;
  }
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats {
  padding: var(--space-md) 0 var(--space-lg);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  align-items: center;
  text-align: center;
}

@media (min-width: 769px) {
  .stat-block:not(:last-child)::after {
    content: "";
    position: absolute;
    right: calc(var(--space-md) / -2);
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(15, 23, 42, 0.1);
  }
}

.stat-number {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-navy);
}
.stat-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-slate);
  font-weight: 700;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg) var(--space-md);
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ==========================================================================
   Problem Section (The Bottleneck)
   ========================================================================== */
.split-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-xl);
  align-items: center;
}

.split-layout-reversed {
  grid-template-columns: 7fr 5fr;
}

.split-layout-agent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
}
.split-layout-agent .split-left,
.split-layout-agent .split-right {
  max-width: 500px;
}
.split-layout-agent .split-left {
  justify-self: end;
}
.split-layout-agent .split-right {
  justify-self: start;
}
.split-layout-agent.split-layout-agent-reversed .split-left {
  justify-self: start;
}
.split-layout-agent.split-layout-agent-reversed .split-right {
  justify-self: end;
}

.content-stack {
  display: flex;
  flex-direction: column;
}
.content-stack > .eyebrow-label,
.content-stack > .badge-red-pill {
  margin-bottom: 1.25rem;
}
.content-stack > h2 {
  margin-bottom: 1rem;
}
.content-stack > p {
  margin-bottom: 2.5rem;
}

.premium-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.premium-text-link:hover {
  opacity: 0.8;
}
.premium-text-link svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.premium-text-link:hover svg {
  transform: translateX(4px);
}

@media (min-width: 993px) {
  .sticky-content {
    position: sticky;
    top: calc(var(--space-xl) + 80px);
  }
}

.split-left h2 {
  margin-bottom: 1.5rem;
}
.split-left p {
  margin-bottom: 1.5rem;
  max-width: 90%;
}

.split-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pain-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  color: var(--color-slate);
}
.pain-meta .badge {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
}

@media (max-width: 480px) {
  .pain-meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
.badge-red {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.1);
}
.badge-orange {
  background: #fff7ed;
  color: #ea580c;
  border: 1px solid rgba(234, 88, 12, 0.1);
}

.premium-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ==========================================================================
   Solution Section (The System)
   ========================================================================== */
.solution-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

/* Bento Grid Layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.bento-span-2 {
  grid-column: span 2;
}
.bento-span-3 {
  grid-column: span 3;
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-span-2,
  .bento-span-3 {
    grid-column: span 1;
  }
}

/* Premium Light Bento Cards */
.bento-card {
  background: linear-gradient(145deg, #ffffff 0%, #f4f7f9 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-glass);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  min-height: 200px;
}
.bento-card.bento-marketing {
  background: radial-gradient(
    circle at 100% 100%,
    rgba(245, 158, 11, 0.08) 0%,
    #ffffff 60%
  );
}
.bento-card.bento-crm {
  background: radial-gradient(
    circle at 100% 100%,
    rgba(16, 185, 129, 0.08) 0%,
    #ffffff 60%
  );
}
.bento-card.bento-reactivation {
  background: radial-gradient(
    circle at 100% 100%,
    rgba(59, 130, 246, 0.08) 0%,
    #ffffff 60%
  );
}
.bento-card.bento-missed-call {
  background: radial-gradient(
    circle at 100% 100%,
    rgba(236, 72, 153, 0.08) 0%,
    #ffffff 60%
  );
}
.bento-card.bento-platform {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(15, 23, 42, 0.03) 0%,
    #ffffff 100%
  );
}

@media (max-width: 768px) {
  .bento-card {
    flex-direction: column;
    min-height: auto;
  }
}

/* Content Area */
.bento-content {
  flex: 1;
  padding: 1.5rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.bento-card h3 {
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}
.bento-card p {
  color: var(--color-slate);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-weight: 500;
}

/* Icons */
.bento-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.bento-icon-orange {
  color: var(--color-amber);
  border-color: rgba(245, 158, 11, 0.2);
  background: rgba(245, 158, 11, 0.05);
}
.bento-icon-green {
  color: var(--color-emerald);
  border-color: rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.05);
}
.bento-icon-blue {
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.05);
}
.bento-icon-pink {
  color: #ec4899;
  border-color: rgba(236, 72, 153, 0.2);
  background: rgba(236, 72, 153, 0.05);
}
.bento-icon-grey {
  color: var(--color-navy);
  border-color: rgba(15, 23, 42, 0.1);
}

/* Feature Pills */
.bento-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.bento-pill {
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  background: var(--color-offwhite);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-slate);
}

/* Links */
.bento-link {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}
.bento-link:hover {
  opacity: 0.8;
}
.link-orange {
  color: var(--color-amber);
}
.link-green {
  color: var(--color-emerald);
}
.link-blue {
  color: #3b82f6;
}
.link-pink {
  color: #ec4899;
}
.link-white {
  color: var(--color-navy);
}

/* Visual Side / Floating UI Elements */
.bento-visual {
  flex: 1;
  position: relative;
  min-height: 250px;
}
.float-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow-float);
  min-width: 140px;
  z-index: 5;
  animation: float 6s ease-in-out infinite;
}
.float-stat-orange {
  border-top: 2px solid var(--color-amber);
  animation-delay: 0s;
}
.float-stat-orange-alt {
  border-top: 2px solid var(--color-amber);
  animation-delay: -3s;
}
.float-stat-green {
  border-top: 2px solid var(--color-emerald);
}
.float-stat-blue {
  border-top: 2px solid #3b82f6;
  animation-delay: -1s;
}
.float-stat-pink {
  border-top: 2px solid #ec4899;
  animation-delay: -2s;
}
.float-stat-dark {
  background: #0b0e14;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-meta {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-slate);
  margin-bottom: 0.25rem;
}
.float-stat-dark .stat-meta {
  color: rgba(255, 255, 255, 0.5);
}
.stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.float-stat-dark .stat-val {
  color: var(--color-white);
}
.stat-trend {
  font-size: 0.75rem;
  font-weight: 600;
}
.trend-green {
  color: var(--color-emerald);
}

.text-gold {
  color: var(--color-gold);
}
.text-emerald {
  color: var(--color-emerald);
}

/* Radar Background for Command Center */
.radar-bg {
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  pointer-events: none;
}
.radar-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.radar-1 {
  width: 100px;
  height: 100px;
  border-style: solid;
  background: rgba(255, 255, 255, 0.02);
}
.radar-2 {
  width: 200px;
  height: 200px;
}
.radar-3 {
  width: 300px;
  height: 300px;
}

/* Sparkline CSS */
.sparkline {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 24px;
  margin-top: 8px;
  opacity: 0.8;
}
.spark-bar {
  width: 8px;
  background: var(--color-amber);
  border-radius: 2px 2px 0 0;
}
.spark-bar:nth-child(1) {
  height: 40%;
}
.spark-bar:nth-child(2) {
  height: 60%;
}
.spark-bar:nth-child(3) {
  height: 50%;
}
.spark-bar:nth-child(4) {
  height: 80%;
}
.spark-bar:nth-child(5) {
  height: 100%;
}

/* Avatars CSS */
.avatars {
  display: flex;
  margin-left: 8px;
}
.avatar-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
  border: 2px solid #141822;
  margin-left: -8px;
}

/* Online Pulse */
.online-pulse {
  width: 8px;
  height: 8px;
  background: var(--color-emerald);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  margin-right: 6px;
}
.online-pulse::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--color-emerald);
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.5);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .bento-visual {
    min-height: auto;
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  .float-stat {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none;
    margin: 0 auto !important;
    width: 100%;
    max-width: 320px;
    padding: 1.25rem;
  }
  .radar-bg {
    display: none;
  }
}

/* ==========================================================================
   Agents Section
   ========================================================================== */
.agents-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--space-xl);
}

.agent-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.agent-btn {
  text-align: left;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.agent-btn:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.02);
}
.agent-btn.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.agent-display {
  position: relative;
  min-height: 380px;
}
.agent-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  transform: translateY(10px);
}
.agent-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
}

.agent-ui-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  color: var(--color-navy);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 1);
  border: 1px solid rgba(15, 23, 42, 0.05);
}
.agent-ui-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.agent-icon {
  width: 64px;
  height: 64px;
  background: var(--grad-light-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.15);
}

/* ==========================================================================
   Channel Coverage (Multi-Platform Messaging Support)
   ========================================================================== */
.channel-coverage-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.35rem 0.75rem;
  background: rgba(15, 23, 42, 0.025);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 100px;
  margin-top: 0.75rem;
  max-width: 100%;
}

.channel-coverage-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-slate);
  white-space: nowrap;
}

.channel-icons-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.channel-badge {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.channel-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.channel-badge-whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #16a34a;
  border: 1px solid rgba(37, 211, 102, 0.25);
}
.channel-badge-whatsapp:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: #16a34a;
}

.channel-badge-messenger {
  background: rgba(0, 132, 255, 0.1);
  color: #0084ff;
  border: 1px solid rgba(0, 132, 255, 0.25);
}
.channel-badge-messenger:hover {
  background: rgba(0, 132, 255, 0.18);
  border-color: #0084ff;
}

.channel-badge-instagram {
  background: rgba(225, 48, 108, 0.1);
  color: #e1306c;
  border: 1px solid rgba(225, 48, 108, 0.25);
}
.channel-badge-instagram:hover {
  background: rgba(225, 48, 108, 0.18);
  border-color: #e1306c;
}

.channel-badge-facebook {
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
  border: 1px solid rgba(24, 119, 242, 0.25);
}
.channel-badge-facebook:hover {
  background: rgba(24, 119, 242, 0.18);
  border-color: #1877f2;
}

.channel-badge-email {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.25);
}
.channel-badge-email:hover {
  background: rgba(59, 130, 246, 0.18);
  border-color: #2563eb;
}

.agent-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.04);
}
.agent-stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-emerald);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.agent-features {
  list-style: none;
}
.agent-features li {
  padding: 0.5rem 0;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.9375rem;
}
.agent-features li svg {
  stroke: var(--color-emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 992px) {
  .agents-layout {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .agent-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
  }
  .agent-btn {
    white-space: nowrap;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .agent-ui-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .agent-ui-card {
    padding: 1.5rem 1.125rem;
  }
  .agent-ui-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
  }
  .agent-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  .agent-icon svg {
    width: 22px;
    height: 22px;
  }
  .channel-coverage-bar {
    width: 100%;
    justify-content: flex-start;
    padding: 0.35rem 0.65rem;
    gap: 0.5rem;
  }
  .channel-coverage-label {
    font-size: 0.625rem;
  }
  .channel-icons-row {
    gap: 0.3rem;
  }
  .channel-badge {
    width: 25px;
    height: 25px;
  }
  .channel-badge svg {
    width: 13px;
    height: 13px;
  }
}

/* ==========================================================================
   What Happens Next (Replacing Reputation)
   ========================================================================== */
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.next-step-card {
  background: linear-gradient(145deg, #ffffff 0%, #f4f7f9 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-soft);
  padding: var(--space-md);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.next-step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-float);
}
.next-step-icon {
  width: 48px;
  height: 48px;
  background: var(--color-offwhite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-emerald);
  margin-bottom: 1.25rem;
}
.next-step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.next-step-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-slate);
}

@media (max-width: 992px) {
  .next-steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Demo & Booking Section
   ========================================================================== */
.cta-container {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.booking-context {
  background: var(--color-offwhite);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-navy);
  border: 1px solid rgba(15, 23, 42, 0.05);
}
.booking-context svg {
  stroke: var(--color-emerald);
}

@media (max-width: 480px) {
  .booking-context {
    border-radius: 12px;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
}

.ghl-embed {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: var(--shadow-glass);
  overflow: hidden;
  min-height: 600px;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-stacked {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: var(--space-lg);
  padding: var(--space-md);
  align-items: center;
}
@media (max-width: 768px) {
  .testimonial-stacked {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .testimonial-stacked {
    padding: 1rem;
  }
}

.testimonial-stacked .video-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-navy);
  box-shadow: var(--shadow-soft);
}

.testimonial-stacked video {
  width: 100%;
  height: auto;
  max-height: 600px;
  display: block;
  object-fit: cover;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
}

.testimonial-content h4 {
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

.testimonial-content .test-title {
  font-size: 1rem;
  color: var(--color-slate);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.testimonial-content .quote {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-navy-muted);
  font-style: italic;
  margin-bottom: 2rem;
}

.metric-box {
  background: var(--color-offwhite);
  border-left: 3px solid var(--color-emerald);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
}
.metric-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.metric-val {
  display: block;
  font-weight: 800;
  color: var(--color-navy);
  font-size: 1.125rem;
}

/* ==========================================================================
   Footer & Mobile CTA
   ========================================================================== */
.footer {
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  text-align: center;
  padding-bottom: calc(var(--space-md) + 80px);
}
.footer-text {
  color: var(--color-slate);
  font-size: 0.875rem;
  margin-top: 1.5rem;
  font-weight: 500;
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-cta-bar .btn {
  pointer-events: auto;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
  width: 100%;
}
.mobile-cta-bar.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: block;
  }
}

/* ==========================================================================
   Animations & Transitions
   ========================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggering for lists or grids */
.fade-up-delay-1 {
  transition-delay: 0.1s;
}
.fade-up-delay-2 {
  transition-delay: 0.2s;
}
.fade-up-delay-3 {
  transition-delay: 0.3s;
}

/* ==========================================================================
   New Sections (Results, Authority, Quals, Objections)
   ========================================================================== */

/* Results Section */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
@media (max-width: 992px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}
.result-card {
    padding: var(--space-lg);
    text-align: center;
}
.result-name {
    font-weight: 700;
    color: var(--color-slate);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}
.result-stat {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}
.result-desc {
    color: var(--color-navy);
    font-weight: 500;
}

/* Authority Section */
.authority-image-wrapper {
    height: 500px;
    border-radius: var(--radius-md);
}
@media (max-width: 768px) {
    .authority-image-wrapper {
        height: 350px;
    }
}

/* Qualification Section */
.qual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}
@media (max-width: 992px) {
    .qual-grid {
        grid-template-columns: 1fr;
    }
}
.qual-card {
    padding: var(--space-xl);
}
@media (max-width: 480px) {
    .qual-card {
        padding: var(--space-lg);
    }
}
.qual-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.qual-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-navy);
}
.qual-list svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Objections Section */
.objections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
@media (max-width: 992px) {
    .objections-grid {
        grid-template-columns: 1fr;
    }
}
.objection-card {
    padding: var(--space-lg);
}
.objection-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-navy);
}
.objection-card p {
    color: var(--color-navy-muted);
    line-height: 1.6;
}

/* Dynamic Card Contrast */
.section-white .premium-card,
.section-white .bento-card,
.section-white .next-step-card {
  background: var(--color-offwhite);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.section-offwhite .premium-card,
.section-offwhite .bento-card,
.section-offwhite .next-step-card,
.section-pearl .premium-card,
.section-pearl .bento-card,
.section-pearl .next-step-card {
  background: var(--color-white);
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 10px 30px rgba(15,23,42,0.03);
}

.section-white .premium-card:hover,
.section-white .bento-card:hover,
.section-white .next-step-card:hover {
  background: #f1f5f9;
}

/* Ad Results Zoom Magnifier */
.ad-zoom-lens {
  position: absolute;
  top: 0; left: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-float);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 20;
  background: var(--color-white);
}

.ad-zoom-clone {
  position: absolute;
  top: 0; left: 0;
  max-width: none !important;
  object-fit: cover;
  border-radius: 0 !important;
  pointer-events: none;
}

@media (pointer: fine) {
  #ad-results .qual-grid > div > div:first-child {
    position: relative !important;
    overflow: visible !important;
    cursor: none !important;
  }
  #ad-results .qual-grid > div > div:first-child img:not(.ad-zoom-clone) {
    border-radius: 8px;
  }
}

@media (pointer: coarse) {
  .ad-zoom-lens {
    display: none !important;
  }
}

/* ==========================================================================
   Qualification Section Upgrades
   ========================================================================== */
.qual-card {
  position: relative;
  overflow: hidden;
  padding: 2.5rem !important; 
  border-top-width: 4px !important;
  border-top-style: solid !important;
}

@media (max-width: 768px) {
  .qual-card {
    padding: 1.5rem !important;
  }
}

.qual-card.not-for {
  border-top-color: #ef4444 !important;
  background: linear-gradient(180deg, #ffffff 0%, #fef2f2 100%) !important;
}

/* Faint background red glow */
.qual-card.not-for::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.qual-card.built-for {
  border-top-color: var(--color-emerald) !important;
  background: linear-gradient(180deg, #ffffff 0%, rgba(16, 185, 129, 0.05) 100%) !important;
}

/* Faint background green glow */
.qual-card.built-for::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.qual-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: -0.02em;
  font-size: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

@media (max-width: 768px) {
  .qual-header {
    font-size: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

.qual-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qual-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.qual-list li:not(:last-child) {
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  padding-bottom: 1rem;
}

@media (max-width: 768px) {
  .qual-list {
    gap: 0.75rem;
  }
  .qual-list li {
    gap: 0.75rem;
  }
  .qual-list li:not(:last-child) {
    padding-bottom: 0.75rem;
  }
}

.qual-list li svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  padding: 10px;
  border-radius: 12px;
  box-sizing: content-box;
}

.not-for .qual-list li svg {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.built-for .qual-list li svg {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-emerald);
}

.qual-list li span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.5;
  padding-top: 4px;
}

@media (max-width: 768px) {
  .qual-list li span {
    font-size: 0.9375rem;
  }
  .qual-list li svg {
    width: 20px;
    height: 20px;
    padding: 8px;
    border-radius: 10px;
  }
}

/* ==========================================================================
   Agent Split Layout mockups (Mobile-First)
   ========================================================================== */
.split-layout-agent {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.agent-content-left {
  flex: 1;
}

.agent-content-right {
  flex: 1;
  background: rgba(15, 23, 42, 0.03); 
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

@media (min-width: 993px) {
  .split-layout-agent {
    flex-direction: row;
  }
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mock UI Base */
.mock-ui {
  width: 100%;
  max-width: 360px;
  background: #fdfdfd;
  border-radius: 24px;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.2);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-family: inherit;
  padding: var(--space-md);
}
.mock-ui.sms-ui {
  padding: var(--space-md) !important;
}
.sms-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* 1. Voice Visualizer UI */
.voice-ui {
  background: #0f172a;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.voice-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-emerald);
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--color-emerald);
  border-radius: 50%;
}

.pulsing {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.caller-id {
  text-align: center;
}

.caller-id .avatar {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: rgba(255,255,255,0.8);
}

.caller-id .name {
  font-size: 1.25rem;
  font-weight: 700;
}

.caller-id .time {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.35rem;
}

.audio-visualizer {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 48px;
}

.audio-visualizer .bar {
  width: 6px;
  background: var(--color-emerald);
  border-radius: 4px;
  animation: audioBar 1.2s infinite alternate ease-in-out;
}

@keyframes audioBar {
  0% { height: 4px; }
  100% { height: 100%; }
}

.bar-1 { animation-delay: 0.1s; }
.bar-2 { animation-delay: 0.4s; }
.bar-3 { animation-delay: 0.2s; }
.bar-4 { animation-delay: 0.6s; }
.bar-5 { animation-delay: 0.1s; }
.bar-6 { animation-delay: 0.5s; }
.bar-7 { animation-delay: 0.3s; }
.bar-8 { animation-delay: 0.7s; }
.bar-9 { animation-delay: 0.2s; }
.bar-10 { animation-delay: 0.5s; }

/* 2. SMS UI */
.sms-ui {
  display: flex;
  flex-direction: column;
}
.sms-header {
  padding: 1rem;
  border-bottom: 1px solid rgba(15,23,42,0.05);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
}
.sms-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #3b82f6; 
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}
.sms-header .name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-navy);
}
.sms-header .time {
  font-size: 0.75rem;
  color: var(--color-slate);
}
.sms-body {
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #f8fafc;
}
.sms-bubble {
  padding: 0.75rem 1rem;
  border-radius: 16px;
  font-size: 0.8125rem;
  line-height: 1.4;
  max-width: 85%;
}
.sms-bubble.lead {
  background: #e2e8f0;
  color: var(--color-navy);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.sms-bubble.ai {
  background: #3b82f6; 
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
}

/* 3. Calendar UI */
.calendar-ui {
  display: flex;
  flex-direction: column;
}
.cal-header {
  background: var(--color-navy);
  color: white;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cal-date {
  font-weight: 700;
  font-size: 0.875rem;
}
.cal-badge {
  background: rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}
.cal-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #f8fafc;
}
.appt-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border: 1px solid rgba(15,23,42,0.06);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(15,23,42,0.02);
  align-items: center;
}
.appt-time {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  width: 65px;
  flex-shrink: 0;
}
.appt-details {
  flex: 1;
}
.appt-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}
.appt-tags {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.appt-tags .tag {
  font-size: 0.625rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.tag-green {
  background: rgba(16,185,129,0.1);
  color: var(--color-emerald);
}
.tag-gold {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
}

/* ==========================================================================
   Text Element Hover Effects (Interactive Typography)
   ========================================================================== */

/* Add transition for all targeted interactive text */
.text-grad-gold,
.text-grad-emerald,
.text-grad-blue,
.stat-number,
.metric-val,
.stat-val,
strong,
b {
  transition: filter 0.2s ease-out, color 0.2s ease-out, text-shadow 0.2s ease-out, opacity 0.2s ease-out;
}

.elegant-underline::after,
.elegant-underline-emerald::after,
.elegant-underline-blue::after,
.elegant-underline-purple::after,
.elegant-underline-orange::after,
.elegant-underline-cyan::after,
.elegant-underline-rose::after,
.elegant-underline-violet::after,
.elegant-underline-indigo::after,
.elegant-underline-sky::after {
  transition: opacity 0.2s ease-out, filter 0.2s ease-out;
}

/* Gradient Text Hovers: Slight brightness increase */
.text-grad-gold:hover,
.text-grad-emerald:hover,
.text-grad-blue:hover,
.text-grad-cyan:hover,
.text-grad-rose:hover,
.text-grad-violet:hover,
.text-grad-indigo:hover,
.text-grad-sky:hover {
  filter: brightness(1.15) drop-shadow(0 2px 8px rgba(15, 23, 42, 0.1));
}

/* Elegant Underline Hovers: Subtly brighten the underline pseudo-element */
.elegant-underline:hover::after,
.elegant-underline-emerald:hover::after,
.elegant-underline-blue:hover::after,
.elegant-underline-purple:hover::after,
.elegant-underline-orange:hover::after,
.elegant-underline-cyan:hover::after,
.elegant-underline-rose:hover::after,
.elegant-underline-violet:hover::after,
.elegant-underline-indigo:hover::after,
.elegant-underline-sky:hover::after {
  filter: brightness(1.3);
  opacity: 0.8;
}

/* Stat & Metric Hovers: Subtle text-shadow for a soft glow/lift effect without layout shift */
.stat-number:hover,
.metric-val:hover,
.stat-val:hover {
  text-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

/* Bold/Strong Text Hovers: Soft color shift/glow */
p strong:hover,
p b:hover,
.body-md strong:hover,
.body-lg strong:hover,
.body-md b:hover,
.body-lg b:hover {
  color: var(--color-navy);
  text-shadow: 0 0 1px rgba(15, 23, 42, 0.25);
}

/* Inline Links Hovers: Gentle color shift and opacity for links not styled as buttons/logos */
a:not(.btn):not(.logo):not(.bento-link):not(.agent-btn) {
  transition: color 0.2s ease-out, opacity 0.2s ease-out, text-shadow 0.2s ease-out;
}
a:not(.btn):not(.logo):not(.bento-link):not(.agent-btn):hover {
  color: var(--color-emerald);
  opacity: 0.9;
  text-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   Booking Engine Pipeline Layout
   ========================================================================== */
.pipeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.pipeline-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: rgba(15, 23, 42, 0.8); /* Dark track */
  transform: translateX(-50%);
  border-radius: 4px;
  overflow: hidden;
}

.pipeline-track::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, var(--color-emerald) 50%, transparent);
  animation: data-flow 4s linear infinite;
}

@keyframes data-flow {
  0% { top: -50%; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.pipeline-node {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  width: 100%;
  z-index: 2;
}

.pipeline-node:last-child {
  margin-bottom: 0;
}

.pipeline-node:nth-child(even) {
  flex-direction: row-reverse;
}

.pipeline-icon-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--color-navy);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--color-white);
}

.pipeline-node:hover .pipeline-icon-node {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px currentColor;
  border-color: currentColor;
}

.pipeline-content {
  width: calc(50% - 60px);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.pipeline-node:hover .pipeline-content {
  transform: translateY(-5px);
  border-color: currentColor;
}

.pipeline-node:nth-child(even) .pipeline-content {
  text-align: right;
}

.pipeline-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 1rem;
}

.pipeline-title {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pipeline-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pipeline-track {
    left: 28px;
    transform: none;
  }
  
  .pipeline-node, .pipeline-node:nth-child(even) {
    flex-direction: row;
    justify-content: flex-end;
  }
  
  .pipeline-icon-node {
    left: 28px;
    transform: translate(-50%, -50%);
  }
  
  .pipeline-node:hover .pipeline-icon-node {
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .pipeline-content {
    width: calc(100% - 70px);
    text-align: left !important;
    padding: 1.5rem;
  }
}

/* ==========================================================================
   Final CTA Climax Section
   ========================================================================== */
.cta-climax-section {
  position: relative;
  background-color: #020617; /* Very dark slate/navy */
  overflow: hidden;
  padding: 8rem 0;
  z-index: 1;
}

/* Dynamic Animated Background */
.cta-climax-section::before,
.cta-climax-section::after {
  content: "";
  position: absolute;
  width: 80vw;
  height: 80vw;
  max-width: 800px;
  max-height: 800px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.15; /* Desktop opacity */
  animation: pulse-glow 8s ease-in-out infinite alternate;
}

.cta-climax-section::before {
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, var(--color-emerald) 0%, transparent 70%);
}

.cta-climax-section::after {
  bottom: -20%;
  right: -10%;
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  animation-delay: -4s;
}

/* Subtle Grid Texture */
.cta-climax-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

/* Glassmorphic Pain Recap Box */
.pain-recap-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.pain-recap-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-amber);
}

.pain-recap-text p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
  line-height: 1.4;
}

.pain-recap-text strong {
  color: var(--color-white);
  font-weight: 600;
}

/* Button Halo Wrapper */
.cta-halo-wrapper {
  display: inline-block;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.cta-halo-wrapper::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid rgba(16, 185, 129, 0.4);
  z-index: -1;
  animation: halo-pulse 3s infinite cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

/* Animations */
@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.1; }
  100% { transform: scale(1.1); opacity: 0.2; }
}

@keyframes halo-pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* Mobile Performance Overrides */
@media (max-width: 768px) {
  .cta-climax-section {
    padding: 5rem 1rem;
  }
  
  .cta-climax-section::before,
  .cta-climax-section::after {
    opacity: 0.05; /* Significantly reduced opacity on mobile */
    animation-duration: 12s; /* Much slower to save CPU */
  }
  
  .cta-halo-wrapper::before {
    animation-duration: 5s; /* Slower halo */
  }
  
  .pain-recap-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
}

/* ==========================================================================
   New Landing Page Sections Additions
   ========================================================================== */

/* Section 1: Purple Theme */
.text-grad-violet {
  background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.btn-violet {
  background: #7c3aed;
  color: #fff;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}
.btn-violet:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}
.badge-red-pill {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.text-salmon { color: #ef4444; }

/* Enhanced Radar Visual Section 1 */
.premium-radar-wrapper {
  position: relative;
  width: 450px;
  height: 450px;
  margin: 0 auto;
  display: block;
}

.premium-radar-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden; /* to contain the sweep if we use a circle */
}

/* Sweep effect */
.radar-sweep {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: conic-gradient(from 0deg, transparent 70%, rgba(167, 139, 250, 0.1) 95%, rgba(167, 139, 250, 0.3) 100%);
  border-radius: 50%;
  animation: radar-spin 4s linear infinite;
  z-index: 1;
}
@keyframes radar-spin {
  100% { transform: rotate(360deg); }
}

.radar-svg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 2;
  overflow: visible;
}
.radar-line {
  stroke: rgba(15, 23, 42, 0.04);
  stroke-width: 0.3;
  stroke-dasharray: 1 1;
}
.radar-ring {
  stroke: rgba(15, 23, 42, 0.05);
  stroke-width: 0.4;
  stroke-dasharray: 2 2;
  fill: none;
}

.radar-center-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 24%; height: 24%;
  /* background: #a78bfa; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  font-family: var(--font-primary);
  font-weight: 500;
  box-shadow: 0 0 40px rgba(167, 139, 250, 0.6), inset 0 0 15px rgba(255,255,255,0.4);
  z-index: 3;
  animation: pulse-orb-enhanced 3s ease-in-out infinite;
}
@keyframes pulse-orb-enhanced {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 30px rgba(167, 139, 250, 0.4), inset 0 0 15px rgba(255,255,255,0.4); }
  50% { transform: translate(-50%, -50%) scale(1.05); box-shadow: 0 0 50px rgba(167, 139, 250, 0.7), inset 0 0 20px rgba(255,255,255,0.6); }
}

.radar-icon {
  position: absolute;
  width: 40px; height: 40px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  z-index: 4;
  animation: float-icon 4s ease-in-out infinite;
}
.radar-icon svg { width: 18px; height: 18px; }
.ri-1 { top: 15%; left: 25%; animation-delay: 0s; }
.ri-2 { top: 10%; right: 25%; animation-delay: 1s; }
.ri-3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.ri-4 { bottom: 18%; right: 20%; animation-delay: 3s; }
@keyframes float-icon {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.radar-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px -5px rgba(0,0,0,0.08), 0 0 0 1px rgba(15,23,42,0.03);
  z-index: 5;
  animation: float-card 5s ease-in-out infinite;
}
.rc-1 { top: 25%; left: -5%; animation-delay: 0.5s; }
.rc-2 { top: 50%; right: -10%; animation-delay: 2.5s; }
.rc-3 { bottom: 8%; left: 20%; animation-delay: 1.5s; }
@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.rc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rc-content {
  display: flex; flex-direction: column; gap: 2px;
}
.rc-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-navy);
  line-height: 1.1;
}
.rc-time {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .premium-radar-wrapper {
    width: 320px;
    height: 320px;
    margin: 2rem auto;
  }
  
  .radar-card {
    padding: 8px 12px;
  }
  .rc-title {
    font-size: 0.8rem;
  }
  .rc-time {
    font-size: 0.6rem;
  }
}

/* Section 4 Review Card */
.review-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
  min-height: 250px;
  margin: 0 auto;
}
.review-card-state {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  animation: crossfade-states 10s infinite;
}
.review-card-state-2 {
  animation-delay: 5s;
}
@keyframes crossfade-states {
  0%, 45% { opacity: 1; z-index: 2; pointer-events: auto; }
  50%, 95% { opacity: 0; z-index: 1; pointer-events: none; }
  100% { opacity: 1; z-index: 2; pointer-events: auto; }
}
.review-card-inner {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; border-bottom: 1px solid rgba(15,23,42,0.05); padding-bottom: 12px; }
.review-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #fef3c7; color: #f59e0b; }
.review-title { font-weight: 700; font-size: 0.875rem; margin-bottom: 2px; }
.review-subtitle { font-size: 0.75rem; color: var(--color-slate); }
.review-text { font-size: 0.875rem; color: var(--color-navy-muted); flex: 1; }
.review-callout {
  border-radius: 8px;
  padding: 12px;
  margin-top: 12px;
  font-size: 0.75rem;
}
.review-callout-red { background: rgba(239, 68, 68, 0.05); border: 1px solid rgba(239, 68, 68, 0.1); }
.review-callout-green { background: rgba(16, 185, 129, 0.05); border: 1px solid rgba(16, 185, 129, 0.1); }
.review-callout-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-weight: 800; text-transform: uppercase; margin-bottom: 4px; }
.review-tag { font-size: 0.65rem; padding: 2px 6px; border-radius: 4px; font-weight: 800; }
.review-tag-red { background: #ef4444; color: white; }
.review-tag-green { background: #10b981; color: white; }

/* Section 5 Process Cards */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.process-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid rgba(15,23,42,0.05);
  position: relative;
}

@media (min-width: 769px) {
  .process-card:not(:last-child)::before {
    content: '';
    position: absolute;
    top: calc(2rem + 19px);
    left: calc(2rem + 60px);
    width: calc(100% + 1.5rem - 80px);
    height: 2px;
    background-image: linear-gradient(90deg, #94a3b8 50%, transparent 50%);
    background-size: 12px 2px;
    z-index: 10;
    animation: march 1s infinite linear;
  }
  .process-card.highlight::before {
    background-image: linear-gradient(90deg, rgba(255,255,255,0.6) 50%, transparent 50%);
  }
}
@keyframes march {
  0% { background-position: 0 0; }
  100% { background-position: 12px 0; }
}
.process-card.highlight {
  background: var(--color-emerald);
  color: white;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
  border-color: var(--color-emerald);
}
.process-number {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: black;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  margin-bottom: 1.5rem;
}
.process-card.highlight .process-number {
  background: black;
}
.process-card h3 {
  font-size: 1.125rem; margin-bottom: 1rem; text-transform: uppercase;
}
.process-card.highlight h3, .process-card.highlight p {
  color: white;
}
.process-card p {
  font-size: 0.875rem; color: var(--color-slate); line-height: 1.6;
}

/* Specific eyebrow labels */
.eyebrow-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow-green { color: var(--color-emerald); }
.eyebrow-blue { color: #3b82f6; }
.eyebrow-orange { color: #f59e0b; }

/* Mobile Stacking for generic reverse split */
@media (max-width: 768px) {
  .split-layout-reversed {
    display: flex;
    flex-direction: column; /* Force text first */
  }
  .split-layout-reversed .split-left {
    order: 2; /* Demo */
  }
  .split-layout-reversed .split-right {
    order: 1; /* Text */
    margin-bottom: 2rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}
