/* CallSteer Website - Premium Dark Theme */

/* ==================== CUSTOM FONTS ==================== */
@font-face {
  font-family: 'Tiempos Headline';
  src: url('Tiempos Headline-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tiempos Headline';
  src: url('Tiempos Headline-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Acumin Pro';
  src: url('Acumin-BdPro.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* JetBrains Mono for technical stats */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

.mono { font-family: var(--font-mono) !important; }

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Brand Colors */
  /* ORIGINAL: --brand: #00C8D4; --accent: #00C8D4; --accent-rgb: 0, 200, 212; */
  /* TEST: Black & white theme — white accent, color only for modules */
  --brand: #ffffff;
  --brand-dark: #cccccc;
  --brand-light: #ffffff;
  --brand-rgb: 255, 255, 255;
  --gradient-brand: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);

  /* Accent Colors (overridden per module theme) */
  --accent: #ffffff;
  --accent-dark: #cccccc;
  --accent-light: #ffffff;
  --accent-rgb: 255, 255, 255;
  --accent-light-rgb: 255, 255, 255;

  /* Backward-compatible aliases */
  --primary: var(--accent);
  --primary-dark: var(--accent-dark);
  --primary-light: var(--accent-light);
  --secondary: #6366f1;

  /* Module Palette */
  --color-sales: #10B981;
  --color-sales-rgb: 16, 185, 129;
  --color-cs: #7C3AED;
  --color-cs-rgb: 124, 58, 237;
  --color-techsupport: #D97706;
  --color-techsupport-rgb: 217, 119, 6;

  /* Background */
  --bg-dark: #000000;
  --bg-darker: #000000;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.05);

  /* Text */
  --text: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: #a0a0a0;

  /* Borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);

  /* Semantic Colors (universal, never change per theme) */
  --success: #22c55e;
  --success-rgb: 34, 197, 94;
  --warning: #f59e0b;
  --error: #ef4444;
  --error-rgb: 239, 68, 68;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  --gradient-glow: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-light-rgb), 0.1));

  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Consolas', monospace;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(var(--accent-rgb), 0.15);
  --shadow-glow-strong: 0 4px 15px rgba(var(--accent-rgb), 0.3);

  /* Border Radius — sharp enterprise corners */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
}

/* ==================== MODULE THEMES ==================== */
body.theme-sales {
  --accent: #10B981;
  --accent-dark: #059669;
  --accent-light: #34D399;
  --accent-rgb: 16, 185, 129;
  --accent-light-rgb: 52, 211, 153;
  --gradient-primary: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  --gradient-glow: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.1));
  --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.15);
  --shadow-glow-strong: 0 4px 15px rgba(16, 185, 129, 0.3);
}

body.theme-cs {
  --accent: #7C3AED;
  --accent-dark: #6D28D9;
  --accent-light: #8B5CF6;
  --accent-rgb: 124, 58, 237;
  --accent-light-rgb: 139, 92, 246;
  --gradient-primary: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 100%);
  --gradient-glow: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(139, 92, 246, 0.1));
  --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);
  --shadow-glow-strong: 0 4px 15px rgba(124, 58, 237, 0.3);
}

body.theme-techsupport {
  --accent: #D97706;
  --accent-dark: #B45309;
  --accent-light: #F59E0B;
  --accent-rgb: 217, 119, 6;
  --accent-light-rgb: 245, 158, 11;
  --gradient-primary: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
  --gradient-glow: linear-gradient(135deg, rgba(217, 119, 6, 0.2), rgba(245, 158, 11, 0.1));
  --shadow-glow: 0 0 40px rgba(217, 119, 6, 0.15);
  --shadow-glow-strong: 0 4px 15px rgba(217, 119, 6, 0.3);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ==================== LAYOUT ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  font-family: 'Acumin Pro', var(--font-sans);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ==================== NAVIGATION ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.95);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

/* Legacy SVG icon + text (kept for admin/dashboard sidebars) */
.logo-icon {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-text .brand-name {
  color: var(--text);
}

.logo-text .brand-ai {
  color: var(--brand);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn-primary {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow-strong);
}

.nav-cta .btn-primary:hover {
  box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.4);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

/* ==================== NAV DROPDOWN ==================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-arrow {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 280px;
  background: rgba(10, 10, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: 0;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Invisible bridge — wide enough so cursor can travel from any neighbor */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -40px;
  right: -40px;
  height: 14px;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 0;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  color: var(--text-secondary);
}

.nav-dropdown-item:hover {
  color: var(--text);
}

.nav-dropdown-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.nav-dropdown-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-dropdown-item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav-dropdown-item span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Module-colored dropdown items — neutral by default, colored on hover */
.nav-dropdown-sales svg,
.nav-dropdown-cs svg,
.nav-dropdown-techsupport svg { stroke: var(--text-muted); }

.nav-dropdown-sales:hover {
  background: rgba(var(--color-sales-rgb), 0.08);
  border-left-color: var(--color-sales);
}
.nav-dropdown-sales:hover svg { stroke: var(--color-sales); }
.nav-dropdown-sales:hover strong { color: var(--color-sales); }

.nav-dropdown-cs:hover {
  background: rgba(var(--color-cs-rgb), 0.08);
  border-left-color: var(--color-cs);
}
.nav-dropdown-cs:hover svg { stroke: var(--color-cs); }
.nav-dropdown-cs:hover strong { color: var(--color-cs); }

.nav-dropdown-techsupport:hover {
  background: rgba(var(--color-techsupport-rgb), 0.08);
  border-left-color: var(--color-techsupport);
}
.nav-dropdown-techsupport:hover svg { stroke: var(--color-techsupport); }
.nav-dropdown-techsupport:hover strong { color: var(--color-techsupport); }

.nav-dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 6px 12px;
}

.nav-dropdown-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted) !important;
  justify-content: center;
}

.nav-dropdown-all:hover {
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.04);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  padding: 24px;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  border-bottom: 1px solid var(--border);
}

.mobile-solutions-sub {
  display: none;
  padding: 8px 0 4px;
  gap: 6px;
  flex-direction: column;
}

.mobile-solutions-sub.active {
  display: flex;
}

.mobile-solutions-sub .mobile-sol-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid transparent;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-solutions-sub .mobile-sol-icon {
  width: 36px;
  height: 36px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-solutions-sub .mobile-sol-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke-width: 2;
}

.mobile-solutions-sub .mobile-sol-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-solutions-sub .mobile-sol-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.mobile-solutions-sub .mobile-sol-text span {
  font-size: 12px;
  color: var(--text-muted);
}

/* Module colors for mobile solution items */
.mobile-sol-sales {
  border-left-color: var(--color-sales);
}
.mobile-sol-sales .mobile-sol-icon {
  background: rgba(var(--color-sales-rgb), 0.12);
}
.mobile-sol-sales .mobile-sol-icon svg {
  stroke: var(--color-sales);
}
.mobile-sol-sales:active {
  background: rgba(var(--color-sales-rgb), 0.08);
}

.mobile-sol-cs {
  border-left-color: var(--color-cs);
}
.mobile-sol-cs .mobile-sol-icon {
  background: rgba(var(--color-cs-rgb), 0.12);
}
.mobile-sol-cs .mobile-sol-icon svg {
  stroke: var(--color-cs);
}
.mobile-sol-cs:active {
  background: rgba(var(--color-cs-rgb), 0.08);
}

.mobile-sol-techsupport {
  border-left-color: var(--color-techsupport);
}
.mobile-sol-techsupport .mobile-sol-icon {
  background: rgba(var(--color-techsupport-rgb), 0.12);
}
.mobile-sol-techsupport .mobile-sol-icon svg {
  stroke: var(--color-techsupport);
}
.mobile-sol-techsupport:active {
  background: rgba(var(--color-techsupport-rgb), 0.08);
}

.mobile-menu .nav-cta {
  margin-top: 24px;
  flex-direction: column;
}

.mobile-menu .nav-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #000;
  box-shadow: var(--shadow-glow-strong);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.25);
  filter: brightness(1.1);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: rgba(var(--accent-rgb), 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* Download for Windows Button - Teal Gradient */
.btn-download-windows {
  background: var(--gradient-primary);
  color: #000;
  padding: 14px 32px;
  border-radius: 0;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-glow-strong);
  transition: all 0.3s ease;
}

.btn-download-windows:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.25);
  filter: brightness(1.1);
}

.btn-download-windows svg {
  width: 20px;
  height: 20px;
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  /* Static fallback when JS is disabled */
  background: radial-gradient(ellipse at 30% 50%, rgba(var(--accent-rgb), 0.04), transparent 70%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(var(--accent-rgb), 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(var(--accent-light-rgb), 0.02) 0%, transparent 50%);
  animation: gradient-shift 20s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-5%, 5%); }
}

/* Inner page hero canvas — slow drifting orb animation */
#inner-hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Inner page hero glow — subtle static radial glow for visual continuity */
.pricing-hero,
.contact-hero,
.coming-soon-hero,
.about-hero {
  position: relative;
  overflow: hidden;
}

.pricing-hero::before,
.contact-hero::before,
.coming-soon-hero::before,
.about-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 140%;
  height: 160%;
  background: radial-gradient(ellipse at 25% 30%, rgba(var(--accent-rgb), 0.02) 0%, transparent 60%),
              radial-gradient(ellipse at 75% 70%, rgba(var(--accent-light-rgb), 0.01) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.pricing-hero > .container,
.contact-hero > .container,
.coming-soon-hero > .container,
.about-hero > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

/* About page narrative prose */
.about-prose {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-prose p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.about-prose p:last-child {
  margin-bottom: 0;
}

/* Values list — editorial stacked layout */
.values-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.value-item {
  padding: 24px 0 24px 24px;
  border-left: 2px solid rgba(var(--accent-rgb), 0.25);
  position: relative;
}

.value-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.value-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* About hero sizing — compact inner-page hero */
.about-hero {
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark), rgba(var(--accent-rgb), 0.02));
}

@media (max-width: 768px) {
  .about-hero {
    padding: 120px 0 48px;
  }

  .about-prose {
    padding: 0 8px;
  }

  .about-prose p {
    font-size: 15px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 110px 0 36px;
  }
}

/* About page — Founder section */
.about-founder {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-founder-photo {
  text-align: center;
}

.about-founder-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}

.about-founder-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-top: 16px;
}

.about-founder-role {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-founder-text .section-label {
  margin-bottom: 8px;
}

.about-founder-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-founder-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-founder-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text-muted);
  border-left: 3px solid rgba(255, 255, 255, 0.2);
  padding-left: 20px;
  margin-top: 24px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-founder {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .about-founder-quote {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 16px;
    text-align: center;
  }
}

/* About page — Believe section 2-col layout */
.about-believe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .about-believe-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* About page — Vision bullets */
.about-vision-bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-vision-bullets li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.about-vision-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: 0;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-badge-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 700;
  font-family: 'Acumin Pro', var(--font-sans);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Tiempos Headline', Georgia, serif;
  font-weight: 300;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(17px, 2.5vw, 22px);
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-section .hero-cta {
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero Social Proof */
.hero-proof-text {
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Hero Product Visual / Widget Mockup */
.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-widget-mockup {
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(var(--accent-rgb), 0.06);
}


.mockup-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
  gap: 4px 0;
}
.mockup-caller-info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}
.mockup-caller-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
}
.mockup-dialer-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 2px 8px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: 0.3px;
}

.mockup-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
}

.mockup-dot.live {
  background: #00D26A;
  box-shadow: 0 0 8px rgba(0, 210, 106, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(0, 210, 106, 0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 16px rgba(0, 210, 106, 0.4); }
}

.mockup-timer {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.mockup-transcript {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  padding: 14px;
  margin-bottom: 14px;
  position: relative;
  max-width: 88%;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

/* Tail — customer/prospect bubble (bottom-left) */
.mockup-transcript::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -1px;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: none;
  border-right: none;
  border-bottom-left-radius: 3px;
  transform: skewX(15deg);
}

.mockup-speaker {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}

.mockup-transcript p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

.mockup-nudge {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12) 0%, rgba(var(--accent-rgb), 0.04) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 0;
  padding: 14px;
  margin-bottom: 10px;
  animation: nudge-in 0.6s ease-out 1s both;
}

@keyframes nudge-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mockup-nudge.alt {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  animation-delay: 1.8s;
}

.mockup-nudge-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.mockup-nudge.alt .mockup-nudge-header {
  color: var(--text-muted);
}

.mockup-nudge-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 0;
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--accent);
}

.mockup-nudge-text {
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  font-weight: 500;
  margin: 0;
}

.mockup-nudge.alt .mockup-nudge-text {
  color: var(--text-secondary);
  font-weight: 400;
}

/* "Rep sees this" label on homepage nudge cards */
.mockup-nudge::after {
  content: "\2190  What your rep sees";
  display: block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(var(--accent-rgb), 0.5);
}

/* Rep response (used the nudge) */
.mockup-rep-response {
  padding: 10px 14px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid #00D26A;
  margin-top: 10px;
  position: relative;
  max-width: 88%;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Tail — rep bubble (bottom-right) */
.mockup-rep-response::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -1px;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: none;
  border-left: none;
  border-bottom-right-radius: 3px;
  transform: skewX(-15deg);
}

.mockup-rep-response .mockup-rep-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #00D26A;
  display: block;
  margin-bottom: 4px;
}

.mockup-rep-response p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
  font-style: italic;
}

/* Adopted indicator */
.mockup-adopted {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 0;
  background: rgba(0, 210, 106, 0.08);
  border: 1px solid rgba(0, 210, 106, 0.2);
  animation: mockup-fade-in 0.5s ease-out;
}

.mockup-adopted svg {
  width: 16px;
  height: 16px;
  stroke: #00D26A;
  flex-shrink: 0;
}

.mockup-adopted span {
  font-size: 12px;
  font-weight: 600;
  color: #00D26A;
  letter-spacing: 0.02em;
}

/* ========== Cycling Mockup (Homepage) ========== */

.hero-mockup-cycling {
  position: relative;
  overflow: hidden;
  /* Accent vars set by JS on transition */
  --cycle-rgb: 16, 185, 129;
  border-color: rgba(var(--cycle-rgb), 0.25);
  background: rgba(var(--cycle-rgb), 0.03);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(var(--cycle-rgb), 0.08);
  transition: border-color 0.8s ease, background 0.8s ease, box-shadow 0.8s ease;
}

.mockup-scene {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.mockup-scene.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

/* Per-scene accent color overrides for nudge elements */
.mockup-scene[data-color="124, 58, 237"] {
  --accent-rgb: 124, 58, 237;
  --accent: #7C3AED;
}

.mockup-scene[data-color="217, 119, 6"] {
  --accent-rgb: 217, 119, 6;
  --accent: #D97706;
}

.mockup-scene[data-color="16, 185, 129"] {
  --accent-rgb: 16, 185, 129;
  --accent: #10B981;
}

/* Cycling mockup — JS handles all animations dynamically via inline style.animation */

/* ========== Live Conversation Animation (Homepage) ========== */

/* Waveform + Listening indicator in mockup header */
.mockup-listening {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.4s ease;
}
.mockup-listening .ml-label {
  transition: color 0.3s ease;
}
.mockup-listening.detected .ml-label {
  color: var(--accent, var(--primary));
  font-weight: 700;
}
.mockup-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 14px;
}
.mockup-waveform .mw-bar {
  width: 2px;
  border-radius: 0;
  background: rgba(var(--accent-rgb, var(--primary-rgb)), 0.5);
  animation: mockup-wave 1.2s ease-in-out infinite;
  transform-origin: center;
}
.mockup-waveform .mw-bar:nth-child(1) { animation-delay: 0s; height: 6px; }
.mockup-waveform .mw-bar:nth-child(2) { animation-delay: 0.15s; height: 12px; }
.mockup-waveform .mw-bar:nth-child(3) { animation-delay: 0.3s; height: 8px; }
.mockup-waveform .mw-bar:nth-child(4) { animation-delay: 0.45s; height: 14px; }
.mockup-waveform .mw-bar:nth-child(5) { animation-delay: 0.6s; height: 5px; }
.mockup-listening.detected .mw-bar {
  background: rgba(var(--accent-rgb, var(--primary-rgb)), 1);
}
@keyframes mockup-wave {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

/* Typewriter cursor for homepage mockup */
.mockup-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: rgba(var(--accent-rgb, var(--primary-rgb)), 0.7);
  margin-left: 2px;
  animation: mockup-blink 0.8s step-end infinite;
  vertical-align: text-bottom;
}
@keyframes mockup-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Dynamic conversation body inside mockup */
.mockup-conv-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
}

/* Detected transcript glow */
.mockup-transcript.detected {
  border-color: rgba(var(--accent-rgb, var(--primary-rgb)), 0.4);
  box-shadow: 0 0 16px rgba(var(--accent-rgb, var(--primary-rgb)), 0.12);
}

/* Fade-in for dynamically added elements */
.mockup-fade-in {
  animation: mockup-el-appear 0.5s ease-out forwards;
}
@keyframes mockup-el-appear {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.mockup-slide-in {
  animation: mockup-el-slide 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes mockup-el-slide {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Indicator dots below mockup */
.mockup-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.mockup-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.4s ease;
  color: var(--text-muted);
  font-family: inherit;
}

.mockup-indicator:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.mockup-indicator.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot-color);
  flex-shrink: 0;
  transition: box-shadow 0.4s ease;
}

.mockup-indicator.active .indicator-dot {
  box-shadow: 0 0 8px var(--dot-color);
}

.indicator-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.mockup-indicator.active .indicator-label {
  color: #fff;
}

/* Hero Checklist (kept for solution subpages) */
.hero-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text-muted);
}

.hero-check-item .check-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.btn-icon-left {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* Hero Guarantee */
.hero-guarantee {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

.hero-guarantee::before {
  content: "";
  color: var(--success);
  margin-right: 6px;
}

/* ==================== CARDS ==================== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-highlight {
  position: relative;
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.05), transparent);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==================== FEATURES GRID ==================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.features-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.features-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Reduce gap from logo carousel to Features */
#features {
  padding-top: 60px;
  margin-top: 0;
}

/* Feature Spotlights — horizontal 2-up layout */
.feature-spotlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.feature-spotlight {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color 0.3s ease;
}

.feature-spotlight:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
}

.spotlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-rgb), 0.04));
  border-radius: var(--radius-md);
}

.spotlight-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.spotlight-text h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.spotlight-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Compact card row — 4-up, minimal style */
.features-grid-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card-compact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-left: 2px solid rgba(var(--accent-rgb), 0.2);
}

.card-compact svg {
  color: var(--accent);
  flex-shrink: 0;
}

.card-compact h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.card-compact p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .feature-spotlights {
    grid-template-columns: 1fr;
  }
  .features-grid-compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .features-grid,
  .features-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid-compact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid,
  .features-grid-3,
  .features-grid-2 {
    grid-template-columns: 1fr !important;
  }
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
  background: linear-gradient(180deg, transparent, rgba(var(--accent-rgb), 0.02), transparent);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step-text {
  font-size: 15px;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-grid::before {
    display: none;
  }
}

/* ==================== INDUSTRIES ==================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.industry-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  transform: translateY(-4px);
}

.industry-icon {
  margin-bottom: 12px;
}

.industry-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
}

.industry-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.industry-card-cta {
  border-style: dashed;
  border-color: rgba(var(--accent-rgb), 0.3);
}

.industry-card-cta:hover {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.05);
}

.industry-card-cta .industry-icon svg {
  stroke: var(--accent);
}

.industry-card-cta .industry-name {
  color: var(--accent);
  font-weight: 600;
}

.industries-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 500px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==================== STATS BANNER ==================== */
.stats-banner {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(var(--accent-rgb), 0.02);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

@media (max-width: 768px) {
  .stats-row {
    flex-wrap: wrap;
    gap: 32px;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    flex: 0 0 calc(50% - 16px);
  }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(var(--accent-rgb), 0.1), transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  font-family: 'Acumin Pro', var(--font-sans);
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ==================== FOOTER ==================== */
.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo-img {
  height: 24px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-founder {
  text-align: center;
  padding: 24px 0 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.footer-copyright {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-investor {
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.7;
  margin-top: 8px;
}

.footer-investor a {
  color: rgba(var(--accent-rgb), 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-investor a:hover {
  color: rgb(var(--accent-rgb));
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--bg-dark);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ==================== PRICING PAGE ==================== */
.pricing-hero {
  display: none; /* section removed — title folded into slider section */
}

.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
}

.pricing-toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  cursor: pointer;
}

.pricing-toggle-label.active {
  color: var(--text);
}

.pricing-toggle {
  position: relative;
  width: 60px;
  height: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-toggle::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.pricing-toggle.monthly::after {
  transform: translateX(28px);
}

.best-value-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
}

.pricing-message {
  max-width: 500px;
  margin: 24px auto 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
}

.pricing-card.featured {
  background: var(--gradient-glow);
  border-color: rgba(var(--accent-rgb), 0.3);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--gradient-primary);
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  color: #000;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.pricing-card-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.pricing-card-seats {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-top: 4px;
}

.pricing-card-price {
  margin-top: 24px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--text);
}

.pricing-amount .currency {
  font-size: 24px;
  font-weight: 600;
  vertical-align: super;
}

.pricing-period {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-billing-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

.pricing-annual-total {
  font-size: 11px;
  color: var(--accent);
  margin-top: 4px;
  font-weight: 500;
}

.pricing-card-features {
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-feature svg {
  width: 18px;
  height: 18px;
  stroke: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .btn {
  width: 100%;
}

@media (max-width: 900px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card.featured {
    transform: none;
    order: -1;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
}

/* ==================== GUARANTEE BANNER ==================== */
.guarantee-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-rgb), 0.05));
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: var(--radius-lg);
  margin-top: 48px;
}

.guarantee-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.guarantee-icon svg {
  color: var(--accent);
}

.guarantee-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guarantee-text strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.guarantee-text span {
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .guarantee-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

/* ==================== NEW COMPARISON TABLE ==================== */
.comparison-section {
  background: var(--bg-dark);
  padding: 80px 0;
}

.comparison-table-wrapper {
  max-width: 900px;
  margin: 60px auto 0;
  overflow-x: auto;
}

.comparison-table-new {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table-new th,
.comparison-table-new td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.comparison-table-new thead th {
  background: rgba(0, 0, 0, 0.3);
  font-weight: 600;
  font-size: 16px;
}

.comparison-table-new th.gong-col {
  color: var(--text-muted);
  text-align: center;
}

.comparison-table-new th.callsteer-col {
  text-align: center;
}

.comparison-table-new th.callsteer-col.highlight {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-rgb), 0.05));
  color: var(--accent);
}

.comparison-table-new td.feature-name {
  font-weight: 600;
  color: var(--text);
  background: rgba(0, 0, 0, 0.15);
}

.comparison-table-new td.gong-col {
  text-align: center;
  color: var(--text-secondary);
}

.comparison-table-new td.gong-col.negative {
  color: #ef4444;
}

.comparison-table-new td.callsteer-col {
  text-align: center;
  background: rgba(var(--accent-rgb), 0.03);
}

.comparison-table-new td.callsteer-col.winner {
  color: var(--accent);
  font-weight: 600;
}

.comparison-table-new .check-mark {
  color: var(--accent);
  margin-left: 4px;
}

.comparison-table-new tbody tr:last-child td {
  border-bottom: none;
}

.comparison-cta {
  text-align: center;
  margin-top: 48px;
}

.comparison-summary {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .comparison-table-new th,
  .comparison-table-new td {
    padding: 14px 12px;
    font-size: 14px;
  }
}

/* ==================== COMING SOON PAGE ==================== */
.coming-soon-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  text-align: center;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--warning);
  margin-bottom: 32px;
}

.modules-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 60px auto 0;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  opacity: 0.5;
}

.module-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.module-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent);
}

.module-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.module-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.module-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.module-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.module-feature svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
}

/* Featured Module Card */
.module-card-featured {
  border-color: rgba(var(--accent-rgb), 0.3);
  background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.05), transparent);
}

.module-card-featured::before {
  opacity: 1;
}

/* AI Post-Mortem Preview Card */
.pm-preview-card {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(145deg, #0d1117, #161b22);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: var(--radius-md);
  text-align: center;
}

.pm-preview-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 6px 12px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 0;
  display: inline-block;
  color: #000;
}

.pm-preview-score {
  font-size: 56px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 20px rgba(var(--accent-rgb), 0.4);
}

.pm-preview-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  margin-bottom: 16px;
}

.pm-preview-insights {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pm-preview-good,
.pm-preview-improve {
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-preview-good {
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.pm-preview-improve {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.notify-section {
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.notify-content {
  max-width: 500px;
  margin: 0 auto;
}

.notify-form {
  max-width: 400px;
  margin: 40px auto 0;
}

.notify-input-group {
  display: flex;
  gap: 12px;
}

.notify-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text);
  transition: all 0.2s ease;
}

.notify-input::placeholder {
  color: var(--text-muted);
}

.notify-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

@media (max-width: 900px) {
  .modules-preview {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .notify-input-group {
    flex-direction: column;
  }

  .pm-preview-score {
    font-size: 48px;
  }
}

/* ==================== CONTACT PAGE ==================== */
.contact-hero {
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 24px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  padding: 40px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: var(--radius-md);
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.contact-method-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-method-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  min-height: 300px;
}

.form-success-state .success-icon {
  color: var(--accent);
  margin-bottom: 24px;
}

.form-success-state h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.form-success-state p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 320px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text);
  transition: all 0.2s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-select option {
  background: var(--bg-dark);
  color: var(--text);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    padding: 0;
    text-align: center;
  }

  .contact-methods {
    align-items: center;
  }

  .contact-form-card [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .contact-form-card {
    padding: 32px 24px 28px !important;
  }
}

/* ==================== MANAGER DASHBOARD SECTION ==================== */
.manager-dashboard-section {
  background: var(--bg-dark);
}

.mgr-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mgr-text .section-title {
  margin-bottom: 24px;
}

.mgr-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mgr-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.mgr-list li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.mgr-list li strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.mgr-list li span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Dashboard Mockup Visual */
.mgr-dashboard-mock {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.mgr-mock-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.mgr-mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mgr-mock-title {
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.mgr-mock-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mgr-mock-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mgr-mock-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mgr-mock-stat {
  text-align: center;
  padding: 16px;
  background: rgba(var(--accent-rgb), 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--accent-rgb), 0.1);
}

.mgr-mock-stat-num {
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--accent);
  line-height: 1;
}

.mgr-mock-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.mgr-mock-bars {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 4px;
}

.mgr-mock-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mgr-mock-bar-row span {
  font-size: 12px;
  color: var(--text-muted);
  width: 64px;
  flex-shrink: 0;
}

.mgr-mock-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0;
  overflow: hidden;
}

.mgr-mock-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), rgba(var(--accent-rgb), 0.6));
  border-radius: 0;
}

@media (max-width: 768px) {
  .mgr-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mgr-text .section-title {
    text-align: center !important;
  }
  .mgr-text .section-label {
    text-align: center;
    display: block;
  }
  .mgr-text .btn {
    display: block;
    text-align: center;
  }
}

/* ==================== POST-MORTEM COACHING SECTION ==================== */
.post-mortem-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(var(--accent-rgb), 0.03) 100%);
}

.post-mortem-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.post-mortem-text .section-title {
  text-align: left;
}

.post-mortem-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 24px 0 32px;
}

.post-mortem-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.post-mortem-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-secondary);
}

.post-mortem-features li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.post-mortem-visual {
  display: flex;
  justify-content: center;
}

/* AI Coaching Card - Stunning Design */
.post-mortem-card {
  background: linear-gradient(145deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 0;
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  box-shadow:
    0 0 30px rgba(var(--accent-rgb), 0.1),
    0 25px 50px rgba(0, 0, 0, 0.4);
}

.pm-card-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.2);
}

.pm-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 0;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pm-card-body {
  padding: 32px 24px;
}

.pm-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}

/* AI Coaching Score - Showstopper */
.pm-score-circle {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--accent);
  text-shadow:
    0 0 20px rgba(var(--accent-rgb), 0.4),
    0 0 40px rgba(var(--accent-rgb), 0.2),
    0 0 60px rgba(var(--accent-rgb), 0.1);
  line-height: 1;
  letter-spacing: -2px;
  background: transparent;
  border-radius: 0;
}

.pm-score span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pm-insights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pm-insight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
}

.pm-insight svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pm-insight.good {
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}

.pm-insight.improve {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

@media (max-width: 992px) {
  .post-mortem-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .post-mortem-text .section-title {
    text-align: center;
  }

  .post-mortem-features li {
    justify-content: center;
  }

  .post-mortem-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pm-score-circle {
    font-size: 72px;
  }
}

/* ==================== FAQ SECTION ==================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question::after {
  content: '\2212';
}

.faq-question:hover {
  color: var(--accent);
}

.faq-answer {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
}

/* ==================== LOGIN PAGE ==================== */
.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
}

.login-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.login-header p {
  color: var(--text-muted);
  font-size: 15px;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  transition: all 0.2s ease;
}

.login-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
}

.forgot-link {
  font-size: 14px;
  color: var(--accent);
  transition: opacity 0.2s ease;
}

.forgot-link:hover {
  opacity: 0.8;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.login-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.login-divider span {
  padding: 0 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.social-login {
  display: flex;
  gap: 12px;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.login-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.login-footer a {
  color: var(--accent);
  font-weight: 500;
}

.login-features {
  padding-left: 40px;
}

.login-features h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-size: 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-minimal {
  padding: 24px 0;
}

.footer-minimal .footer-bottom {
  border-top: none;
  padding-top: 0;
}

.footer-links-inline {
  display: flex;
  gap: 24px;
}

.footer-links-inline a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links-inline a:hover {
  color: var(--accent);
}

@media (max-width: 992px) {
  .login-container {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 480px;
  }

  .login-features {
    padding-left: 0;
    text-align: center;
  }

  .feature-list li {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .login-card {
    padding: 32px 24px;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .social-login {
    flex-direction: column;
  }
}

/* ==================== LEGACY DESKTOP APP SECTION ==================== */
.legacy-app-section {
  padding: 40px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.legacy-app-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.legacy-app-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border-radius: var(--radius-md);
}

.legacy-app-icon svg {
  width: 28px;
  height: 28px;
  color: var(--text-muted);
}

.legacy-app-text {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.legacy-app-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.legacy-app-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .legacy-app-content {
    flex-direction: column;
    text-align: center;
  }

  .legacy-app-text {
    min-width: auto;
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  /* Hide navbar CTA buttons but NOT the ones in mobile menu */
  .navbar .nav-cta {
    display: none;
  }

  .logo-img {
    height: 26px;
  }

  /* Make sure mobile menu CTA is visible and styled */
  .mobile-menu .nav-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }

  .mobile-menu .nav-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
  }

  .mobile-menu .nav-cta .btn-primary {
    background: var(--gradient-primary);
    box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.4);
  }

  .mobile-menu .nav-cta .btn-ghost {
    border: 1px solid var(--accent);
    color: var(--accent);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .section {
    padding: 60px 0;
  }

  /* Hero mobile tweaks */
  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-proof-text {
    text-align: center;
  }

  .hero-visual {
    /* source order: headline first, then mockup */
  }

  .hero-widget-mockup {
    max-width: 420px;
    margin: 0 auto;
  }

  .mockup-indicators {
    gap: 6px;
    margin-top: 12px;
  }

  .mockup-indicator {
    padding: 5px 10px;
    gap: 5px;
  }

  .indicator-label {
    font-size: 11px;
  }

  .indicator-dot {
    width: 6px;
    height: 6px;
  }

  .hero-checklist {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-check-item {
    font-size: 13px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hiw-hero .hero-split .hero-cta {
    align-items: center;
    justify-content: center;
  }

  /* Features grid on mobile — override inline styles */
  .features-grid[style*="grid-template-columns: repeat(3"],
  .features-grid[style*="grid-template-columns: repeat(2"] {
    grid-template-columns: 1fr !important;
  }

  /* Container padding */
  .container {
    padding: 0 16px;
  }
}

/* Founder card mobile stack */
@media (max-width: 600px) {
  .founder-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    padding: 20px !important;
    gap: 16px !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .card {
    padding: 24px 20px;
  }

  .hero-widget-mockup {
    max-width: 100%;
    padding: 14px;
  }

  .mockup-transcript p,
  .mockup-nudge-text {
    font-size: 12px;
  }

  .mockup-indicators {
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .mockup-indicator {
    padding: 4px 8px;
  }

  .indicator-label {
    font-size: 10px;
  }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ==================== WORKS WITH SECTION - LOGO CAROUSEL ==================== */
.works-with-section {
  padding: 50px 0 30px 0;
  margin-bottom: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.works-with-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}

/* Marquee Container */
.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Bigger logos as requested - 48px height */
.logo-item svg,
.logo-item img {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.85;
  transition: all 0.3s ease;
  object-fit: contain;
}

.logo-item span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item:hover svg,
.logo-item:hover img {
  color: var(--accent);
  filter: grayscale(0%) brightness(1) drop-shadow(0 0 12px rgba(var(--accent-rgb), 0.5));
  opacity: 1;
  transform: scale(1.1);
}

.logo-item:hover span {
  color: var(--text);
  opacity: 1;
}

/* ==================== USE CASES SECTION ==================== */
.use-cases-section {
  background: linear-gradient(180deg, var(--bg-dark), rgba(var(--accent-rgb), 0.03));
}

.use-cases-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.use-case-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.use-case-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.use-case-check {
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
}

.use-case-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

/* ==================== WHO IT'S FOR SECTION ==================== */
.who-its-for-section {
  background: var(--bg-dark);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.who-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.who-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.who-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--gradient-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.who-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.who-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .who-grid {
    grid-template-columns: 1fr;
  }

  .use-cases-grid {
    flex-direction: column;
  }

  .use-case-card {
    justify-content: center;
  }

  .works-with-logos {
    gap: 16px;
  }

  .logo-item {
    padding: 12px;
  }

  .logo-item svg,
  .logo-item img {
    width: 36px;
    height: 36px;
  }
}

/* ==================== HOW IT WORKS PAGE ==================== */
.hiw-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-dark), rgba(var(--accent-rgb), 0.02));
}

/* Split hero layout for solution subpages */
.hiw-hero .hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.hiw-hero .hero-split .hero-content {
  text-align: left;
}

.hiw-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(var(--accent-rgb), 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(var(--accent-light-rgb), 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hiw-hero > .container {
  position: relative;
  z-index: 1;
}

/* Solution subpage mockups: typewriter demo body inside hero widget */
.hero-widget-mockup .hiw-demo-body {
  min-height: 280px;
  max-height: 360px;
  padding: 12px 2px 12px 2px;
  margin: 0 -2px;
}

.hero-widget-mockup .mockup-header {
  animation: sol-fade-in 0.4s ease-out 0.2s both;
}

@keyframes sol-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Solution page demo caption */
.sol-demo-caption {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin: 10px 0 0;
  font-style: italic;
  opacity: 0.7;
}

/* Detected flash for solution page mockups */
.mockup-listening.hiw-detected .ml-label {
  color: rgb(var(--sim-rgb, var(--accent-rgb)));
  font-weight: 700;
  text-shadow: 0 0 12px rgba(var(--sim-rgb, var(--accent-rgb)), 0.6);
}

/* Solution subpage hero: stack earlier than homepage so mockup isn't squished */
@media (max-width: 900px) {
  .hiw-hero .hero-split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hiw-hero .hero-split .hero-content {
    text-align: center;
  }

  .hiw-hero .hero-split .hero-visual {
    order: -1;
  }

  .hiw-hero .hero-split .hero-widget-mockup {
    max-width: 420px;
    margin: 0 auto;
  }

  .hiw-hero .hero-split .hero-cta {
    align-items: center;
    justify-content: center;
  }
}

.hiw-steps-section {
  background: var(--bg-dark);
}

.hiw-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.hiw-steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(var(--accent-rgb), 0.1));
}

.hiw-step {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.hiw-step:last-child {
  margin-bottom: 0;
}

.hiw-step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: #000;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.3);
}

.hiw-step-content {
  flex: 1;
  padding-top: 8px;
}

.hiw-step-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.hiw-step-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent);
}

.hiw-step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hiw-step-desc {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.hiw-step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hiw-feature-tag {
  padding: 6px 12px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
}

/* Flow Diagram */
.hiw-flow-section {
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.02), var(--bg-dark));
}

.hiw-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}

.hiw-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 120px;
  transition: all 0.3s ease;
}

.hiw-flow-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.hiw-flow-item-highlight {
  background: rgba(var(--accent-rgb), 0.1);
  border-color: rgba(var(--accent-rgb), 0.3);
}

.hiw-flow-item-highlight .hiw-flow-icon {
  background: var(--gradient-primary);
}

.hiw-flow-item-highlight .hiw-flow-icon svg {
  stroke: #000;
}

.hiw-flow-item span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
}

.hiw-flow-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: var(--radius-md);
}

.hiw-flow-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.hiw-flow-arrow {
  color: var(--text-muted);
}

.hiw-flow-arrow svg {
  width: 24px;
  height: 24px;
}

/* Comparison Table */
.hiw-comparison-section {
  background: var(--bg-dark);
}

.hiw-comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 0;
  -webkit-overflow-scrolling: touch;
}

.hiw-comparison-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hiw-comparison-table th,
.hiw-comparison-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.hiw-comparison-table th {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hiw-comparison-table th.col-traditional {
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.2);
}

.hiw-comparison-table th.col-callsteer {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
}

.hiw-comparison-table .feature-name {
  font-weight: 600;
  color: var(--text);
}

.hiw-comparison-table .col-traditional {
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.1);
}

.hiw-comparison-table .col-callsteer {
  background: rgba(var(--accent-rgb), 0.05);
}

.hiw-comparison-table .col-callsteer.winner {
  color: var(--accent);
  font-weight: 500;
}

.hiw-comparison-table tr:last-child td {
  border-bottom: none;
}

/* Features Grid */
.hiw-features-section {
  background: linear-gradient(180deg, var(--bg-dark), rgba(var(--accent-rgb), 0.02));
}

.hiw-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.hiw-feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.hiw-feature-card:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}

.hiw-feature-card svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.hiw-feature-card span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

@media (max-width: 900px) {
  .hiw-steps::before {
    left: 24px;
  }

  .hiw-step-number {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .hiw-step {
    gap: 20px;
  }

  .hiw-flow {
    flex-direction: column;
  }

  .hiw-flow-arrow {
    transform: rotate(90deg);
  }

  .hiw-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hiw-steps::before {
    display: none;
  }

  .hiw-step {
    flex-direction: column;
    gap: 16px;
  }

  .hiw-step-number {
    align-self: flex-start;
  }

  .hiw-features-grid {
    grid-template-columns: 1fr;
  }

  .hiw-comparison-table th,
  .hiw-comparison-table td {
    padding: 12px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hiw-comparison-table th,
  .hiw-comparison-table td {
    padding: 8px 10px;
    font-size: 11px;
  }
}

/* ==================== HIW CALL SIMULATION ==================== */
/* ==================== HIW ANIMATED DEMO ==================== */
.hiw-sim {
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.hiw-sim > .container > .section-header {
  margin-bottom: 32px;
}

/* Module indicator tabs */
.hiw-sim-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.hiw-sim-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hiw-sim-indicator:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
}

.hiw-sim-indicator.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--dot-color, rgba(255, 255, 255, 0.2));
  color: var(--text);
}

.hiw-sim-indicator.done {
  opacity: 0.5;
}

.hiw-sim-indicator .indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot-color, #fff);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.hiw-sim-indicator.active .indicator-dot {
  opacity: 1;
  box-shadow: 0 0 8px var(--dot-color, #fff);
}

.hiw-sim-indicator .indicator-label {
  letter-spacing: 0.02em;
}

/* Progress bar */
.hiw-demo-progress {
  max-width: 520px;
  margin: 0 auto 12px;
  height: 3px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.hiw-demo-progress-fill {
  width: 0%;
  height: 100%;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.8), rgba(var(--accent-rgb), 1));
  transition: width 0.6s ease;
}

/* Widget shell */
.hiw-sim-widget {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(var(--sim-rgb, var(--accent-rgb)), 0.20);
  border-radius: 0;
  backdrop-filter: blur(20px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(var(--sim-rgb, var(--accent-rgb)), 0.06);
  transition: border-color 0.8s ease, box-shadow 0.8s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Top bar */
.hiw-sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  flex-shrink: 0;
  gap: 2px 0;
}

.hiw-sim-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.hiw-sim-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00D26A;
  box-shadow: 0 0 8px rgba(0, 210, 106, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hiw-sim-listen-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.hiw-sim-listen-indicator .ml-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.hiw-sim-listen-indicator.hiw-detected .ml-label {
  color: rgba(var(--sim-rgb), 1);
  font-weight: 700;
}

.hiw-sim-caller-info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

/* Scrollable chat body */
.hiw-demo-body {
  padding: 16px 18px;
  min-height: 380px;
  max-height: 480px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}

.hiw-demo-body::-webkit-scrollbar { width: 4px; }
.hiw-demo-body::-webkit-scrollbar-track { background: transparent; }
.hiw-demo-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 4px; }
.hiw-demo-body { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.12) transparent; }

/* Caption line */
.hiw-demo-caption {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
  transition: opacity 0.3s ease;
}

/* Chat bubbles */
.hiw-demo-bubble {
  max-width: 92%;
  padding: 10px 14px;
  border-radius: 0;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(12px);
  position: relative;
}

.hiw-demo-bubble.rep {
  background: rgba(var(--sim-rgb), 0.12);
  border: 1px solid rgba(var(--sim-rgb), 0.2);
  align-self: flex-end;
  color: var(--text-secondary);
  border-bottom-right-radius: 4px;
}

/* Tail — rotated square tucked under corner */
.hiw-demo-bubble.rep::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -1px;
  width: 10px;
  height: 10px;
  background: rgba(var(--sim-rgb), 0.12);
  border: 1px solid rgba(var(--sim-rgb), 0.2);
  border-top: none;
  border-left: none;
  border-bottom-right-radius: 3px;
  transform: skewX(-15deg);
}

.hiw-demo-bubble.customer {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  align-self: flex-start;
  color: var(--text-secondary);
  border-bottom-left-radius: 4px;
}

/* Tail — rotated square tucked under corner */
.hiw-demo-bubble.customer::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -1px;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: none;
  border-right: none;
  border-bottom-left-radius: 3px;
  transform: skewX(15deg);
}

.hiw-demo-bubble-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  display: block;
}

.hiw-demo-bubble.rep .hiw-demo-bubble-label { color: rgba(var(--sim-rgb), 0.8); }
.hiw-demo-bubble.customer .hiw-demo-bubble-label { color: var(--text-muted); }

/* Detected objection bubble — glow */
.hiw-demo-bubble.detected {
  border-color: rgba(var(--sim-rgb), 0.5);
  box-shadow: 0 0 20px rgba(var(--sim-rgb), 0.15), inset 0 0 20px rgba(var(--sim-rgb), 0.05);
}

.hiw-demo-bubble.detected .hiw-demo-bubble-label { color: rgba(var(--sim-rgb), 1); }

/* Rep used the nudge */
.hiw-demo-bubble.used {
  border-left: 3px solid var(--green);
}

/* Small talk skip */
.hiw-demo-skip {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0;
  padding: 4px 0;
  letter-spacing: 2px;
}

/* AI Nudge card */
.hiw-demo-nudge {
  background: linear-gradient(135deg, rgba(var(--sim-rgb), 0.14), rgba(var(--sim-rgb), 0.04));
  border: 1px solid rgba(var(--sim-rgb), 0.4);
  border-radius: 0;
  padding: 12px 16px;
  opacity: 0;
  transform: translateX(-16px);
}

.hiw-demo-nudge-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.hiw-demo-nudge-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(var(--sim-rgb), 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hiw-demo-nudge-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 0;
  background: rgba(var(--sim-rgb), 0.15);
  color: rgba(var(--sim-rgb), 1);
}

.hiw-demo-nudge p {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

/* "Rep sees this" label on nudge cards */
.hiw-demo-nudge::after {
  content: "\2190  What your rep sees";
  display: block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(var(--sim-rgb), 0.5);
}

/* Adopted pill */
.hiw-demo-adopted {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 0;
  background: rgba(0, 210, 106, 0.06);
  border: 1px solid rgba(0, 210, 106, 0.2);
  opacity: 0;
  align-self: flex-end;
  max-width: 60%;
}

.hiw-demo-adopted svg { width: 14px; height: 14px; stroke: #00D26A; flex-shrink: 0; }
.hiw-demo-adopted span { font-size: 11px; font-weight: 600; color: #00D26A; letter-spacing: 0.02em; }

/* Outcome */
.hiw-demo-outcome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 0;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  opacity: 0;
  align-self: flex-end;
  max-width: 75%;
}

.hiw-demo-outcome svg { width: 16px; height: 16px; stroke: var(--green); flex-shrink: 0; }
.hiw-demo-outcome span { font-size: 12px; font-weight: 700; color: var(--green); }

.hiw-demo-without {
  padding: 6px 14px;
  border-radius: 0;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.15);
  border-left: 3px solid rgba(239,68,68,0.5);
  opacity: 0;
  margin-top: -2px;
}
.hiw-demo-without span {
  font-size: 11px;
  font-style: italic;
  color: rgba(239,68,68,0.7);
  line-height: 1.5;
}

/* Typewriter cursor */
.hiw-demo-cursor {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: rgba(var(--sim-rgb), 0.8);
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: hiw-blink 0.8s step-end infinite;
}

@keyframes hiw-blink {
  50% { opacity: 0; }
}

/* Animations */
@keyframes hiw-demo-appear {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hiw-demo-slide-in {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ==================== HIW TWO-COLUMN LAYOUT ==================== */
.hiw-sim-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 960px;
  margin: 0 auto;
}

.hiw-sim-widget-col {
  flex: 1 1 55%;
  min-width: 0;
}

.hiw-sim-layout .hiw-sim-widget {
  max-width: 100%;
}

/* Hood panel */
.hiw-hood-panel {
  flex: 0 0 320px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 16px;
  position: sticky;
  top: 100px;
}

.hiw-hood-panel-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hiw-hood-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 460px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.12) transparent;
}

.hiw-hood-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 16px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  opacity: 0.6;
}

/* Hood cards */
.hiw-hood-card {
  background: rgba(var(--sim-rgb, var(--accent-rgb)), 0.06);
  border: 1px solid rgba(var(--sim-rgb, var(--accent-rgb)), 0.12);
  border-radius: 0;
  padding: 12px 14px;
  opacity: 0;
}

.hiw-hood-card.active {
  opacity: 1;
}

.hiw-hood-card-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgb(var(--sim-rgb, var(--accent-rgb)));
  margin-bottom: 8px;
}

.hiw-hood-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hiw-hood-bullet {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hiw-hood-bullet svg {
  color: rgb(var(--sim-rgb, var(--accent-rgb)));
  opacity: 0.7;
}

.hiw-hood-desc {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
  margin: 0;
  opacity: 0.7;
}

/* ==================== DNA EXPLAINER SECTION ==================== */
.hiw-dna-section {
  position: relative;
}

.hiw-dna-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.hiw-dna-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 24px;
  text-align: left;
}

.hiw-dna-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: rgba(var(--cat-color-rgb, var(--accent-rgb)), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.hiw-dna-category-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--cat-color, var(--accent));
}

/* Map --cat-color to stroke — DNA categories are brand (white), not module-colored */
.hiw-dna-category-icon[style*="#ffffff"] svg { stroke: #ffffff; }
.hiw-dna-category-icon[style*="#ffffff"] { background: rgba(255, 255, 255, 0.08); }

.hiw-dna-category-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.hiw-dna-field-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hiw-dna-field-list li {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
}

.hiw-dna-field-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.4);
}

.hiw-dna-tagline {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-top: 32px;
  letter-spacing: 0.3px;
}

/* 3-step setup section */
.hiw-setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.hiw-setup-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.hiw-setup-step {
  text-align: center;
}

.hiw-setup-number {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.hiw-setup-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.hiw-setup-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.hiw-setup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.hiw-setup-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 0;
  background: rgba(var(--accent-rgb), 0.10);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .hiw-dna-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .hiw-sim-layout {
    flex-direction: column;
  }

  .hiw-hood-panel {
    flex: none;
    position: static;
    width: 100%;
  }

  .hiw-sim-widget {
    margin: 0 8px;
  }

  .hiw-sim-indicators {
    gap: 6px;
  }

  .hiw-sim-indicator {
    padding: 6px 12px;
    font-size: 12px;
  }

  .hiw-demo-body {
    min-height: 320px;
    max-height: 400px;
    padding: 14px;
  }

  .hiw-setup-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 360px;
    margin: 0 auto;
  }

  .hiw-setup-grid::before {
    display: none;
  }

  .hiw-dna-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hiw-sim-widget {
    border-radius: 0;
  }

  .hiw-demo-body {
    min-height: 280px;
    max-height: 360px;
    padding: 12px;
  }

  .hiw-demo-bubble {
    font-size: 12px;
    padding: 8px 12px;
  }

  .hiw-demo-nudge p {
    font-size: 12px;
  }

  .hiw-hood-card {
    padding: 10px 12px;
  }

  .hiw-hood-panel {
    padding: 12px;
  }

  .hiw-hood-cards {
    max-height: 320px;
  }

  .hiw-dna-tagline {
    font-size: 13px;
    padding: 0 8px;
  }

  .hiw-dna-category {
    padding: 16px;
  }

  .hiw-sim-widget {
    margin: 0;
  }
}


/* ==================== PLATFORM CHOICE CARDS ==================== */
.platform-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.platform-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 24px;
  position: relative;
}

.platform-card.recommended {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.05);
}

.platform-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--accent);
  color: #000;
  padding: 4px 12px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.platform-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
}

.platform-card > p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.platform-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.platform-card li {
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
}

.platform-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.platform-setup {
  display: block;
  font-size: 12px;
  color: var(--accent);
  margin-top: 8px;
}

/* ==================== DOWNLOAD SECTION ==================== */
.download-section {
  background: linear-gradient(180deg, var(--bg-dark), rgba(var(--accent-rgb), 0.03));
}

.download-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.download-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.download-card.primary {
  background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0.02));
  border-color: rgba(var(--accent-rgb), 0.3);
}

.download-card.primary:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(var(--accent-rgb), 0.15);
}

.download-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #000;
  padding: 6px 16px;
  border-radius: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.download-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: var(--radius-lg);
}

.download-icon-wrap svg {
  width: 36px;
  height: 36px;
  stroke: var(--accent);
}

.download-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.download-card > p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.download-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: left;
}

.download-features li {
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.download-features li:last-child {
  border-bottom: none;
}

.download-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.download-card .btn {
  width: 100%;
  justify-content: center;
  gap: 10px;
}

.download-note {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

.download-help-text {
  text-align: center;
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 700px;
  margin: 40px auto 0;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.download-help-text strong {
  color: var(--text);
}

@media (max-width: 768px) {
  .download-options {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ==================== WORKS WITH NOTE ==================== */
.works-with-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 16px;
  padding: 0 20px;
}

/* ==================== PLATFORM NOTE ==================== */
.platform-note {
  color: var(--text-secondary);
  font-size: 14px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin: 20px 0;
}

.platform-note strong {
  color: var(--text);
}

/* ==================== FOOTER DISCLAIMER ==================== */
.footer-disclaimer {
  padding: 16px 0;
  margin-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-disclaimer p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.footer-disclaimer strong {
  color: var(--text-secondary);
}

/* ==================== UTILITIES ==================== */
.text-center { text-align: center; }
.text-primary { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ==================== SOLUTIONS HERO (Visual Infographic) ==================== */
.solutions-hero {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark), rgba(var(--accent-rgb), 0.02));
}

.solutions-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(var(--accent-rgb), 0.03) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(var(--accent-light-rgb), 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.solutions-hero > .container {
  position: relative;
  z-index: 1;
}

.solutions-hero-text {
  margin-bottom: 0;
}

.solutions-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.solutions-hero-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 24px 20px 20px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.35s ease;
  backdrop-filter: blur(12px);
}

.solutions-hero-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
}

/* Module color borders & glows */
.shc-sales {
  border-color: rgba(var(--color-sales-rgb), 0.25);
}
.shc-sales:hover {
  border-color: rgba(var(--color-sales-rgb), 0.5);
  box-shadow: 0 8px 40px rgba(var(--color-sales-rgb), 0.15), 0 0 60px rgba(var(--color-sales-rgb), 0.06);
}

.shc-cs {
  border-color: rgba(var(--color-cs-rgb), 0.25);
}
.shc-cs:hover {
  border-color: rgba(var(--color-cs-rgb), 0.5);
  box-shadow: 0 8px 40px rgba(var(--color-cs-rgb), 0.15), 0 0 60px rgba(var(--color-cs-rgb), 0.06);
}

.shc-techsupport {
  border-color: rgba(var(--color-techsupport-rgb), 0.25);
}
.shc-techsupport:hover {
  border-color: rgba(var(--color-techsupport-rgb), 0.5);
  box-shadow: 0 8px 40px rgba(var(--color-techsupport-rgb), 0.15), 0 0 60px rgba(var(--color-techsupport-rgb), 0.06);
}

/* Label row */
.shc-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.shc-sales .shc-label { color: var(--color-sales); }
.shc-sales .shc-label svg { stroke: var(--color-sales); }
.shc-cs .shc-label { color: var(--color-cs); }
.shc-cs .shc-label svg { stroke: var(--color-cs); }
.shc-techsupport .shc-label { color: var(--color-techsupport); }
.shc-techsupport .shc-label svg { stroke: var(--color-techsupport); }

.shc-badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 0;
  background: rgba(var(--success-rgb), 0.15);
  color: var(--success);
  border: 1px solid rgba(var(--success-rgb), 0.3);
}

.shc-badge-soon {
  background: rgba(var(--color-techsupport-rgb), 0.15);
  color: var(--color-techsupport);
  border-color: rgba(var(--color-techsupport-rgb), 0.3);
}

/* Inner mockup */
.shc-mockup {
  flex-grow: 1;
}

.shc-transcript {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  padding: 14px;
  margin-bottom: 12px;
  text-align: left;
}

.shc-speaker {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}

.shc-transcript p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

.shc-nudge {
  border-radius: 0;
  padding: 14px;
  text-align: left;
}

.shc-sales .shc-nudge {
  background: linear-gradient(135deg, rgba(var(--color-sales-rgb), 0.12), rgba(var(--color-sales-rgb), 0.04));
  border: 1px solid rgba(var(--color-sales-rgb), 0.3);
}

.shc-cs .shc-nudge {
  background: linear-gradient(135deg, rgba(var(--color-cs-rgb), 0.12), rgba(var(--color-cs-rgb), 0.04));
  border: 1px solid rgba(var(--color-cs-rgb), 0.3);
}

.shc-techsupport .shc-nudge {
  background: linear-gradient(135deg, rgba(var(--color-techsupport-rgb), 0.12), rgba(var(--color-techsupport-rgb), 0.04));
  border: 1px solid rgba(var(--color-techsupport-rgb), 0.3);
}

.shc-nudge-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.shc-sales .shc-nudge-label { color: var(--color-sales); }
.shc-sales .shc-nudge-label svg { stroke: var(--color-sales); }
.shc-cs .shc-nudge-label { color: var(--color-cs); }
.shc-cs .shc-nudge-label svg { stroke: var(--color-cs); }
.shc-techsupport .shc-nudge-label { color: var(--color-techsupport); }
.shc-techsupport .shc-nudge-label svg { stroke: var(--color-techsupport); }

.shc-nudge p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}

.shc-cta {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  transition: opacity 0.2s;
}

.shc-sales .shc-cta { color: var(--color-sales); }
.shc-cs .shc-cta { color: var(--color-cs); }
.shc-techsupport .shc-cta { color: var(--color-techsupport); }

.solutions-hero-card:hover .shc-cta {
  opacity: 0.8;
}

/* Tablet: stack to 1-column with max-width */
@media (max-width: 900px) {
  .solutions-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 440px;
    margin: 0 auto;
  }
}

/* Small mobile tighten */
@media (max-width: 480px) {
  .solutions-hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .solutions-hero-card {
    padding: 20px 16px 16px;
  }

  .shc-transcript p,
  .shc-nudge p {
    font-size: 12px;
  }
}

/* ==================== SOLUTIONS CINEMATIC HERO CARDS ==================== */
.sol-cinematic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.sol-cinematic-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0;
  padding: 40px 32px 32px;
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.sol-cinematic-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
}

.sol-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0;
  opacity: 0.8;
  transition: opacity 0.4s ease, height 0.4s ease;
}

.sol-cinematic-card:hover .sol-card-glow {
  height: 4px;
  opacity: 1;
}

/* Module-specific glow + border colors */
.sol-card-sales .sol-card-glow { background: linear-gradient(90deg, var(--color-sales), rgba(var(--color-sales-rgb), 0.2)); }
.sol-card-sales { border-color: rgba(var(--color-sales-rgb), 0.15); }
.sol-card-sales:hover { border-color: rgba(var(--color-sales-rgb), 0.35); box-shadow: 0 20px 60px rgba(var(--color-sales-rgb), 0.12), 0 0 80px rgba(var(--color-sales-rgb), 0.04); }

.sol-card-cs .sol-card-glow { background: linear-gradient(90deg, var(--color-cs), rgba(var(--color-cs-rgb), 0.2)); }
.sol-card-cs { border-color: rgba(var(--color-cs-rgb), 0.15); }
.sol-card-cs:hover { border-color: rgba(var(--color-cs-rgb), 0.35); box-shadow: 0 20px 60px rgba(var(--color-cs-rgb), 0.12), 0 0 80px rgba(var(--color-cs-rgb), 0.04); }

.sol-card-techsupport .sol-card-glow { background: linear-gradient(90deg, var(--color-techsupport), rgba(var(--color-techsupport-rgb), 0.2)); }
.sol-card-techsupport { border-color: rgba(var(--color-techsupport-rgb), 0.15); }
.sol-card-techsupport:hover { border-color: rgba(var(--color-techsupport-rgb), 0.35); box-shadow: 0 20px 60px rgba(var(--color-techsupport-rgb), 0.12), 0 0 80px rgba(var(--color-techsupport-rgb), 0.04); }

.sol-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sol-card-icon {
  margin-bottom: 20px;
  opacity: 0.7;
}

.sol-card-sales .sol-card-icon svg { stroke: var(--color-sales); }
.sol-card-cs .sol-card-icon svg { stroke: var(--color-cs); }
.sol-card-techsupport .sol-card-icon svg { stroke: var(--color-techsupport); }

.sol-card-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  text-align: left;
}

.sol-card-sales .sol-card-title { color: var(--color-sales); }
.sol-card-cs .sol-card-title { color: var(--color-cs); }
.sol-card-techsupport .sol-card-title { color: var(--color-techsupport); }

.sol-card-headline {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 24px;
  text-align: left;
  min-height: 3.2em;
}

.sol-card-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px 0;
  min-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sol-stat-number {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.sol-card-sales .sol-stat-number { color: var(--color-sales); }
.sol-card-cs .sol-stat-number { color: var(--color-cs); }
.sol-card-techsupport .sol-stat-number { color: var(--color-techsupport); }

.sol-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.sol-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.sol-card-tags span {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.sol-card-cta {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
  text-align: left;
}

.sol-card-sales .sol-card-cta { color: var(--color-sales); }
.sol-card-cs .sol-card-cta { color: var(--color-cs); }
.sol-card-techsupport .sol-card-cta { color: var(--color-techsupport); }

.sol-cinematic-card:hover .sol-card-cta { opacity: 0.8; }

@media (max-width: 900px) {
  .sol-cinematic-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }
  .sol-cinematic-card { padding: 32px 24px 24px; }
  .sol-stat-number { font-size: 28px; }
}

@media (max-width: 480px) {
  .sol-cinematic-card { padding: 24px 20px 20px; }
  .sol-card-title { font-size: 18px; }
  .sol-card-headline { font-size: 14px; }
}

/* ==================== SOLUTIONS PAGE ==================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.solution-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.solution-card {
  cursor: pointer;
}

.solution-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.solution-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0;
}

.solution-card-badge {
  background: rgba(var(--accent-rgb), 0.15);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}


.solution-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  color: var(--accent);
}

.solution-card-icon svg {
  width: 28px;
  height: 28px;
}

.solution-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.solution-card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.solution-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  flex-grow: 1;
}

.solution-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.solution-card-features li:last-child {
  border-bottom: none;
}

.solution-card-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}

.solution-card-actions {
  display: flex;
  gap: 12px;
}

.solution-card-actions .btn {
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
}

/* ==================== MODULE-COLORED SOLUTION CARDS ==================== */
.solution-card.module-sales .solution-card-icon {
  background: rgba(var(--color-sales-rgb), 0.1);
  border-color: rgba(var(--color-sales-rgb), 0.2);
  color: var(--color-sales);
}
.solution-card.module-sales .solution-card-icon svg { stroke: var(--color-sales); }
.solution-card.module-sales .solution-card-badge {
  background: rgba(var(--color-sales-rgb), 0.15);
  color: var(--color-sales);
  border-color: rgba(var(--color-sales-rgb), 0.3);
}
.solution-card.module-sales .solution-card-features li svg { color: var(--color-sales); stroke: var(--color-sales); }
.solution-card.module-sales:hover {
  box-shadow: 0 0 40px rgba(var(--color-sales-rgb), 0.15);
  border-color: rgba(var(--color-sales-rgb), 0.3);
}
.solution-card.module-sales .solution-card-actions .btn-primary {
  background: linear-gradient(135deg, var(--color-sales), #34D399);
  border-color: var(--color-sales);
}

.solution-card.module-cs .solution-card-icon {
  background: rgba(var(--color-cs-rgb), 0.1);
  border-color: rgba(var(--color-cs-rgb), 0.2);
  color: var(--color-cs);
}
.solution-card.module-cs .solution-card-icon svg { stroke: var(--color-cs); }
.solution-card.module-cs .solution-card-badge {
  background: rgba(var(--color-cs-rgb), 0.15);
  color: var(--color-cs);
  border-color: rgba(var(--color-cs-rgb), 0.3);
}
.solution-card.module-cs .solution-card-features li svg { color: var(--color-cs); stroke: var(--color-cs); }
.solution-card.module-cs:hover {
  box-shadow: 0 0 40px rgba(var(--color-cs-rgb), 0.15);
  border-color: rgba(var(--color-cs-rgb), 0.3);
}
.solution-card.module-cs .solution-card-actions .btn-primary {
  background: linear-gradient(135deg, var(--color-cs), #8B5CF6);
  border-color: var(--color-cs);
}

.solution-card.module-techsupport .solution-card-icon {
  background: rgba(var(--color-techsupport-rgb), 0.1);
  border-color: rgba(var(--color-techsupport-rgb), 0.2);
  color: var(--color-techsupport);
}
.solution-card.module-techsupport .solution-card-icon svg { stroke: var(--color-techsupport); }
.solution-card.module-techsupport .solution-card-badge {
  background: rgba(var(--color-techsupport-rgb), 0.15);
  color: var(--color-techsupport);
  border-color: rgba(var(--color-techsupport-rgb), 0.3);
}
.solution-card.module-techsupport .solution-card-features li svg { color: var(--color-techsupport); stroke: var(--color-techsupport); }
.solution-card.module-techsupport:hover {
  box-shadow: 0 0 40px rgba(var(--color-techsupport-rgb), 0.15);
  border-color: rgba(var(--color-techsupport-rgb), 0.3);
}
.solution-card.module-techsupport .solution-card-actions .btn-primary {
  background: linear-gradient(135deg, var(--color-techsupport), #F59E0B);
  border-color: var(--color-techsupport);
}

@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Let the 3rd card span full width centered on tablet */
  .solutions-grid .solution-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solutions-grid .solution-card:nth-child(3) {
    max-width: none;
  }

  .solution-card {
    padding: 28px 20px 24px;
  }

  .solution-card-title {
    font-size: 1.2rem;
  }

  .solution-card-desc {
    font-size: 0.88rem;
  }

  .solution-card-actions {
    flex-direction: column;
  }

  .solution-card-actions .btn {
    width: 100%;
  }
}


/* ==================== PRICING FORM (Gong-style) ==================== */

.pricing-step {
  animation: pfFadeIn 0.35s ease;
}

@keyframes pfFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cycling glow hint — draws attention to options before selection */
@keyframes pfGlowCycle {
  0%, 100% { border-color: var(--border); box-shadow: none; }
  50% { border-color: rgba(var(--accent-rgb), 0.35); box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.08); }
}

.pf-option.glow-hint:nth-child(1) { animation: pfGlowCycle 3s ease-in-out infinite 0s; }
.pf-option.glow-hint:nth-child(2) { animation: pfGlowCycle 3s ease-in-out infinite 0.75s; }
.pf-option.glow-hint:nth-child(3) { animation: pfGlowCycle 3s ease-in-out infinite 1.5s; }
.pf-option.glow-hint:nth-child(4) { animation: pfGlowCycle 3s ease-in-out infinite 2.25s; }
.pf-option.glow-hint:nth-child(5) { animation: pfGlowCycle 3s ease-in-out infinite 0.5s; }
.pf-option.glow-hint:nth-child(6) { animation: pfGlowCycle 3s ease-in-out infinite 1.25s; }

.pf-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  font-family: inherit;
}

.pf-option:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-hover);
  color: #fff;
}

.pf-option.selected {
  background: rgba(var(--accent-rgb), 0.12);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.15);
}

.pf-continue {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 0;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.pf-continue:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  filter: grayscale(0.5);
}

.pf-continue:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.35);
}

/* Pricing form responsive */
@media (max-width: 768px) {
  .pricing-split-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .pricing-left-sticky {
    position: static !important;
    text-align: center;
  }

  .pricing-left-sticky ul {
    display: inline-block;
    text-align: left;
  }
}


/* ==================== PERSONA CARDS (Solutions Page) ==================== */

.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.persona-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px 28px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.persona-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.persona-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.1);
  border-radius: 0;
  margin-bottom: 20px;
}

.persona-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
}

.persona-title {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Acumin Pro', var(--font-sans);
  color: #fff;
  margin-bottom: 8px;
}

.persona-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 16px;
}

.persona-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.persona-tags span {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  padding: 4px 10px;
  border-radius: 0;
  letter-spacing: 0.3px;
}

@media (max-width: 640px) {
  .persona-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== SCROLL ANIMATIONS ==================== */

/* Fade up — default scroll animation */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children — each child delays slightly */
[data-animate-children] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate-children].visible > * {
  opacity: 1;
  transform: translateY(0);
}

[data-animate-children].visible > *:nth-child(1) { transition-delay: 0ms; }
[data-animate-children].visible > *:nth-child(2) { transition-delay: 120ms; }
[data-animate-children].visible > *:nth-child(3) { transition-delay: 240ms; }
[data-animate-children].visible > *:nth-child(4) { transition-delay: 360ms; }
[data-animate-children].visible > *:nth-child(5) { transition-delay: 480ms; }
[data-animate-children].visible > *:nth-child(6) { transition-delay: 600ms; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-animate],
  [data-animate-children] > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==================== PREMIUM OVERHAUL ==================== */

/* Sharper, thinner border system — 1px precision lines */
.navbar {
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

/* Section dividers — hairline precision */
.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Premium card hover — border brightens, no float */
.feature-card:hover,
.stat-card:hover,
.benefit-card:hover,
.industry-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

/* Precision focus states */
input:focus,
select:focus,
textarea:focus {
  outline: 1px solid rgba(var(--accent-rgb), 0.4);
  outline-offset: 0;
}

/* Premium scrollbar — thinner, sharper */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.08); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.14); }
