/* ==========================================================================
   JYLTOW Universal Pro — Cruip Open Pro Modern Dark Design System
   Architecture: Obsidian Canvas (#030712) + Luminous Indigo (#6366F1) & Electric Blue (#3B82F6)
   Applies universally to all pages via <body class="cruip-dark">
   ========================================================================== */

/* Typography: Geometric Nacelle font faces */
@font-face {
  font-family: 'Nacelle';
  src: url('fonts/nacelle-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nacelle';
  src: url('fonts/nacelle-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nacelle';
  src: url('fonts/nacelle-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Nacelle';
  src: url('fonts/nacelle-semibolditalic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* ==========================================================================
   DESIGN TOKENS & SYSTEM VARIABLES
   ========================================================================== */
:root {
  --cruip-bg-950: #030712;
  --cruip-bg-900: #0b1120;
  --cruip-bg-850: #0f172a;
  --cruip-card-bg: rgba(15, 23, 42, 0.75);
  --cruip-card-border: #1e293b;
  --cruip-card-hover-border: #334155;
  --cruip-border-800: #1e293b;
  --cruip-border-700: #334155;
  --cruip-indigo-600: #4f46e5;
  --cruip-indigo-500: #6366f1;
  --cruip-indigo-400: #818cf8;
  --cruip-indigo-200: #c7d2fe;
  --cruip-blue-600: #2563eb;
  --cruip-blue-500: #3b82f6;
  --cruip-blue-400: #60a5fa;
  --cruip-blue-300: #93c5fd;
  --cruip-emerald-500: #3b82f6;
  --cruip-emerald-400: #60a5fa;
  --cruip-cyan-500: #0ea5e9;
  --cruip-cyan-400: #38bdf8;
  --cruip-text-heading: #f8fafc;
  --cruip-text-sub: rgba(199, 210, 254, 0.75);
  --cruip-text-muted: #94a3b8;
  --font-nacelle: 'Nacelle', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==========================================================================
   UNIVERSAL TOKEN INVERSION FOR ALL PAGES (body.cruip-dark)
   Automatically converts legacy light-theme pages into dark obsidian/slate
   ========================================================================== */
body.cruip-dark {
  /* Invert base legacy tokens to modern obsidian & slate */
  --white: #030712;
  --gray-50: #070d1a;
  --gray-100: #0b1120;
  --gray-200: #1e293b;
  --gray-300: #334155;
  --gray-400: #64748b;
  --gray-500: #94a3b8;
  --gray-600: #cbd5e1;
  --gray-700: #e2e8f0;
  --gray-800: #f1f5f9;
  --gray-900: #f8fafc;
  --black: #ffffff;
  --dark: #0f172a;

  /* Brand Accents: Electric Blue & Luminous Indigo */
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #60a5fa;
  --secondary: #4f46e5;
  --secondary-light: #6366f1;
  --accent: #38bdf8;
  --accent-light: #7dd3fc;

  /* Base Body Overrides */
  background-color: var(--cruip-bg-950) !important;
  color: #cbd5e1 !important;
  font-family: var(--font-inter);
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* All Sections on Dark Canvas with Cruip Subtle Gradient Separators */
body.cruip-dark section {
  background: transparent !important;
  border-top: 1px solid transparent !important;
  border-bottom: none !important;
  border-image: linear-gradient(to right, transparent, rgba(51, 65, 85, 0.6), transparent) 1 !important;
  color: #cbd5e1 !important;
  position: relative;
  z-index: 5;
}

/* Main Heading Typography (Nacelle) */
body.cruip-dark h1,
body.cruip-dark h2,
body.cruip-dark h3,
body.cruip-dark .hero-title,
body.cruip-dark .section-title,
body.cruip-dark .card-title {
  color: #ffffff !important;
  font-family: var(--font-nacelle) !important;
  letter-spacing: -0.025em !important;
}

body.cruip-dark h4,
body.cruip-dark h5,
body.cruip-dark h6 {
  color: #f8fafc !important;
  font-family: var(--font-nacelle) !important;
}

body.cruip-dark .section-subtitle,
body.cruip-dark .hero-subtitle {
  color: var(--cruip-text-sub) !important;
}

body.cruip-dark p,
body.cruip-dark li {
  color: #cbd5e1;
}

/* Top Ribbon in Dark Mode */
body.cruip-dark .top-ribbon {
  background: #02040a !important;
  border-bottom: 1px solid #1e293b !important;
  color: #94a3b8 !important;
}

body.cruip-dark .top-ribbon .ribbon-text {
  color: #94a3b8 !important;
}

/* Keyframe Animations */
@keyframes gradientShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatLight {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.02); }
}

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

/* Shimmering Animated Text */
.text-shimmer {
  background: linear-gradient(to right, #ffffff, #c7d2fe, #f8fafc, #818cf8, #ffffff) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: gradientShimmer 6s linear infinite !important;
  font-family: var(--font-nacelle) !important;
  letter-spacing: -0.025em !important;
}

.text-shimmer-emerald,
.text-shimmer-blue {
  background: linear-gradient(to right, #ffffff, #93c5fd, #f8fafc, #3b82f6, #ffffff) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: gradientShimmer 6s linear infinite !important;
  font-family: var(--font-nacelle) !important;
  letter-spacing: -0.025em !important;
}

.font-nacelle {
  font-family: var(--font-nacelle) !important;
}

/* Ambient Background Lighting */
.cruip-ambient-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  height: 100%;
  min-height: 100vh;
}

.cruip-ambient-hero {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-35%);
  width: 980px;
  max-width: none;
  opacity: 0.85;
  pointer-events: none;
  animation: floatLight 14s ease-in-out infinite;
}

.cruip-ambient-secondary {
  position: absolute;
  left: 50%;
  top: 550px;
  transform: translateX(-115%);
  width: 800px;
  max-width: none;
  opacity: 0.45;
  pointer-events: none;
}

.cruip-ambient-video {
  position: absolute;
  left: 50%;
  top: 1100px;
  transform: translateX(-15%);
  width: 850px;
  max-width: none;
  opacity: 0.40;
  pointer-events: none;
}

/* ==========================================================================
   FLOATING CAPSULE NAVIGATION BAR (Cruip Open Pro Geometry)
   ========================================================================== */
body.cruip-dark .navbar {
  position: sticky !important;
  top: 48px !important;
  max-width: 1200px !important;
  margin: 12px auto 0 !important;
  background: rgba(15, 23, 42, 0.85) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-radius: 1rem !important;
  border: 1px solid transparent !important;
  background-clip: padding-box !important;
  box-shadow: 0 12px 36px -10px rgba(0, 0, 0, 0.7) !important;
  padding: 0 !important;
  z-index: 1000 !important;
}

body.cruip-dark .navbar::before {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(to right, rgba(51, 65, 85, 0.9), rgba(99, 102, 241, 0.5), rgba(51, 65, 85, 0.9)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}

body.cruip-dark .navbar .nav-content {
  height: 58px !important;
  padding: 0 1.25rem !important;
}

body.cruip-dark .navbar .logo {
  display: flex !important;
  align-items: center !important;
}

body.cruip-dark .navbar .logo a {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  line-height: 1 !important;
}

body.cruip-dark .navbar .logo picture {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0 !important;
  font-size: 0 !important;
}

body.cruip-dark .navbar .logo-img {
  display: block !important;
  height: 38px !important;
  width: auto !important;
  filter: brightness(0) invert(1) !important;
}

body.cruip-dark .navbar .logo-text {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
  color: #ffffff !important;
}

body.cruip-dark .navbar .nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 1.1rem !important;
  flex-wrap: nowrap !important;
}

body.cruip-dark .navbar .nav-link {
  color: #94a3b8 !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  padding: 0.25rem 0.4rem !important;
  transition: color 0.2s ease !important;
}

body.cruip-dark .navbar .nav-link:hover,
body.cruip-dark .navbar .nav-link.active {
  color: #ffffff !important;
}

body.cruip-dark .navbar .nav-link-cta {
  background: linear-gradient(to top, #2563eb, #3b82f6) !important;
  color: #ffffff !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 4px 14px rgba(37, 99, 235, 0.4) !important;
  border-radius: 0.5rem !important;
  padding: 0.45rem 1.1rem !important;
  font-size: 0.825rem !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
}

/* Mobile Menu Dark Overrides */
body.cruip-dark .mobile-menu {
  background: rgba(15, 23, 42, 0.95) !important;
  border-bottom: 1px solid #1e293b !important;
  backdrop-filter: blur(20px) !important;
}

body.cruip-dark .mobile-menu .mobile-link {
  color: #e2e8f0 !important;
}

body.cruip-dark .mobile-menu-btn span {
  background: #cbd5e1 !important;
}

@media (max-width: 768px) {
  body.cruip-dark .navbar {
    top: 42px !important;
    margin: 6px 12px 0 !important;
    width: calc(100% - 24px) !important;
    border-radius: 0.875rem !important;
  }

  body.cruip-dark .navbar .nav-links,
  body.cruip-dark .nav-links {
    display: none !important;
  }

  body.cruip-dark .navbar .mobile-menu-btn,
  body.cruip-dark .mobile-menu-btn {
    display: flex !important;
  }

  body.cruip-dark .mobile-menu {
    top: 106px !important;
    margin: 0 12px !important;
    width: calc(100% - 24px) !important;
    max-height: calc(100vh - 120px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border-radius: 1rem !important;
    border: 1px solid #1e293b !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8) !important;
  }

  body.cruip-dark .hero-container {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  body.cruip-dark .hero-content {
    order: 1 !important;
    text-align: center !important;
  }

  body.cruip-dark .hero-image,
  body.cruip-dark .hero-image-right {
    order: 2 !important;
    margin-top: 1.5rem !important;
    width: 100% !important;
  }

  body.cruip-dark .hero-cta,
  body.cruip-dark .hero-cta-group {
    justify-content: center !important;
  }
}

/* ==========================================================================
   HIGH-CONVERSION BUTTONS (Cruip rounded-lg 8px with top inset highlight)
   ========================================================================== */
body.cruip-dark .btn,
body.cruip-dark .btn-primary,
body.cruip-dark .btn-cruip-primary,
body.cruip-dark .btn-pill-primary,
body.cruip-dark .btn-secondary,
body.cruip-dark .btn-outline-dark,
body.cruip-dark .btn-light,
body.cruip-dark .btn-cruip-secondary,
body.cruip-dark .btn-pill-secondary,
body.cruip-dark .btn-pill-outline-light,
body.cruip-dark .btn-pill-outline-dark,
body.cruip-dark .btn-brand-submit,
body.cruip-dark .btn-card-action {
  border-radius: 0.5rem !important; /* Cruip standard: rounded-lg 8px */
}

body.cruip-dark .btn-primary,
body.cruip-dark .btn-cruip-primary,
body.cruip-dark .btn-pill-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.75rem 1.6rem !important;
  font-family: var(--font-inter) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  background: linear-gradient(to top, #2563eb, #3b82f6) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 4px 16px rgba(37, 99, 235, 0.4) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  border: none !important;
}

body.cruip-dark .btn-primary:hover,
body.cruip-dark .btn-cruip-primary:hover,
body.cruip-dark .btn-pill-primary:hover {
  background: linear-gradient(to top, #1d4ed8, #2563eb) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 24px rgba(37, 99, 235, 0.6) !important;
  transform: translateY(-1px) !important;
}

/* Secondary Buttons with Glass Gradient Borders */
body.cruip-dark .btn-secondary,
body.cruip-dark .btn-outline-dark,
body.cruip-dark .btn-light,
body.cruip-dark .btn-cruip-secondary,
body.cruip-dark .btn-pill-secondary,
body.cruip-dark .btn-pill-outline-light,
body.cruip-dark .btn-pill-outline-dark {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 0.75rem 1.6rem !important;
  font-family: var(--font-inter) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: #cbd5e1 !important;
  text-decoration: none !important;
  background: linear-gradient(to bottom, #1e293b, rgba(15, 23, 42, 0.85)) !important;
  border: 1px solid #334155 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
}

body.cruip-dark .btn-secondary:hover,
body.cruip-dark .btn-outline-dark:hover,
body.cruip-dark .btn-light:hover,
body.cruip-dark .btn-cruip-secondary:hover,
body.cruip-dark .btn-pill-secondary:hover {
  background: #1e293b !important;
  border-color: #64748b !important;
  color: #ffffff !important;
}

/* Eyebrow badge pills retain stadium 9999px geometry */
body.cruip-dark .section-badge,
body.cruip-dark .pill-badge,
body.cruip-dark .cruip-badge-pill,
body.cruip-dark .service-badge-pill {
  border-radius: 9999px !important;
}
body.cruip-dark .btn-cruip-secondary:hover,
body.cruip-dark .btn-pill-outline-light:hover {
  color: #ffffff !important;
  border-color: #6366f1 !important;
  background: linear-gradient(to bottom, #334155, rgba(30, 41, 59, 0.95)) !important;
  transform: translateY(-1px) !important;
}

/* Category & Hero Pills */
body.cruip-dark .section-badge,
body.cruip-dark .pill-badge,
body.cruip-dark .pill-badge-dark,
body.cruip-dark .cruip-badge-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.35rem 0.95rem !important;
  border-radius: 9999px !important;
  background: rgba(30, 41, 59, 0.6) !important;
  color: #c7d2fe !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  border: 1px solid rgba(99, 102, 241, 0.35) !important;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.15) !important;
  margin-bottom: 1rem !important;
}

/* ==========================================================================
   CURSOR-TRACKING SPOTLIGHT CARDS
   ========================================================================== */
.spotlight-group {
  position: relative;
}

.spotlight-card {
  position: relative;
  border-radius: 1.25rem;
  padding: 1px;
  background: #1e293b;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.spotlight-card::before {
  content: '';
  pointer-events: none;
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: 20rem;
  height: 20rem;
  transform: translate(var(--mouse-x, -9999px), var(--mouse-y, -9999px));
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.85) 0%, rgba(99, 102, 241, 0) 70%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 10;
}

.spotlight-group:hover .spotlight-card::before {
  opacity: 1;
}

.spotlight-card-body {
  position: relative;
  z-index: 20;
  height: 100%;
  border-radius: calc(1.25rem - 1px);
  background: #030712;
  padding: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.spotlight-card-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.45) 0%, rgba(15, 23, 42, 0.15) 50%, rgba(30, 41, 59, 0.35) 100%);
  pointer-events: none;
  z-index: -1;
}

/* ==========================================================================
   UNIVERSAL CARD SURFACES (All Pages)
   ========================================================================== */
body.cruip-dark .service-card,
body.cruip-dark .feature-card,
body.cruip-dark .minimal-card,
body.cruip-dark .bidding-card,
body.cruip-dark .testimonial-card,
body.cruip-dark .pricing-card,
body.cruip-dark .step-card,
body.cruip-dark .tech-card,
body.cruip-dark .blog-card,
body.cruip-dark .form-card,
body.cruip-dark .diagnostic-card,
body.cruip-dark .earning-card,
body.cruip-dark .benefit-card,
body.cruip-dark .city-card,
body.cruip-dark .showcase-chip,
body.cruip-dark #flow-explanation {
  background: rgba(15, 23, 42, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 1rem !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  color: #cbd5e1 !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

body.cruip-dark .service-card:hover,
body.cruip-dark .feature-card:hover,
body.cruip-dark .minimal-card:hover,
body.cruip-dark .bidding-card:hover,
body.cruip-dark .step-card:hover,
body.cruip-dark .tech-card:hover,
body.cruip-dark .blog-card:hover,
body.cruip-dark .showcase-chip:hover {
  background: rgba(30, 41, 59, 0.85) !important;
  border-color: rgba(59, 130, 246, 0.5) !important;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.7), 0 0 25px rgba(59, 130, 246, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

body.cruip-dark .service-card h3,
body.cruip-dark .feature-card h3,
body.cruip-dark .minimal-card h3,
body.cruip-dark .minimal-card h4,
body.cruip-dark .step-card h3,
body.cruip-dark .tech-card h3,
body.cruip-dark .blog-card h3,
body.cruip-dark .testimonial-card h4,
body.cruip-dark .showcase-chip-text strong {
  color: #ffffff !important;
  font-family: var(--font-nacelle), var(--font-inter), sans-serif !important;
}

body.cruip-dark .service-card p,
body.cruip-dark .feature-card p,
body.cruip-dark .minimal-card p,
body.cruip-dark .step-card p,
body.cruip-dark .tech-card p,
body.cruip-dark .blog-card p,
body.cruip-dark .testimonial-card p,
body.cruip-dark .showcase-chip-text small {
  color: #94a3b8 !important;
  font-family: var(--font-inter), sans-serif !important;
}

body.cruip-dark .showcase-chip-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: rgba(59, 130, 246, 0.15) !important;
  border: 1px solid rgba(59, 130, 246, 0.35) !important;
  color: #60a5fa !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.2) !important;
  transition: all 0.25s ease !important;
}

body.cruip-dark .showcase-chip:hover .showcase-chip-icon {
  background: rgba(59, 130, 246, 0.25) !important;
  border-color: rgba(59, 130, 246, 0.6) !important;
  color: #93c5fd !important;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.35) !important;
  transform: scale(1.05) !important;
}

/* Universal Form Inputs & Controls */
body.cruip-dark input[type="text"],
body.cruip-dark input[type="email"],
body.cruip-dark input[type="tel"],
body.cruip-dark input[type="number"],
body.cruip-dark select,
body.cruip-dark textarea {
  background: #0f172a !important;
  border: 1px solid #334155 !important;
  border-radius: 0.5rem !important;
  color: #f8fafc !important;
  padding: 0.75rem 1rem !important;
  font-family: var(--font-inter) !important;
  transition: all 0.2s ease !important;
}

body.cruip-dark input:focus,
body.cruip-dark select:focus,
body.cruip-dark textarea:focus {
  border-color: #6366f1 !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25) !important;
}

body.cruip-dark label {
  color: #cbd5e1 !important;
  font-weight: 600;
}

/* ==========================================================================
   INTERACTIVE COMPONENTS (Accordions, Steppers, Flow)
   ========================================================================== */
body.cruip-dark .flow-line {
  background: #334155 !important;
}

body.cruip-dark .stage-bubble {
  background: #0f172a !important;
  border: 2px solid #334155 !important;
  color: #94a3b8 !important;
}

body.cruip-dark .stage-bubble.active,
body.cruip-dark .stage-bubble:hover {
  background: #6366f1 !important;
  border-color: #818cf8 !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.6) !important;
}

body.cruip-dark .routing-tab-btn {
  background: #0f172a !important;
  border: 1px solid #334155 !important;
  color: #94a3b8 !important;
  border-radius: 9999px !important;
}

body.cruip-dark .routing-tab-btn.active,
body.cruip-dark .routing-tab-btn:hover {
  background: linear-gradient(to right, #4f46e5, #6366f1) !important;
  border-color: #6366f1 !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.4) !important;
}

/* Accordions (FAQ & Digital Audit) */
body.cruip-dark .audit-accordion-btn,
body.cruip-dark .faq-question {
  background: #0f172a !important;
  border: 1px solid #1e293b !important;
  color: #f8fafc !important;
  border-radius: 0.75rem !important;
  transition: all 0.2s ease !important;
}

body.cruip-dark .audit-accordion-btn.active,
body.cruip-dark .audit-accordion-btn:hover,
body.cruip-dark .faq-item.active .faq-question,
body.cruip-dark .faq-question:hover {
  background: #1e293b !important;
  border-color: #6366f1 !important;
  color: #ffffff !important;
}

body.cruip-dark .audit-accordion-content,
body.cruip-dark .faq-answer {
  background: rgba(11, 17, 32, 0.95) !important;
  border-left: 3px solid #6366f1 !important;
  color: #cbd5e1 !important;
  border-radius: 0 0 0.75rem 0.75rem !important;
}

/* ==========================================================================
   PRO-GRADE MACBOOK PRO 16" SPACE BLACK MOCKUP
   ========================================================================== */
.laptop-frame {
  position: relative;
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
  padding-bottom: 24px;
  perspective: 1200px;
}

.mockup-view-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.mockup-tab-pill {
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-inter);
  color: #94a3b8;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
}

.mockup-tab-pill:hover {
  color: #f8fafc;
  border-color: rgba(99, 102, 241, 0.5);
  background: rgba(30, 41, 59, 0.9);
}

.mockup-tab-pill.active {
  color: #ffffff;
  background: #4f46e5;
  border-color: #6366f1;
  box-shadow: 0 0 16px rgba(79, 70, 229, 0.45);
}

.mockup-tab-pill .dot-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 6px #3b82f6;
}

.laptop-screen {
  position: relative;
  background: #020617;
  border: 8px solid #090d16;
  border-bottom: 6px solid #090d16;
  border-radius: 18px 18px 0 0;
  aspect-ratio: 16/10;
  overflow: hidden;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 25px 60px -12px rgba(0, 0, 0, 0.9),
    0 0 60px -10px rgba(99, 102, 241, 0.22);
}

.laptop-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 12px;
  background: #090d16;
  border-radius: 0 0 6px 6px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.laptop-camera-lens {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #020617;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 0 1px 1px rgba(99, 102, 241, 0.6);
}

.laptop-camera-sensor {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #3b82f6;
  opacity: 0.85;
  box-shadow: 0 0 3px #3b82f6;
}

.laptop-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.015) 28%, transparent 48%);
  pointer-events: none;
  z-index: 25;
}

.laptop-screen-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0b0f19;
  overflow: hidden;
}

.laptop-screen-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s ease-in-out, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.laptop-screen-content img.active {
  opacity: 1;
  transform: scale(1);
}

.laptop-base {
  position: absolute;
  bottom: 12px;
  left: -4%;
  right: -4%;
  height: 12px;
  background: linear-gradient(to bottom, #1e2638 0%, #121824 45%, #090d15 100%);
  border-radius: 0 0 12px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 15px 35px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(99, 102, 241, 0.2);
  z-index: 10;
}

.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 4px;
  background: #070a10;
  border-radius: 0 0 5px 5px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.9);
}

.laptop-reflection {
  position: absolute;
  bottom: -8px;
  left: 10%;
  right: 10%;
  height: 18px;
  background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.35) 0%, rgba(15, 23, 42, 0) 70%);
  filter: blur(8px);
  pointer-events: none;
}

/* ==========================================================================
   PRO-GRADE APPLE STUDIO DISPLAY / WORKSTATION MONITOR
   ========================================================================== */
.monitor-frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 90px;
}

.monitor-ambient-glow {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 70%;
  background: radial-gradient(ellipse at 50% 45%, rgba(99, 102, 241, 0.3) 0%, rgba(56, 189, 248, 0.08) 45%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.monitor-screen {
  position: relative;
  background: #030712;
  border: 7px solid #090d16;
  border-radius: 14px;
  aspect-ratio: 16/10;
  overflow: hidden;
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 30px 75px -15px rgba(0, 0, 0, 0.95),
    0 0 80px -15px rgba(99, 102, 241, 0.28);
  z-index: 2;
}

.monitor-camera {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #020617;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), inset 0 0 1px rgba(99, 102, 241, 0.8);
  z-index: 30;
}

.monitor-chrome-bar {
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  z-index: 10;
}

.monitor-window-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.monitor-window-controls span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.monitor-ctrl-red { background: #ef4444; }
.monitor-ctrl-yellow { background: #f59e0b; }
.monitor-ctrl-green { background: #10b981; }

.monitor-address-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(3, 7, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 3px 12px;
  font-size: 0.78rem;
  color: #cbd5e1;
  font-family: var(--font-inter);
  flex-grow: 1;
  max-width: 440px;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.monitor-address-bar svg {
  color: #3b82f6;
  flex-shrink: 0;
}

.monitor-status-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.monitor-live-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.monitor-live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 6px #3b82f6;
}

.monitor-screen-content {
  position: relative;
  width: 100%;
  height: calc(100% - 37px);
  background: #0b0f19;
  overflow: hidden;
}

.monitor-screen-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease;
}

.monitor-screen-content img.active {
  opacity: 1;
  transform: scale(1);
}

.monitor-floating-badge {
  position: absolute;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 8px 12px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px -5px rgba(0,0,0,0.7);
  z-index: 20;
  pointer-events: none;
  animation: floatSlow 4s ease-in-out infinite alternate;
}

.monitor-badge-top-right {
  top: 15px;
  right: 15px;
}

.monitor-badge-bottom-left {
  bottom: 15px;
  left: 15px;
  animation-delay: 2s;
}

.monitor-stand {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 72px;
  background: linear-gradient(to right, #1e2433 0%, #2d3748 45%, #1a202c 55%, #111622 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.monitor-stand::after {
  content: '';
  width: 32px;
  height: 22px;
  border-radius: 9999px;
  background: #080b11;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.9), 0 1px 0 rgba(255, 255, 255, 0.1);
}

.monitor-base {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 10px;
  background: linear-gradient(to bottom, #2d3748 0%, #151a24 60%, #0c0f15 100%);
  border-radius: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 1px 0 rgba(255, 255, 255, 0.1) inset,
    0 15px 30px rgba(0, 0, 0, 0.95),
    0 0 25px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.monitor-desk-shadow {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 14px;
  background: radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.9) 0%, transparent 75%);
  filter: blur(4px);
  z-index: 0;
}

/* ==========================================================================
   UNIVERSAL FOOTER (All Pages)
   ========================================================================== */
body.cruip-dark footer.footer {
  background: #02040a !important;
  border-top: 1px solid #1e293b !important;
  color: #94a3b8 !important;
}

body.cruip-dark .footer-title {
  color: #ffffff !important;
  font-family: var(--font-nacelle) !important;
}

body.cruip-dark .footer-link {
  color: #94a3b8 !important;
  transition: color 0.2s ease !important;
}

body.cruip-dark .footer-link:hover {
  color: #ffffff !important;
}

body.cruip-dark .footer-copyright,
body.cruip-dark .footer-tagline {
  color: #94a3b8 !important;
}

body.cruip-dark .footer-bottom {
  border-top: 1px solid #1e293b !important;
}

/* ==========================================================================
   WCAG 2.1 Level AA & AAA Contrast Hardening & Universal Guards
   Guarantees 100% compliance across all 30 pages
   ========================================================================== */
body.cruip-dark strong,
body.cruip-dark b,
body.cruip-dark .stat-value,
body.cruip-dark .stat-number {
  color: #f8fafc !important;
}

body.cruip-dark a {
  color: #818cf8;
}

body.cruip-dark a:hover {
  color: #c7d2fe;
}

/* 1. Ensure any element with color: var(--white) or class text-white gets crisp #ffffff */
body.cruip-dark .text-white,
body.cruip-dark .diagnostic-title,
body.cruip-dark .stat-label,
body.cruip-dark .tile-label,
body.cruip-dark .footer-title,
body.cruip-dark .cta-title,
body.cruip-dark .step-number,
body.cruip-dark [class*="text-white"],
body.cruip-dark [style*="color: var(--white)"],
body.cruip-dark [style*="color:var(--white)"] {
  color: #ffffff !important;
}

/* 2. Catch-all for any inline background: white / #fff / #ffffff */
body.cruip-dark [style*="background: white"],
body.cruip-dark [style*="background:white"],
body.cruip-dark [style*="background-color: white"],
body.cruip-dark [style*="background-color:white"],
body.cruip-dark [style*="background: #ffffff"],
body.cruip-dark [style*="background:#ffffff"],
body.cruip-dark [style*="background: #fff"],
body.cruip-dark [style*="background:#fff"] {
  background: rgba(15, 23, 42, 0.75) !important;
  border: 1px solid #1e293b !important;
  color: #cbd5e1 !important;
}

/* 3. Catch-all for rogue inline dark text */
body.cruip-dark [style*="color: #374151"],
body.cruip-dark [style*="color: #4b5563"],
body.cruip-dark [style*="color: #111827"],
body.cruip-dark [style*="color: #1f2937"],
body.cruip-dark [style*="color: #000"],
body.cruip-dark [style*="color:black"] {
  color: #f8fafc !important;
}

/* 4. Form Controls contrast */
body.cruip-dark input::placeholder,
body.cruip-dark textarea::placeholder {
  color: #64748b !important;
  opacity: 1 !important;
}

body.cruip-dark select option {
  background: #0f172a !important;
  color: #f8fafc !important;
}

/* 5. Regional FAQ container */
body.cruip-dark .faq-container-regional {
  background: rgba(15, 23, 42, 0.75) !important;
  border: 1px solid #1e293b !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}
body.cruip-dark .faq-container-regional h2,
body.cruip-dark .faq-container-regional h3 {
  color: #ffffff !important;
  font-family: var(--font-nacelle) !important;
}
body.cruip-dark .faq-container-regional p {
  color: #cbd5e1 !important;
}

/* 6. Pricing tables and blog content */
body.cruip-dark .price-table {
  background: rgba(15, 23, 42, 0.75) !important;
  border: 1px solid #1e293b !important;
}
body.cruip-dark .price-table th {
  background: #0b1120 !important;
  color: #f8fafc !important;
  border-bottom: 1px solid #334155 !important;
}
body.cruip-dark .price-table td {
  border-bottom: 1px solid #1e293b !important;
  color: #cbd5e1 !important;
}
body.cruip-dark .emergency-steps {
  background: rgba(239, 68, 68, 0.08) !important;
  border-left: 4px solid #ef4444 !important;
  border-top: 1px solid rgba(239, 68, 68, 0.2) !important;
  border-right: 1px solid rgba(239, 68, 68, 0.2) !important;
  border-bottom: 1px solid rgba(239, 68, 68, 0.2) !important;
}
body.cruip-dark .emergency-steps h3 {
  color: #fca5a5 !important;
}
body.cruip-dark .emergency-steps ol,
body.cruip-dark .emergency-steps li {
  color: #fecaca !important;
}

/* ==========================================================================
   ADVANCED MARKETPLACE TECHNOLOGY (How It Works) - Cruip Ultra Pro Edition
   ========================================================================== */
.how-it-works-tech-section {
  position: relative;
  padding: 110px 0 120px 0;
  background: #030712;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.tech-section-ambient {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1050px;
  height: 650px;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.12) 0%, rgba(99, 102, 241, 0.05) 45%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.15);
}

.tech-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
  animation: pulseLiveDot 2s infinite ease-in-out;
}

.tech-section-title {
  font-family: var(--font-nacelle), 'Outfit', sans-serif !important;
  font-size: clamp(2.2rem, 3.8vw, 3rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: -0.025em !important;
  line-height: 1.15 !important;
  margin: 0 0 1.1rem !important;
}

.tech-section-subtitle {
  font-family: var(--font-inter), sans-serif !important;
  font-size: 1.15rem !important;
  color: #94a3b8 !important;
  line-height: 1.65 !important;
  max-width: 680px !important;
  margin: 0 auto !important;
}

.marketplace-tech-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 3.75rem;
  position: relative;
  z-index: 2;
}

.tech-cards-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tech-feature-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 1.75rem;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.tech-feature-card:hover {
  background: rgba(26, 38, 64, 0.85);
  border-color: rgba(59, 130, 246, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.7), 0 0 25px rgba(59, 130, 246, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.tech-feature-icon-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.2);
  transition: all 0.25s ease;
}

.tech-feature-card:hover .tech-feature-icon-wrap {
  background: rgba(59, 130, 246, 0.22);
  border-color: rgba(59, 130, 246, 0.6);
  color: #93c5fd;
  transform: scale(1.06);
  box-shadow: 0 0 22px rgba(59, 130, 246, 0.4);
}

.tech-step-pill {
  position: absolute;
  bottom: -5px;
  right: -5px;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  line-height: 1.3;
  font-family: var(--font-nacelle), 'Outfit', sans-serif;
  letter-spacing: 0.02em;
}

.tech-feature-content {
  flex: 1;
}

.tech-feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}

.tech-feature-title {
  font-family: var(--font-nacelle), 'Outfit', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 !important;
  letter-spacing: -0.01em !important;
}

.tech-mini-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(59, 130, 246, 0.28);
  color: #93c5fd;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pulse-beacon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 6px #3b82f6;
  animation: pulseLiveDot 1.5s infinite ease-in-out;
}

.tech-feature-desc {
  font-family: var(--font-inter), sans-serif !important;
  font-size: 0.92rem !important;
  color: #94a3b8 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.tech-mockup-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
  min-height: 480px;
}

.mockup-ambient-glow {
  position: absolute;
  inset: 5% 5%;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.22) 0%, rgba(99, 102, 241, 0.1) 45%, transparent 70%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
}

.dual-phone-grid {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.phone-device {
  width: 215px;
  border-radius: 34px;
  padding: 8px;
  background: #0a0f1d;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 35px rgba(59, 130, 246, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.phone-device.device-left {
  transform: translateY(14px);
}

.phone-device.device-right {
  transform: translateY(-14px);
  border-color: rgba(59, 130, 246, 0.35);
}

.phone-device:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 35px 75px -15px rgba(0, 0, 0, 0.9), 0 0 45px rgba(59, 130, 246, 0.28);
}

.phone-device.device-left:hover {
  transform: translateY(8px);
}

.phone-device.device-right:hover {
  transform: translateY(-20px);
}

.phone-speaker {
  width: 44px;
  height: 4px;
  border-radius: 4px;
  background: #1e293b;
  margin: 4px auto 8px;
}

.phone-screen {
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-screen img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.phone-caption {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-top: 0.85rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.phone-caption .step-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 1px 7px;
  border-radius: 100px;
}

.floating-tech-badge {
  position: absolute;
  z-index: 5;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(59, 130, 246, 0.15);
  pointer-events: none;
  animation: floatCard 6s ease-in-out infinite;
}

.floating-tech-badge.badge-top-right {
  top: 10px;
  right: -5px;
}

.floating-tech-badge.badge-bottom-left {
  bottom: 25px;
  left: -10px;
  animation-delay: 3s;
}

.floating-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
  flex-shrink: 0;
}

.floating-badge-icon.check-icon {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.35);
  color: #4ade80;
}

.floating-tech-badge strong {
  display: block;
  font-size: 0.82rem;
  color: #ffffff !important;
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-nacelle), 'Outfit', sans-serif;
}

.floating-tech-badge small {
  display: block;
  font-size: 0.72rem;
  color: #94a3b8 !important;
  line-height: 1.2;
  margin-top: 2px;
  font-family: var(--font-inter), sans-serif;
}

@media (max-width: 991px) {
  .how-it-works-tech-section {
    padding: 75px 0 85px 0;
  }
  .marketplace-tech-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    margin-top: 2.75rem;
  }
  .floating-tech-badge {
    display: none;
  }
}

@media (max-width: 540px) {
  .dual-phone-grid {
    flex-direction: column;
    gap: 2rem;
  }
  .phone-device.device-left,
  .phone-device.device-right {
    transform: none !important;
    width: 220px;
    max-width: 100%;
  }
}

/* ==========================================================================
   PLATFORM TECHNOLOGY SUITE (The JYLTOW Platform)
   ========================================================================== */
.platform-suite-section {
  position: relative;
  padding: 105px 0 115px 0;
  background: #050814;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.platform-suite-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

@media (max-width: 1200px) {
  .platform-suite-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (max-width: 640px) {
  .platform-suite-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.platform-suite-card {
  background: rgba(15, 23, 42, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}

.platform-suite-card:hover {
  background: rgba(26, 38, 64, 0.85) !important;
  border-color: rgba(59, 130, 246, 0.5) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.7), 0 0 25px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.suite-card-preview {
  position: relative;
  width: 100%;
  height: 155px;
  border-radius: 10px;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.suite-preview-topbar {
  height: 24px;
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 5px;
}

.suite-preview-topbar .ctrl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.suite-preview-topbar .dot-red { background: #ef4444; }
.suite-preview-topbar .dot-yellow { background: #f59e0b; }
.suite-preview-topbar .dot-blue { background: #3b82f6; }

.suite-preview-url {
  font-size: 0.65rem;
  color: #64748b;
  font-family: monospace;
  margin-left: auto;
  letter-spacing: 0.02em;
}

.suite-preview-img-wrap {
  width: 100%;
  height: calc(100% - 24px);
  position: relative;
  overflow: hidden;
  background: #090d16;
}

.suite-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}

.platform-suite-card:hover .suite-preview-img {
  transform: scale(1.05);
}

.suite-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 3px 9px;
  border-radius: 9999px;
  margin-bottom: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.suite-category-pill .cat-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 5px #3b82f6;
}

.suite-card-title {
  font-family: var(--font-nacelle), 'Outfit', sans-serif !important;
  font-size: 1.22rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 0.5rem 0 !important;
  letter-spacing: -0.015em !important;
}

.suite-card-desc {
  font-family: var(--font-inter), sans-serif !important;
  font-size: 0.88rem !important;
  color: #94a3b8 !important;
  line-height: 1.55 !important;
  margin: 0 0 1.25rem 0 !important;
}

.suite-card-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.suite-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: 100% !important;
  padding: 0.65rem 1rem !important;
  background: linear-gradient(to top, #2563eb, #3b82f6) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 4px 14px rgba(37, 99, 235, 0.35) !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: none !important;
}

.suite-btn-primary:hover {
  background: linear-gradient(to top, #1d4ed8, #2563eb) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 20px rgba(37, 99, 235, 0.5) !important;
  transform: translateY(-1px) !important;
  color: #ffffff !important;
}

.suite-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #64748b;
}

.suite-links-row a {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.suite-links-row a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.suite-links-row span {
  color: #475569;
  font-size: 0.7rem;
}

/* ==========================================================================
   COVERAGE SECTION — HIGH-TECH TELEMETRY DISPATCH MAP (CRUIP DARK)
   ========================================================================== */
.coverage-cruip-section {
  position: relative;
  padding: 100px 0;
  background: #030712 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.coverage-ambient-glow {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(3, 7, 18, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

.coverage-grid-layout {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .coverage-grid-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Left Column: Typography & Controls */
.coverage-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(30, 58, 138, 0.25);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.coverage-beacon-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
  animation: pulse-beacon 2s infinite ease-in-out;
}

@keyframes pulse-beacon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.coverage-heading-main {
  font-family: var(--font-nacelle), sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #f8fafc;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-align: left;
}

.coverage-desc-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 2rem;
  text-align: left;
}

/* Region Selector Tabs */
.coverage-region-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 1.5rem;
  background: rgba(15, 23, 42, 0.8);
  padding: 5px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: fit-content;
}

.coverage-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #94a3b8;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.coverage-tab-btn:hover {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.04);
}

.coverage-tab-btn.active {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.3);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.25);
}

.coverage-tab-btn .tab-count-badge {
  padding: 2px 7px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
  font-weight: 600;
  color: #cbd5e1;
}

.coverage-tab-btn.active .tab-count-badge {
  background: #2563eb;
  color: #ffffff;
}

/* City Pill Tags */
.coverage-city-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2.25rem;
}

.coverage-city-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  user-select: none;
}

.coverage-city-chip:hover {
  border-color: rgba(59, 130, 246, 0.6);
  color: #ffffff;
  background: rgba(30, 58, 138, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.coverage-city-chip.is-active-region {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(37, 99, 235, 0.15);
  color: #93c5fd;
  font-weight: 600;
}

.coverage-city-chip .chip-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3b82f6;
  opacity: 0.7;
}

.coverage-city-chip.is-active-region .chip-dot {
  background: #38bdf8;
  opacity: 1;
  box-shadow: 0 0 6px #38bdf8;
}

/* Quick Telemetry Stats Row */
.coverage-metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.coverage-metric-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.coverage-metric-value {
  font-family: var(--font-nacelle), sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #60a5fa;
  letter-spacing: -0.01em;
}

.coverage-metric-label {
  font-size: 0.76rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Right Column: High-Tech Telemetry Chassis */
.coverage-terminal-frame {
  background: rgba(11, 17, 33, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.28);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 45px rgba(56, 189, 248, 0.12);
  backdrop-filter: blur(16px);
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.coverage-terminal-frame:hover {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75), 0 0 55px rgba(56, 189, 248, 0.18);
}

.coverage-terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(15, 23, 42, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
}

.terminal-traffic-lights {
  display: flex;
  align-items: center;
  gap: 7px;
}

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

.traffic-dot.red { background: #ef4444; opacity: 0.85; }
.traffic-dot.yellow { background: #f59e0b; opacity: 0.85; }
.traffic-dot.green { background: #10b981; opacity: 0.85; }

.terminal-title-text {
  font-family: var(--font-nacelle), monospace;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #cbd5e1;
  text-transform: uppercase;
}

.terminal-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 9999px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #34d399;
}

.live-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
  animation: pulse-beacon 1.6s infinite ease-in-out;
}

/* Map Viewport & Layers */
.coverage-map-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.88;
  background: #040711;
  overflow: hidden;
}

.coverage-map-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.coverage-map-image-layer.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Radar Beacons Overlay */
.coverage-radar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.coverage-beacon-node {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  cursor: pointer;
}

.beacon-center-pin {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #38bdf8;
  border: 2px solid #ffffff;
  box-shadow: 0 0 12px #38bdf8, 0 0 20px rgba(56, 189, 248, 0.7);
  z-index: 2;
  transition: transform 0.2s ease;
}

.coverage-beacon-node:hover .beacon-center-pin {
  transform: scale(1.3);
}

.beacon-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid #38bdf8;
  opacity: 0.8;
  animation: beacon-expand 2.5s infinite cubic-bezier(0.1, 0.4, 0.2, 1);
  pointer-events: none;
}

.beacon-wave.delay-1 {
  animation-delay: 1.2s;
}

@keyframes beacon-expand {
  0% {
    width: 12px;
    height: 12px;
    opacity: 0.9;
    border-color: #38bdf8;
  }
  100% {
    width: 65px;
    height: 65px;
    opacity: 0;
    border-color: #2563eb;
  }
}

/* Tooltip on Beacon */
.beacon-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 5px 10px;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #f8fafc;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 10;
}

.coverage-beacon-node:hover .beacon-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Floating Telemetry HUD Card */
.coverage-hud-card {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: rgba(11, 17, 33, 0.88);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 10px;
  padding: 10px 14px;
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 6;
}

.hud-info-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hud-radar-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.hud-radar-icon svg {
  width: 16px;
  height: 16px;
  animation: radar-sweep 4s linear infinite;
}

@keyframes radar-sweep {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hud-text-stack {
  display: flex;
  flex-direction: column;
}

.hud-main-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #f8fafc;
}

.hud-sub-label {
  font-size: 0.7rem;
  color: #94a3b8;
}

.hud-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #60a5fa;
  padding: 4px 9px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 6px;
  white-space: nowrap;
}

/* Terminal Footer */
.coverage-terminal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  color: #94a3b8;
}

.terminal-footer-status {
  display: flex;
  align-items: center;
  gap: 6px;
}

.terminal-footer-status span {
  color: #38bdf8;
}

.terminal-footer-link {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.terminal-footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ==========================================================================
   PROVIDERS PAGE — CRUIP OPEN PRO DARK DESIGN SYSTEM EXTENSIONS
   ========================================================================== */
.pro-page-section {
  position: relative;
  background: #030712 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pro-page-section.alt-bg {
  background: #070d1a !important;
}

/* Hero Section on Providers */
.pro-hero-section {
  position: relative;
  padding: 100px 0 80px !important;
  background: #030712 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.pro-hero-ambient {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.14) 0%, rgba(3, 7, 18, 0) 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(50px);
}

.pro-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(30, 58, 138, 0.25);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
}

.pro-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
  animation: pulse-beacon 2s infinite ease-in-out;
}

/* Browser Window Frame for Providers */
.pro-browser-frame {
  background: rgba(11, 17, 33, 0.9);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(56, 189, 248, 0.12);
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.pro-browser-frame:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(56, 189, 248, 0.18);
}

.pro-browser-topbar {
  background: rgba(15, 23, 42, 0.95);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pro-browser-url-pill {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3px 14px;
  font-size: 0.72rem;
  color: #94a3b8;
  font-family: monospace;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Cruip Dark Cards for Providers */
.pro-card-glass {
  background: rgba(15, 23, 42, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 16px !important;
  padding: 2rem !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex;
  flex-direction: column;
}

.pro-card-glass:hover {
  background: rgba(30, 41, 59, 0.85) !important;
  border-color: rgba(59, 130, 246, 0.5) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.7), 0 0 25px rgba(59, 130, 246, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.pro-card-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.15);
  flex-shrink: 0;
}

.pro-card-title {
  font-family: var(--font-nacelle), 'Outfit', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #f8fafc !important;
  margin-bottom: 0.65rem !important;
  letter-spacing: -0.01em !important;
}

.pro-card-desc {
  font-family: var(--font-inter), sans-serif !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  color: #94a3b8 !important;
  margin: 0 !important;
}

/* Stepper Component */
.pro-step-bubble {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: rgba(15, 23, 42, 0.85) !important;
  border: 2px solid rgba(255, 255, 255, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  color: #94a3b8 !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  z-index: 2 !important;
  backdrop-filter: blur(8px) !important;
}

.pro-step-bubble.active, 
.pro-step-bubble:hover {
  border-color: #60a5fa !important;
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.1) !important;
}

.pro-flow-line {
  position: absolute !important;
  top: 24px !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  z-index: 1 !important;
}

#pro-step-explanation {
  background: rgba(15, 23, 42, 0.85) !important;
  border: 1px solid rgba(59, 130, 246, 0.3) !important;
  border-radius: 16px !important;
  padding: 2.25rem !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(59, 130, 246, 0.1) !important;
  backdrop-filter: blur(16px) !important;
  text-align: center !important;
}

#pro-step-title {
  color: #ffffff !important;
  font-family: var(--font-nacelle), 'Outfit', sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.75rem !important;
}

#pro-step-desc {
  color: #cbd5e1 !important;
  font-size: 0.98rem !important;
  line-height: 1.65 !important;
}

/* Dispatch Simulator Capsule Switcher */
.simulator-tab-capsule {
  display: inline-flex;
  gap: 8px;
  background: rgba(15, 23, 42, 0.8);
  padding: 5px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.simulator-toggle-btn {
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  color: #94a3b8 !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.simulator-toggle-btn:hover {
  color: #f8fafc !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.simulator-toggle-btn.active {
  color: #ffffff !important;
  background: rgba(37, 99, 235, 0.35) !important;
  border-color: rgba(59, 130, 246, 0.5) !important;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.25) !important;
}

/* Smartphone Simulator Chassis */
.simulator-phone {
  background: #030712 !important;
  border: 10px solid #1e293b !important;
  border-radius: 36px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(59, 130, 246, 0.15) !important;
  overflow: hidden !important;
  position: relative !important;
}

/* Pro Tools Tabs */
.tools-tab-btn {
  width: 100% !important;
  text-align: left !important;
  padding: 1.15rem 1.4rem !important;
  background: rgba(15, 23, 42, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  color: #cbd5e1 !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin-bottom: 0.75rem !important;
  position: relative !important;
  backdrop-filter: blur(8px) !important;
}

.tools-tab-btn:hover {
  background: rgba(30, 41, 59, 0.8) !important;
  border-color: rgba(59, 130, 246, 0.35) !important;
  color: #ffffff !important;
  transform: translateX(3px) !important;
}

.tools-tab-btn.active {
  background: rgba(30, 58, 138, 0.3) !important;
  border-color: rgba(59, 130, 246, 0.6) !important;
  color: #ffffff !important;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2), inset 3px 0 0 #3b82f6 !important;
}

.tools-tab-btn strong {
  color: #f8fafc !important;
  font-size: 0.96rem !important;
  display: block !important;
}

.tools-tab-btn div {
  color: #94a3b8 !important;
  font-size: 0.82rem !important;
  line-height: 1.5 !important;
}

.tools-tab-btn.active div {
  color: #93c5fd !important;
}

/* Bidding Timeline Nodes */
.pro-bidding-node {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 28px;
}

.pro-bidding-dot {
  position: absolute;
  left: -6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #38bdf8;
  border: 2px solid #030712;
  box-shadow: 0 0 10px #38bdf8;
}

/* Radiant Atmospheric Final CTA Stage */
.pro-cta-stage {
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.25) 0%, rgba(3, 7, 18, 0.95) 75%, #030712 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 100px 0 !important;
  text-align: center !important;
  overflow: hidden;
}

.pro-cta-stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), transparent);
}



