/* ==========================================================================
   Bidvora AI — Design System & Master Stylesheet
   Style: Dark SaaS (Stripe / Linear / Vercel Aesthetic)
   ========================================================================== */

:root {
  /* Design System Tokens */
  --bg-dark: #07090e;
  --bg-card: #0e131f;
  --bg-card-hover: #141b2b;
  --bg-elevated: #182033;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-glow: rgba(59, 130, 246, 0.3);

  --accent-primary: #3b82f6;
  --accent-indigo: #6366f1;
  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;
  --accent-rose: #f43f5e;
  --accent-amber: #f59e0b;

  --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #6366f1 50%, #8b5cf6 100%);
  --gradient-cyan: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  --gradient-glow: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15), transparent 70%);

  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;
  --text-white: #ffffff;

  /* Header & Scroll Specs */
  --header-height: 74px;
  --container-max: 1280px;

  /* Spacing Scale Tokens */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-section-desktop: 112px;
  --space-section-tablet: 80px;
  --space-section-mobile: 60px;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Radii & Shadows */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.15);
  --backdrop-blur: blur(16px);
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

/* Anchor Scroll Target Header Offset Fix */
[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

/* Accessibility Focus States */
:focus-visible {
  outline: 2px solid #60a5fa !important;
  outline-offset: 3px !important;
}

/* Accessibility Visually Hidden Utility */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-cyan-text {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #60a5fa;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

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

  50% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 15px var(--accent-cyan);
  }

  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

/* Global Container System */
.container {
  width: min(100% - 64px, var(--container-max));
  margin-inline: auto;
}

@media (max-width: 1024px) {
  .container {
    width: min(100% - 48px, var(--container-max));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, var(--container-max));
  }
}

/* Section Spacing System */
.section-padding {
  padding-block: var(--space-section-desktop);
}

@media (max-width: 1024px) {
  .section-padding {
    padding-block: var(--space-section-tablet);
  }
}

@media (max-width: 640px) {
  .section-padding {
    padding-block: var(--space-section-mobile);
  }
}

.section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 56px auto;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.6;
}

/* Glass Cards */
.glass-panel {
  background: rgba(14, 19, 31, 0.75);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.glass-panel:hover {
  border-color: var(--border-color-glow);
  box-shadow: var(--shadow-glow);
}

/* Primary & Secondary Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: rotate(30deg) translateY(100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

/* Microcopy */
.microcopy {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 14px;
}

.microcopy-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   Premium SaaS Header & Navigation System
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 74px;
  background: rgba(7, 9, 14, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  width: min(100% - 64px, var(--container-max));
  height: 100%;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .header-container {
    width: min(100% - 48px, var(--container-max));
  }
}

@media (max-width: 640px) {
  .header-container {
    width: min(100% - 32px, var(--container-max));
  }
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
}

.brand-ai {
  background: linear-gradient(135deg, #60a5fa 0%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 180ms ease;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.active {
  color: #ffffff;
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-cyan));
  border-radius: 2px;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 180ms ease;
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  animation: ctaAttentionPulse 3.5s infinite ease-in-out;
}

.btn-cta-primary:hover {
  transform: translateY(-1px) scale(1.03);
  filter: brightness(1.15);
  box-shadow: 0 8px 26px rgba(37, 99, 235, 0.6);
  animation-play-state: paused;
}

@keyframes ctaAttentionPulse {

  0%,
  80%,
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  }

  83% {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.75);
  }

  86% {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.75);
  }

  89% {
    transform: scale(1.05) rotate(-1.5deg);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.75);
  }

  92% {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
  }

  95% {
    transform: scale(1.01) rotate(0deg);
  }
}

/* Mobile Hamburger Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

/* Mobile Drawer & Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: rgba(10, 14, 23, 0.98);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 300ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.6);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-list {
  list-style: none;
  padding: 20px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn.full-width {
  width: 100%;
}

@media (max-width: 1024px) {

  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .site-header {
    height: 66px;
  }

  .header-container {
    width: calc(100% - 32px);
    padding: 0 16px;
  }
}

/* HERO SECTION — FULL SCREEN VIDEO (NO OVERLAID TEXT) */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: #07090e;
  overflow: hidden;
}

.hero-video-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
  filter: none;
}

/* Mobile responsive adjustments for Hero Video — Clean 100% Width */
@media (max-width: 768px) {
  .hero {
    position: relative;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    aspect-ratio: 16 / 9;
    padding: 0 !important;
    background: #07090e;
    overflow: hidden;
  }
  
  .hero-video-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
  }

  .hero-bg-video {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
    background: #07090e;
  }
}

@media (max-width: 480px) {
  .hero {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    aspect-ratio: 16 / 9;
    padding: 0 !important;
  }

  .hero-video-bg-wrap {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
  }

  .hero-bg-video {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

.hero-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(180deg, transparent 0%, #07090e 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-container-relative {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-glow-bg {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.25) 0%, rgba(99, 102, 241, 0.15) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 4.6rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-content p.hero-subtitle {
  font-size: 1.3rem;
  color: #e2e8f0;
  max-width: 820px;
  margin: 0 auto 40px auto;
  line-height: 1.65;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

/* HERO VISUAL — DASHBOARD FRAME */
.hero-visual {
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

.browser-window {
  background: #0d121d;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8), 0 0 50px rgba(59, 130, 246, 0.15);
  overflow: hidden;
}

.browser-header {
  height: 44px;
  background: #090d15;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background-color: #ff5f56;
}

.dot-yellow {
  background-color: #ffbd2e;
}

.dot-green {
  background-color: #27c93f;
}

.browser-address {
  flex: 1;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.dashboard-preview {
  padding: 24px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  min-height: 520px;
  background: #0a0e17;
}

/* Preview Sidebar */
.preview-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-item {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-item.active {
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent-primary);
  font-weight: 600;
}

/* Dashboard Main Stage */
.dashboard-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dash-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
}

.dash-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 6px;
}

.dash-stat-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.dash-stat-sub {
  font-size: 0.75rem;
  color: var(--accent-emerald);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Simulation Workflow Canvas */
.sim-stage {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sim-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.sim-status-pill {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sim-steps-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.sim-step-node {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  transition: all var(--transition-fast);
}

.sim-step-node.active {
  border-color: var(--accent-primary);
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.2);
}

.sim-step-node .node-icon {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.sim-step-node .node-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
}

/* Real-time Bid Log Terminal */
.sim-terminal {
  background: #05070a;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.825rem;
  color: #a3e635;
  line-height: 1.6;
  height: 140px;
  overflow-y: auto;
}

.log-line {
  margin-bottom: 4px;
}

.log-time {
  color: var(--text-dim);
}

.log-event {
  color: #38bdf8;
}

.log-success {
  color: #4ade80;
}

/* CAPABILITY HIGHLIGHTS SECTION & STEP FLOW */
.social-proof-section {
  padding: 48px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: radial-gradient(circle at 50% 50%, rgba(14, 19, 31, 0.9), #07090e 90%);
  position: relative;
  overflow: hidden;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.metric-item {
  position: relative;
  background: rgba(14, 19, 31, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  user-select: none;
}

.metric-item .metric-icon-box {
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.metric-item h3 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  line-height: 1.25;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.metric-item p {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.45;
  margin: 0;
}

/* Active Step Zoom & Glowing State */
.metric-item.active-step-flow {
  transform: translateY(-6px) scale(1.05);
  background: rgba(24, 32, 51, 0.95);
  border-color: var(--accent-primary);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3), 0 0 20px rgba(59, 130, 246, 0.25);
  z-index: 5;
}

.metric-item.active-step-flow .metric-icon-box {
  transform: scale(1.25);
}

.metric-item.active-step-flow h3 {
  background: linear-gradient(135deg, #60a5fa 0%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Completed Step Subtle Indicator */
.metric-item.completed-step-flow {
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.04);
}

.metric-item:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--border-color-glow);
  box-shadow: var(--shadow-glow);
}

@media (max-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .metric-item h3 {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   Redesigned AI Bidding Automation Section (#ai-bidding-automation)
   ========================================================================== */

#ai-bidding-automation {
  padding: var(--space-section-desktop) 0;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(59, 130, 246, 0.08), transparent 70%);
}

#ai-bidding-automation .section-header {
  margin-bottom: 48px;
}

.glow-badge-pill {
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #60a5fa;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
  margin-bottom: 24px;
}

.glow-badge-pill .pill-icon {
  color: #38bdf8;
  animation: spinSlow 12s linear infinite;
}

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

.bidding-h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.hero-headline-lead {
  color: #ffffff;
}

.hero-headline-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.refined-subtext {
  max-width: 720px;
  margin: 0 auto;
  color: #cbd5e1;
  font-size: 1.15rem;
  line-height: 1.7;
}

/* 3-Column Grid Layout */
.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 130px 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1200px;
  margin: 48px auto 0 auto;
}

.comparison-card {
  padding: 36px 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(16px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.comparison-card.traditional {
  background: linear-gradient(180deg, rgba(244, 63, 94, 0.05) 0%, rgba(14, 19, 31, 0.95) 100%);
  border-color: rgba(244, 63, 94, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(244, 63, 94, 0.2);
}

.comparison-card.traditional:hover {
  border-color: rgba(244, 63, 94, 0.45);
  box-shadow: 0 20px 50px rgba(244, 63, 94, 0.12);
}

.comparison-card.bidvora {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(14, 19, 31, 0.95) 100%);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(59, 130, 246, 0.3);
}

.comparison-card.bidvora:hover {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 24px 60px rgba(59, 130, 246, 0.3);
}

.comparison-card-header {
  margin-bottom: 24px;
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}

.card-header-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.traditional-badge {
  background: rgba(244, 63, 94, 0.18);
  color: #f43f5e;
  border: 1px solid rgba(244, 63, 94, 0.35);
}

.bidvora-badge {
  background: rgba(59, 130, 246, 0.18);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.25);
}

.micro-tags {
  display: flex;
  gap: 6px;
}

.micro-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.micro-tag.muted {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.micro-tag.active {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.comparison-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

/* Vertical 5-Step Timeline Flow */
.timeline-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 24px 0;
  padding-left: 0;
}

.timeline-line {
  position: absolute;
  top: 25px;
  left: 29px;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 50px);
  background: var(--border-color);
  z-index: 0;
  pointer-events: none;
}

.traditional-line {
  background: linear-gradient(180deg, rgba(244, 63, 94, 0.6) 0%, rgba(244, 63, 94, 0.15) 100%);
}

.bidvora-line {
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.8) 0%, rgba(16, 185, 129, 0.8) 100%);
}

.timeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  height: 68px;
  background: rgba(10, 14, 23, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.timeline-step:hover {
  transform: translateX(4px);
  background: rgba(20, 27, 43, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.bidvora-timeline .timeline-step {
  border-color: rgba(59, 130, 246, 0.2);
}

.bidvora-timeline .timeline-step:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.25);
  background: rgba(24, 32, 51, 0.95);
}

.step-badge {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.78rem;
  flex-shrink: 0;
  z-index: 2;
}

.step-badge.danger {
  background: #141a29;
  color: #f43f5e;
  border: 1.5px solid #f43f5e;
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.3);
}

.step-badge.success {
  background: #141a29;
  color: #34d399;
  border: 1.5px solid #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.step-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.danger-icon {
  background: rgba(244, 63, 94, 0.12);
  color: #f43f5e;
  border: 1px solid rgba(244, 63, 94, 0.25);
}

.success-icon {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.step-content {
  flex: 1;
  min-width: 0;
}

.step-content h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.step-content p {
  font-size: 0.76rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.step-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
}

.status-indicator {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.status-indicator.scanning {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
}

.status-indicator.analyzing {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.15);
}

.status-indicator.generating {
  color: #c084fc;
  background: rgba(192, 132, 252, 0.15);
}

.status-indicator.submitted {
  color: #34d399;
  background: rgba(52, 211, 153, 0.15);
}

.status-indicator.response {
  color: #60a5fa;
  background: rgba(96, 165, 250, 0.15);
}

/* Bottom Summary Boxes */
.pain-summary-box {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(244, 63, 94, 0.1);
  border: 1px solid rgba(244, 63, 94, 0.3);
  border-left: 4px solid #f43f5e;
  color: #fca5a5;
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1.45;
}

.solution-summary-box {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-left: 4px solid #34d399;
  color: #6ee7b7;
  font-weight: 500;
  font-size: 0.88rem;
  line-height: 1.45;
}

.icon-summary-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.summary-icon.danger-glow {
  background: rgba(244, 63, 94, 0.2);
  color: #f43f5e;
  border: 1px solid rgba(244, 63, 94, 0.4);
}

.summary-icon.success-glow {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

/* Center Transformation Bridge */
.transformation-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
  text-align: center;
}

.bridge-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.08em;
}

.red-tag {
  background: rgba(244, 63, 94, 0.15);
  color: #f43f5e;
  border: 1px solid rgba(244, 63, 94, 0.35);
}

.green-tag {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.dashed-vertical-line {
  position: relative;
  width: 2px;
  height: 52px;
  background: linear-gradient(180deg, rgba(244, 63, 94, 0.4) 0%, rgba(59, 130, 246, 0.6) 50%, rgba(16, 185, 129, 0.6) 100%);
  overflow: hidden;
}

.dashed-vertical-line::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(180deg, transparent, #60a5fa, #ffffff);
  box-shadow: 0 0 10px #60a5fa;
  animation: dataStream 1.8s infinite linear;
}

@keyframes dataStream {
  0% { top: -20px; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.glowing-ai-circle {
  position: relative;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.35), #070b14 75%);
  border: 2px solid #3b82f6;
  box-shadow: 0 0 35px rgba(59, 130, 246, 0.5), inset 0 0 20px rgba(59, 130, 246, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px;
  color: #60a5fa;
  animation: pulseGlow 2.5s infinite ease-in-out;
  flex-shrink: 0;
  overflow: hidden;
}

.glowing-ai-circle::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(59, 130, 246, 0.4), transparent 30%);
  animation: rotateLightBeam 4s infinite linear;
  pointer-events: none;
}

@keyframes rotateLightBeam {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.glowing-ai-circle svg {
  z-index: 2;
  color: #60a5fa;
  filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.8));
  animation: floatChip 3s ease-in-out infinite;
}

@keyframes floatChip {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.1); filter: drop-shadow(0 0 14px rgba(168, 85, 247, 0.9)); }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 28px rgba(59, 130, 246, 0.4), inset 0 0 15px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 55px rgba(168, 85, 247, 0.7), 0 0 25px rgba(59, 130, 246, 0.6), inset 0 0 30px rgba(168, 85, 247, 0.5);
    border-color: #a855f7;
    transform: scale(1.06);
  }
}

.glowing-ai-circle span {
  position: relative;
  z-index: 2;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #ffffff;
  line-height: 1.15;
  text-align: center;
  max-width: 84px;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
}

.bridge-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 140px;
  line-height: 1.4;
  margin-top: 4px;
}

/* 4-Item Value Highlight Bar */
.value-highlight-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  background: rgba(14, 19, 31, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.val-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.val-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blue-glow-icon {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.purple-glow-icon {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.emerald-glow-icon {
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.35);
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.2);
}

.amber-glow-icon {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.35);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.val-info h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.val-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .comparison-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .transformation-bridge {
    display: none;
  }

  .value-highlight-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .comparison-card {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
  }

  .card-top-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .micro-tags {
    flex-wrap: wrap;
    gap: 6px;
  }

  .timeline-line {
    left: 27px;
    transform: translateX(-50%);
  }

  .timeline-step {
    height: auto;
    min-height: 58px;
    padding: 10px 12px;
  }

  .step-content h4,
  .step-content p {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .step-title-wrap {
    flex-wrap: wrap;
    gap: 4px;
  }

  .pain-summary-box,
  .solution-summary-box {
    padding: 14px 14px;
    word-break: break-word;
    overflow-wrap: break-word;
    font-size: 0.84rem;
  }
}

@media (max-width: 640px) {
  .comparison-card {
    padding: 20px 14px;
  }

  .comparison-card h3 {
    font-size: 1.25rem;
  }

  .micro-tag {
    font-size: 0.64rem;
    padding: 2px 6px;
  }

  .timeline-line {
    left: 23px;
    transform: translateX(-50%);
  }

  .timeline-step {
    gap: 10px;
    padding: 10px;
  }

  .step-badge {
    width: 26px;
    height: 26px;
    font-size: 0.72rem;
  }

  .step-icon-wrap {
    width: 28px;
    height: 28px;
  }

  .icon-summary-box {
    gap: 10px;
  }

  .summary-icon {
    width: 32px;
    height: 32px;
  }

  .value-highlight-bar {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px;
  }
}

/* Crawlable SEO Block */
.seo-comparison-block {
  max-width: 900px;
  margin: 28px auto 0 auto;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.65;
  padding: 0 16px;
}

/* Action Button & Micro Hook */
.comparison-bottom-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-purple-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 50%, #db2777 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 1.12rem;
  padding: 16px 36px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4), 0 0 25px rgba(37, 99, 235, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-purple-gradient:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.6), 0 0 35px rgba(219, 39, 119, 0.4);
  filter: brightness(1.1);
}

.cta-trust-footnote {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* Responsive adjustment */
@media (max-width: 1024px) {
  .bidding-h2 {
    font-size: 2.6rem;
  }

  .comparison-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .transformation-bridge {
    padding: 10px 0;
  }

  .value-highlight-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .value-highlight-bar {
    grid-template-columns: 1fr;
  }

  .comparison-cta-box {
    flex-direction: column;
    text-align: center;
  }

  .cta-box-actions {
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .bidding-h2 {
    font-size: 2.2rem;
  }

  .cta-box-actions .btn {
    width: 100%;
  }
}

/* HOW IT WORKS (5 STEPS) */
.steps-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.step-card {
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.step-num {
  font-size: 2.25rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 12px;
}

.step-card:hover .step-num {
  color: var(--accent-primary);
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* "WHILE YOU SLEEP" 24-HOUR HOOK */
.sleep-timeline-card {
  padding: 40px;
  margin-top: 40px;
}

.timeline-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

.time-block {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.time-block.day {
  background: rgba(245, 158, 11, 0.04);
  border-color: rgba(245, 158, 11, 0.2);
}

.time-block.night {
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
}

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

.time-range {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
}

.day .time-range {
  color: var(--accent-amber);
}

.night .time-range {
  color: var(--accent-indigo);
}

/* ==========================================================================
   Redesigned Features Section (#features)
   ========================================================================== */

.features-h2 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 14px;
  margin-bottom: 16px;
}

.features-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 48px auto 0 auto;
}

.feature-module {
  background: #0b101b;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 26px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.feature-module:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.35);
  background: #0f1626;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 25px rgba(59, 130, 246, 0.12);
}

.feature-module.spotlight-card {
  border-color: rgba(59, 130, 246, 0.2);
  background: radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.08), #0b101b 80%);
}

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

.icon-container {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.feature-module:hover .icon-container {
  transform: scale(1.05);
}

.blue-glow {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.2);
}

.indigo-glow {
  background: rgba(129, 140, 248, 0.12);
  border-color: rgba(129, 140, 248, 0.3);
  box-shadow: 0 0 12px rgba(129, 140, 248, 0.2);
}

.cyan-glow {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.2);
}

.amber-glow {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.2);
}

.emerald-glow {
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.3);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.2);
}

.rose-glow {
  background: rgba(244, 63, 94, 0.12);
  border-color: rgba(244, 63, 94, 0.3);
  box-shadow: 0 0 12px rgba(244, 63, 94, 0.2);
}

.module-status {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
}

.module-status.active-status {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.12);
}

.module-content h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.module-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.58;
}

.module-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.micro-status-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

.micro-status-tag.highlight {
  color: #60a5fa;
}

.micro-status-tag.highlight-cyan {
  color: #22d3ee;
}

.micro-status-tag.highlight-emerald {
  color: #34d399;
}

.visual-pipeline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 4px;
}

.visual-pipeline .accent-glow {
  color: #60a5fa;
  font-weight: 700;
}

.filter-chips {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.filter-chips .chip {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
}

.filter-chips .chip-match {
  font-size: 0.68rem;
  font-weight: 700;
  color: #fbbf24;
  margin-left: auto;
}

.security-diagram,
.mini-metrics-row {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
}

.ws-tag {
  color: #34d399;
  font-weight: 700;
}

.sec-label {
  color: var(--text-dim);
}

/* Crawlable SEO Feature Block */
.seo-feature-paragraph {
  max-width: 920px;
  margin: 48px auto 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  padding: 0 16px;
}

/* Feature Discovery CTA Block (Full Screen Edge-to-Edge) */
.feature-cta-box.edge-to-edge {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 48px;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: 1px solid var(--border-color-glow);
  border-bottom: 1px solid var(--border-color-glow);
  background: radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.16), var(--bg-card) 75%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.15);
  padding: 36px 0;
}

.cta-inner-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-content h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.cta-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .features-h2 {
    font-size: 2.5rem;
  }

  .features-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .cta-inner-flex {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .features-h2 {
    font-size: 2.1rem;
  }

  .features-grid-wrapper {
    grid-template-columns: 1fr;
  }
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Redesigned Product Dashboard Showcase (Block A)
   ========================================================================== */
.dashboard-h2 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 14px;
  margin-bottom: 16px;
}

.max-700 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.dashboard-preview-shell {
  background: #090e1a;
  border: 1px solid var(--border-color-glow);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.15);
  margin-top: 40px;
}

.dashboard-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #060912;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-dot.red {
  background: #ef4444;
}

.window-dot.yellow {
  background: #f59e0b;
}

.window-dot.green {
  background: #10b981;
}

.dashboard-title-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-left: 8px;
}

.bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-indicator-live {
  font-size: 0.75rem;
  font-weight: 700;
  color: #60a5fa;
}

.dashboard-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.metric-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
  transition: border-color 200ms ease, background 200ms ease;
}

.metric-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: rgba(59, 130, 246, 0.04);
}

.metric-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

.metric-value {
  font-size: 1.85rem;
  font-weight: 800;
  margin: 6px 0 2px 0;
}

.metric-value.blue-text {
  color: #60a5fa;
}

.metric-value.indigo-text {
  color: #818cf8;
}

.metric-value.cyan-text {
  color: #22d3ee;
}

.metric-value.emerald-text {
  color: #34d399;
}

.metric-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.dashboard-main-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
}

.chart-block,
.pipeline-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 20px;
}

.chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.chart-header h4,
.pipeline-block h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.chart-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.chart-legend {
  display: flex;
  gap: 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.legend-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-item .dot.blue {
  background: #3b82f6;
}

.legend-item .dot.emerald {
  background: #10b981;
}

.svg-chart-container {
  width: 100%;
  height: 140px;
}

.activity-chart-svg {
  width: 100%;
  height: 100%;
}

.pipeline-steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.pipeline-step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.step-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.step-icon.check {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.step-icon.pulse {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.step-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.step-info strong {
  font-size: 0.82rem;
  color: #ffffff;
}

.step-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.step-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
}

.step-tag.active-tag {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.step-tag.monitoring-tag {
  background: rgba(34, 211, 238, 0.15);
  color: #22d3ee;
}

.dashboard-footer-actions {
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   Redesigned Knowledge Base AI Showcase (Block B)
   ========================================================================== */
.kb-showcase-container {
  padding: 40px;
  border-radius: 20px;
  background: radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.12), #090e1a 80%);
}

.kb-header-block {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 36px auto;
}

.kb-h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 12px 0 14px 0;
}

.kb-subhead {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.differentiation-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 18px 24px;
  border-radius: 14px;
  background: rgba(5, 8, 14, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.25);
  max-width: 720px;
  margin: 24px auto 0 auto;
}

.diff-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.diff-side.generic p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

.diff-side.bidvora p {
  color: #ffffff;
  font-size: 0.95rem;
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

.diff-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
}

.diff-label.active {
  background: var(--gradient-primary);
  color: #ffffff;
  border: none;
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.4);
}

.diff-arrow {
  color: #60a5fa;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.kb-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.kb-context-column h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.column-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.context-chips-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.context-chip-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.chip-icon {
  font-size: 1.2rem;
}

.chip-meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.chip-meta strong {
  font-size: 0.88rem;
  color: #ffffff;
}

.chip-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.chip-status {
  font-size: 0.72rem;
  font-weight: 700;
  color: #34d399;
}

.knowledge-data-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
}

.flow-pill {
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.flow-pill.active {
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
}

.flow-pill.result {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.sim-toggle-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.sim-tab-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.sim-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

.sim-tab-btn.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--text-white);
}

.proposal-preview-box {
  background: #05070c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
}

.proposal-preview-area {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-main);
  max-width: 65ch;
  min-height: 140px;
  white-space: pre-wrap;
  word-break: break-word;
}

.proposal-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-badge {
  font-size: 0.74rem;
  font-weight: 700;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  display: inline-block;
}

.preview-project-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.proposal-footer-meta {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.meta-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
}

.meta-tag.highlight {
  color: #34d399;
}

.seo-kb-paragraph {
  max-width: 920px;
  margin: 36px auto 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.kb-action-footer {
  text-align: center;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .dashboard-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-main-panel,
  .kb-product-grid {
    grid-template-columns: 1fr;
  }

  .kb-h2,
  .dashboard-h2 {
    font-size: 2.3rem;
  }

  .differentiation-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 16px 14px;
  }

  .diff-side {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .diff-side p {
    text-align: center;
    width: 100%;
  }

  .diff-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 640px) {
  .dashboard-metrics-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-data-flow {
    flex-direction: column;
    gap: 6px;
  }

  .proposal-preview-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .preview-project-label {
    white-space: normal;
    word-break: break-word;
  }
}

/* ==========================================================================
   Redesigned "Who Bidvora Is Built For" Section & ROI Calculator
   ========================================================================== */

.who-h2 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 14px;
  margin-bottom: 16px;
}

.personas-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 48px auto 0 auto;
}

.persona-card {
  background: #0b101b;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.persona-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.35);
  background: #0f1626;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 25px rgba(59, 130, 246, 0.12);
}

.persona-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.persona-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.persona-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease;
}

.persona-card:hover .persona-icon-box {
  transform: scale(1.05);
}

.persona-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.persona-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.pain-block,
.outcome-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pain-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fca5a5;
}

.pain-block p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.outcome-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #34d399;
}

.outcome-block p {
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.55;
  transition: color 200ms ease;
}

.persona-card:hover .outcome-block p {
  color: #6ee7b7;
}

.persona-footer {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.persona-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 200ms ease;
}

.persona-card:hover .persona-link {
  color: #60a5fa;
  text-decoration: underline;
}

/* Personalization Transition Hook */
.calc-transition-hook {
  text-align: center;
  margin: 48px 0 24px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Interactive ROI Calculator Card */
.roi-calculator-card {
  padding: 40px;
  border-radius: 20px;
  background: radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.12), #090e1a 80%);
  border: 1px solid var(--border-color-glow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.15);
}

.calc-layout-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 36px;
  align-items: center;
}

.calc-h3 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
}

.calc-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.calc-field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

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

.field-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

.field-val-badge {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.12);
  padding: 3px 10px;
  border-radius: 6px;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.calc-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  accent-color: var(--accent-primary);
  cursor: pointer;
}

.field-helper {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.formula-breakdown-bar {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

/* Result Box Shell */
.result-box-shell {
  background: #05070c;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 30px rgba(16, 185, 129, 0.12);
  position: relative;
}

.result-kicker {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 6px;
}

.result-big-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #34d399;
  background: linear-gradient(135deg, #34d399 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 16px;
}

.result-sub-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.sub-metric-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sub-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}

.sub-val {
  font-size: 1rem;
  font-weight: 800;
}

.sub-val.cyan {
  color: #22d3ee;
}

.sub-val.emerald {
  color: #34d399;
}

.calc-microcopy {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.calc-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.calc-disclaimer {
  font-size: 0.7rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Crawlable SEO Paragraph */
.seo-who-paragraph {
  max-width: 920px;
  margin: 40px auto 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .who-h2 {
    font-size: 2.5rem;
  }

  .personas-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-layout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .who-h2 {
    font-size: 2.1rem;
  }

  .personas-grid-wrapper {
    grid-template-columns: 1fr;
  }

  .roi-calculator-card {
    padding: 24px 18px;
  }

  .result-big-number {
    font-size: 2.8rem;
  }
}

/* ==========================================================================
   Redesigned Security & Privacy Section (#security)
   ========================================================================== */

.security-h2,
.testimonials-h2 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 14px;
  margin-bottom: 16px;
}

.security-modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 48px auto 0 auto;
}

.trust-module {
  background: #0b101b;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.trust-module:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.35);
  background: #0f1626;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 25px rgba(59, 130, 246, 0.12);
}

.trust-module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms ease;
}

.trust-module:hover .trust-icon-box {
  transform: scale(1.05);
}

.trust-status-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
}

.trust-module h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.trust-module p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.58;
  margin-bottom: 16px;
}

.trust-mini-diagram {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.key-mask,
.ws-pill,
.infra-node {
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
}

.diag-node.blue {
  color: #60a5fa;
  font-weight: 700;
}

.diag-node.indigo {
  color: #818cf8;
  font-weight: 700;
}

.infra-node.cyan {
  color: #22d3ee;
  font-weight: 700;
}

.diag-arrow {
  color: var(--text-dim);
}

.security-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 36px auto 0 auto;
  padding: 14px 24px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  max-width: 900px;
}

.trust-check-item {
  font-size: 0.85rem;
  font-weight: 700;
  color: #60a5fa;
}

.security-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 20px auto 0 auto;
  padding: 0 8px;
}

.security-microcopy {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.seo-security-paragraph {
  max-width: 920px;
  margin: 32px auto 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ==========================================================================
   Redesigned Customer Feedback / Social Proof Section (#testimonials)
   ========================================================================== */

.testimonials-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 48px auto 0 auto;
}

.testimonial-card {
  background: #0b101b;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 200ms ease, border-color 200ms ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.3);
}

.quote-mark {
  font-size: 2.8rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: rgba(59, 130, 246, 0.3);
  margin-bottom: -10px;
}

.quote-content p {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 20px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #ffffff;
}

.blue-avatar {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.indigo-avatar {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
}

.cyan-avatar {
  background: linear-gradient(135deg, #0891b2, #06b6d4);
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  font-style: normal;
}

.author-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.user-badge {
  font-size: 0.65rem;
  color: #34d399;
  margin-top: 2px;
}

/* Conversion CTA Bridge (Edge to Edge) */
.trust-cta-bridge.edge-to-edge {
  margin-top: 56px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: 1px solid var(--border-color-glow);
  border-bottom: 1px solid var(--border-color-glow);
  background: radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.18), #090d18 75%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 50px rgba(59, 130, 246, 0.2);
}

.trust-cta-bridge-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.bridge-content h3 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.bridge-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.bridge-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {

  .security-modules-grid,
  .testimonials-grid-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-cta-bridge-inner {
    flex-direction: column;
    text-align: center;
  }

  .bridge-actions {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 768px) {

  .security-h2,
  .testimonials-h2 {
    font-size: 2.1rem;
  }

  .security-modules-grid,
  .testimonials-grid-wrapper {
    grid-template-columns: 1fr;
  }

  .security-footer-row {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.quote-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-main);
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

.author-details h4 {
  font-size: 0.95rem;
}

.author-details p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* PRICING */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 3px;
  cursor: pointer;
  position: relative;
  transition: background var(--transition-fast);
}

.toggle-switch.active {
  background: var(--accent-primary);
}

.toggle-slider {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.toggle-switch.active .toggle-slider {
  transform: translateX(24px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

.pricing-card.popular {
  border-color: var(--accent-primary);
  box-shadow: 0 0 50px rgba(59, 130, 246, 0.2);
}

.popular-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-box {
  margin: 20px 0;
}

.price-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-white);
}

.price-period {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.pricing-features li .check-icon {
  color: var(--accent-emerald);
}

/* FAQ ACCORDION */
.faq-accordion {
  max-width: 840px;
  margin: 32px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.16);
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 24px;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 24px 20px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* FINAL CTA BANNER */
.final-cta-section {
  padding: 100px 0;
}

.cta-banner-card {
  padding: 70px 40px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.25), var(--bg-card) 80%);
  border: 1px solid var(--border-color-glow);
  position: relative;
  overflow: hidden;
}

.cta-banner-card h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.cta-banner-card p {
  color: var(--text-muted);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 32px auto;
}

/* ==========================================================================
   Redesigned Premium SaaS Footer (.site-footer)
   ========================================================================== */

.site-footer {
  background: #040609;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 32px 0;
  position: relative;
}

/* Top Conversion CTA Banner inside Footer */
.footer-cta-banner {
  background: radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.18), #0b101b 80%);
  border: 1px solid var(--border-color-glow);
  border-radius: 20px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 60px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.12);
}

.footer-cta-content h3 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.footer-cta-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* 5-Column Navigation Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 48px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 340px;
  margin: 0;
}

.brand-slogan {
  font-size: 0.78rem;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: 0.02em;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0;
  margin: 0;
}

.footer-links-list a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 180ms ease;
  text-decoration: none;
}

.footer-links-list a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-trust-micro {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.45;
}

/* Natural Crawlable SEO Footer Paragraph */
.seo-footer-paragraph {
  max-width: 960px;
  margin: 0 auto 40px auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* Footer Bottom Legal Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-disclaimer-text {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 600px;
}

.footer-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .footer-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }
  .footer-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer-brand-col {
    grid-column: span 2;
  }
}

/* ==========================================================================
   Redesigned Premium SaaS Pricing Section (#pricing)
   ========================================================================== */

.pricing-h2 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 14px;
  margin-bottom: 16px;
}

/* Billing Toggle Row */
.billing-toggle-row {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 36px 0 48px 0;
}

.billing-opt {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  transition: color 200ms ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.billing-opt.active {
  color: #ffffff;
}

.discount-pill {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 2px 7px;
  border-radius: 4px;
}

.toggle-switch {
  width: 48px;
  height: 26px;
  border-radius: 13px;
  background: #141b2b;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  cursor: pointer;
  padding: 2px;
  transition: background 250ms ease, border-color 250ms ease;
}

.toggle-switch.active {
  background: var(--accent-primary);
  border-color: #60a5fa;
}

.toggle-slider {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  display: block;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.toggle-switch.active .toggle-slider {
  transform: translateX(22px);
}

/* Pricing Grid Wrapper (980px max width for 2 clean cards) */
.pricing-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 980px;
  margin: 0 auto;
}

.pricing-card {
  background: #0b101b;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.12);
}

.popular-card {
  background: radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.15), #0c1222 80%);
  border: 1px solid rgba(59, 130, 246, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 35px rgba(59, 130, 246, 0.18);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 28px;
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.card-header-block {
  margin-bottom: 24px;
}

.plan-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.plan-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  min-height: 42px;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-num {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.savings-tag-space {
  min-height: 24px;
  margin-top: 6px;
}

.savings-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #34d399;
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

.card-features-block {
  margin-bottom: 28px;
}

.feature-group-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 12px;
}

.feature-group-label.highlight {
  color: #60a5fa;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pricing-features-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features-list li.bold-feat {
  color: #ffffff;
  font-weight: 700;
}

.pricing-features-list li.highlight-feat {
  color: #60a5fa;
  font-weight: 600;
}

.why-upgrade-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
  display: block;
  margin-top: 10px;
}

.card-footer-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.plan-microcopy {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Free Trial Trust Row */
.pricing-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 36px auto 0 auto;
}

.trust-pill {
  font-size: 0.82rem;
  font-weight: 700;
  color: #60a5fa;
}

/* Crawlable SEO Paragraph */
.seo-pricing-paragraph {
  max-width: 860px;
  margin: 32px auto 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Bottom Decision Hook */
.pricing-decision-hook {
  max-width: 780px;
  margin: 28px auto 0 auto;
  padding: 20px 28px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pricing-decision-hook p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.compact-btn {
  padding: 8px 18px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .pricing-h2 { font-size: 2.3rem; }
  .pricing-grid-wrapper {
    grid-template-columns: 1fr;
  }
  .pricing-decision-hook {
    flex-direction: column;
    text-align: center;
  }
}

/* RESPONSIVE DESIGN BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps-container {
    grid-template-columns: 1fr;
  }

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

  .kb-section-card {
    grid-template-columns: 1fr;
  }

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

  .roi-calculator-card {
    grid-template-columns: 1fr;
  }

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

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

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

/* Mobile Nav Drawer Defaults */
.mobile-nav-drawer {
  display: none;
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0a0e17;
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    z-index: 999;
  }

  .mobile-nav-drawer.active {
    display: block;
  }

  .mobile-nav-drawer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .hero-content p.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .dashboard-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sim-steps-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-split {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* General Mobile Spacing & Padding Standardization */
  .section-padding {
    padding: 48px 0;
  }

  .container {
    width: min(100% - 32px, 1280px);
    padding-left: 0;
    padding-right: 0;
  }

  .bidding-h2 {
    font-size: 2.1rem;
    line-height: 1.2;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .bidding-h2 {
    font-size: 1.75rem;
  }

  .glow-badge-pill {
    font-size: 0.72rem;
    padding: 6px 14px;
  }

  .btn-purple-gradient {
    font-size: 0.98rem;
    padding: 14px 28px;
    width: 100%;
    text-align: center;
  }

  .timeline-step {
    padding: 10px 12px;
    gap: 10px;
    height: auto;
    min-height: 64px;
  }

  .step-content h4 {
    font-size: 0.84rem;
  }

  .step-content p {
    font-size: 0.74rem;
  }
}

/* ==========================================================================
   How It Works Running Flow Animation
   ========================================================================== */
.step-card {
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1), border-color 400ms ease, box-shadow 400ms ease, background 400ms ease;
  position: relative;
}

.step-card.active-flow {
  border-color: var(--accent-primary);
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.35);
}

.step-card.active-flow .step-num {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.6);
}

.step-card.completed-flow {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.05);
}

.step-card.completed-flow .step-num {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-emerald);
}

/* ==========================================================================
   24/7 AI Autonomous Bidding Banner Section (Full Screen Edge-to-Edge)
   ========================================================================== */
.banner-full-bleed {
  padding: 32px 0;
  width: 100%;
  overflow: hidden;
}

.ai-banner-container.edge-to-edge {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: 1px solid var(--border-color-glow);
  border-bottom: 1px solid var(--border-color-glow);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 50px rgba(59, 130, 246, 0.2);
  background: var(--bg-card);
  transition: box-shadow 300ms ease, border-color 300ms ease;
}

.ai-banner-container.edge-to-edge:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7), 0 0 60px rgba(59, 130, 246, 0.35);
  border-color: rgba(59, 130, 246, 0.5);
}

.ai-banner-link {
  display: block;
  width: 100%;
  text-decoration: none;
}

.ai-banner-full-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Contact Us Page Styles (Matching Dark SaaS UI Theme)
   ========================================================================== */
.contact-page-section {
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 96px;
  position: relative;
  min-height: 100vh;
}

.contact-header-wrap {
  text-align: center;
  margin-bottom: 48px;
}

.contact-badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border-radius: 9999px;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #818cf8;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.contact-h1 {
  font-size: 3.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.contact-subhead {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
  }
}

.contact-left-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card-box {
  background: #0d121f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contact-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
  flex-shrink: 0;
}

.contact-icon-circle.phone-glow {
  border-color: rgba(6, 182, 212, 0.3);
  color: #22d3ee;
}

.contact-info-details {
  display: flex;
  flex-direction: column;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-value:hover {
  color: #818cf8;
}

.office-address-lines {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact-form-card {
  background: #0d121f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
}

.form-label .required-asterisk {
  color: #818cf8;
  margin-left: 2px;
}

.form-input-text,
.form-textarea {
  width: 100%;
  background: #151b2b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 12px 20px;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 130px;
}

.form-input-text:focus,
.form-textarea:focus,
.phone-select:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-input-text::placeholder,
.form-textarea::placeholder {
  color: #475569;
}

.phone-input-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ── Custom Searchable Country Picker ── */
.country-picker-wrap {
  position: relative;
  flex-shrink: 0;
}

.country-trigger-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #151b2b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-width: 90px;
  font-family: inherit;
}

.country-trigger-btn:hover {
  border-color: rgba(99, 102, 241, 0.5);
}

.country-trigger-btn[aria-expanded="true"] {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.country-trigger-chevron {
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.country-trigger-btn[aria-expanded="true"] .country-trigger-chevron {
  transform: rotate(180deg);
}

.country-picker-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 9999;
  width: 300px;
  background: #0b1120;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(99, 102, 241, 0.08);
  overflow: hidden;
  animation: countryPanelIn 0.15s ease;
}

@keyframes countryPanelIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.country-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.country-search-icon {
  color: #64748b;
  flex-shrink: 0;
}

.country-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 0.88rem;
  font-family: inherit;
}

.country-search-input::placeholder {
  color: #475569;
}

.country-list {
  list-style: none;
  max-height: 240px;
  overflow-y: auto;
  padding: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(99, 102, 241, 0.3) transparent;
}

.country-list::-webkit-scrollbar { width: 4px; }
.country-list::-webkit-scrollbar-track { background: transparent; }
.country-list::-webkit-scrollbar-thumb { background: rgba(99, 102, 241, 0.3); border-radius: 4px; }

.country-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #cbd5e1;
  transition: background 0.15s ease, color 0.15s ease;
}

.country-list-item:hover {
  background: rgba(99, 102, 241, 0.12);
  color: #ffffff;
}

.country-list-item.selected {
  background: rgba(99, 102, 241, 0.18);
  color: #ffffff;
}

.country-list-item .item-flag {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.country-list-item .item-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-list-item .item-code {
  font-size: 0.8rem;
  color: #818cf8;
  font-weight: 600;
  flex-shrink: 0;
}

.country-no-results {
  text-align: center;
  color: #64748b;
  font-size: 0.85rem;
  padding: 20px 16px;
}

.phone-input-wrap .form-input-text {
  flex: 1;
}

.contact-options-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
  margin-bottom: 8px;
}

.option-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: #cbd5e1;
  user-select: none;
}

.custom-radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.option-checkbox-input {
  display: none;
}

.option-checkbox-input:checked + .custom-radio-dot {
  border-color: #6366f1;
  background: #6366f1;
  box-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
}

.option-checkbox-input:checked + .custom-radio-dot::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
}

.contact-submit-btn {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #3b82f6 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 14px 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(99, 102, 241, 0.55);
}

.submit-success-banner {
  display: none;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
  text-align: center;
}

.form-error-banner {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.spinner-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.success-state-box {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.success-circle-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
}