/* ==========================================================================
   La Géniale — Ultra High-Contrast Luxury Design System
   Pure White Typography (#FFFFFF), Radiant Gold & 1200px Uniform Grid
   ========================================================================== */

:root {
  --bg-black: #06080D;
  --bg-dark: #0A0D15;
  --bg-darker: #030305;
  
  /* Unified Glassmorphism Signature Style — Pure Obsidian Black Luxury */
  --glass-bg: rgba(6, 8, 13, 0.78);
  --glass-bg-hover: rgba(10, 13, 20, 0.90);
  --glass-bg-inner: rgba(0, 0, 0, 0.60);
  --glass-blur: blur(24px);
  
  --border-subtle: rgba(255, 255, 255, 0.09);
  --border-hover: rgba(255, 255, 255, 0.22);
  /* Vibrant Rich Radiant Emerald Green (OuiTaxi Signature #00D174) */
  --primary-green: #00D174;
  --primary-green-gradient: linear-gradient(135deg, #05DF72 0%, #00D174 60%, #00B360 100%);
  --gold: #00D174;
  --gold-light: #5CFFB0;
  --gold-dark: #00B360;
  --gold-gradient: linear-gradient(135deg, #05DF72 0%, #00D174 60%, #00B360 100%);
  --gold-glow: rgba(0, 209, 116, 0.25);
  --border-glow: rgba(0, 209, 116, 0.35);
  
  /* Pure White High-Contrast Typography */
  --text-pure: #FFFFFF;
  --text-muted: #FFFFFF;
  --text-dim: #FFFFFF;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Unified 5px Radius System */
  --radius-xs: 5px;
  --radius-sm: 5px;
  --radius-md: 5px;
  --radius-lg: 5px;
  --radius-pill: 5px;
  
  --shadow-main: 0 14px 35px rgba(0, 0, 0, 0.60), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --shadow-hover: 0 18px 45px rgba(0, 0, 0, 0.80), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-black);
  color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Atmospheric Pure Obsidian Dark Background */
body.lg-fluid-page {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--bg-black);
  background-image: 
    radial-gradient(at 15% 15%, rgba(0, 209, 116, 0.06) 0px, transparent 50%),
    radial-gradient(at 85% 25%, rgba(0, 209, 116, 0.04) 0px, transparent 50%),
    radial-gradient(at 50% 55%, rgba(0, 209, 116, 0.03) 0px, transparent 60%),
    radial-gradient(at 20% 80%, rgba(0, 209, 116, 0.04) 0px, transparent 50%),
    radial-gradient(at 75% 95%, rgba(0, 209, 116, 0.03) 0px, transparent 50%);
}

body.lg-fluid-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img, svg, video {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Generous Uniform Section Spacing & Refined Luminous Visual Separators
   ========================================================================== */
.section,
.bento-section,
.compare-section,
.faq-section {
  padding: 110px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Centered Refined Glass Luminous Divider between sections */
.bento-section::before,
.compare-section::before,
.partners-section::before,
.drivers-section::before,
.faq-section::before,
.contact-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(180px, 35vw, 400px);
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
  .section,
  .bento-section,
  .compare-section,
  .faq-section {
    padding: 70px 0;
  }
}

/* Alternating Atmosphere Tints */
.compare-section {
  background: rgba(0, 0, 0, 0.32);
}

.drivers-section {
  background: rgba(10, 13, 21, 0.45);
}

.contact-section {
  background: rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   Top Scroll Progress Bar
   ========================================================================== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold-gradient);
  z-index: 2000;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 8px rgba(0, 209, 116, 0.6);
}

/* ==========================================================================
   Floating Pill Navigation Bar (OuiTaxi Signature 100% Identical)
   ========================================================================== */
.header-wrapper {
  position: sticky !important;
  top: 16px !important;
  margin-top: 16px !important;
  z-index: 1000 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}

header.navbar-pill,
#main-navbar.navbar-pill,
.navbar-pill {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  background: var(--glass-bg) !important;
  backdrop-filter: var(--glass-blur) !important;
  -webkit-backdrop-filter: var(--glass-blur) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: var(--radius-pill) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 14px 10px 24px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 209, 116, 0.08) !important;
  transition: var(--transition) !important;
  box-sizing: border-box !important;
}

header.navbar-pill:hover,
#main-navbar.navbar-pill:hover,
.navbar-pill:hover {
  border-color: rgba(0, 209, 116, 0.35) !important;
  box-shadow: 0 14px 35px -8px rgba(0, 209, 116, 0.16), 0 0 0 1px rgba(0, 209, 116, 0.12) !important;
}

header.navbar-pill.scrolled,
#main-navbar.navbar-pill.scrolled,
.navbar-pill.scrolled {
  background: rgba(6, 8, 13, 0.94) !important;
  border-color: rgba(0, 209, 116, 0.25) !important;
  box-shadow: 0 14px 35px -8px rgba(0, 209, 116, 0.14), 0 0 0 1px rgba(0, 209, 116, 0.10) !important;
}

.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.nav-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.nav-brand-text {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.nav-brand-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: baseline;
  white-space: nowrap;
}

.nav-brand-inline .nav-brand-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  flex-shrink: 0;
  display: inline-block;
}

.nav-brand-inline .nav-brand-text {
  font-size: 0.98em;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin: 0 auto;
  flex: 1 1 auto;
}

.nav-actions-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: #FFFFFF;
  transition: var(--transition);
  padding: 4px 10px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none;
}

.nav-link:hover {
  color: #00D174 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.nav-link.active {
  color: #00D174 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  font-weight: 700;
}

/* Radiant Gold Satin Buttons */
.nav-btn-glow, .btn-glowing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 700;
  background: var(--gold-gradient);
  color: #06080D;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0, 209, 116, 0.28);
  animation: ctaGlow 2.2s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 209, 116, 0.6), 0 0 20px 0 rgba(0, 209, 116, 0.35);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 209, 116, 0), 0 0 35px 8px rgba(0, 209, 116, 0.55);
  }
}

.nav-btn-glow:hover, .btn-glowing:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline-pill:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.burger-btn {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  padding: 6px;
}

/* Mobile Drawer (Matches navbar-pill 100% Width) */
.mobile-drawer {
  display: none;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  max-width: 1200px !important;
  margin-top: 8px !important;
  background: rgba(6, 8, 13, 0.96) !important;
  backdrop-filter: blur(25px) !important;
  -webkit-backdrop-filter: blur(25px) !important;
  border: 1px solid rgba(0, 209, 116, 0.25) !important;
  border-radius: var(--radius-pill) !important;
  padding: 16px 20px !important;
  flex-direction: column !important;
  gap: 6px !important;
  z-index: 999 !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 209, 116, 0.12) !important;
  transform: translateY(-8px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
}

.mobile-drawer.open {
  display: flex !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.mobile-nav-link {
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: #FFFFFF !important;
  padding: 10px 14px !important;
  border-radius: 5px !important;
  transition: all 0.2s ease !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.mobile-nav-link:hover {
  background: rgba(0, 209, 116, 0.08) !important;
  color: #00D174 !important;
  transform: translateX(4px) !important;
}

.mobile-nav-link.active {
  color: #00D174 !important;
  background: rgba(0, 209, 116, 0.10) !important;
  font-weight: 700 !important;
}

@media (max-width: 960px) {
  .nav-menu {
    display: none;
  }
  .burger-btn {
    display: block;
  }
}

/* ==========================================================================
   Section Headers & Badges (5px Radius)
   ========================================================================== */
.sec-title-box {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px auto;
}

.sec-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(0, 209, 116, 0.10);
  border: 1px solid rgba(0, 209, 116, 0.30);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sec-h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -0.8px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.sec-desc {
  font-size: clamp(15px, 1.8vw, 16.5px);
  color: #FFFFFF;
  line-height: 1.65;
}

/* ==========================================================================
   Section Title Cinematic Staggered Reveal Animations (OuiTaxi 2026)
   ========================================================================== */
.sec-title-box .sec-pill-tag,
.driver-card-header .sec-pill-tag {
  opacity: 0;
  transform: translateY(-14px) scale(0.96);
  filter: blur(4px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.05s,
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.05s,
              filter 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
  will-change: opacity, transform, filter;
}

.sec-title-box .sec-h2,
.driver-card-header .driver-h2 {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  filter: blur(6px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.16s,
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.16s,
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.16s;
  will-change: opacity, transform, filter;
}

.sec-title-box .sec-desc,
.driver-card-header .driver-intro-desc {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.28s,
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.28s,
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.28s;
  will-change: opacity, transform, filter;
}

/* Revealed States */
.is-revealed .sec-pill-tag,
.is-visible .sec-pill-tag,
.sec-title-box.is-revealed .sec-pill-tag,
.sec-title-box.is-visible .sec-pill-tag,
.driver-full-card.is-revealed .sec-pill-tag,
.driver-full-card.is-visible .sec-pill-tag {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0px) !important;
}

.is-revealed .sec-h2,
.is-visible .sec-h2,
.sec-title-box.is-revealed .sec-h2,
.sec-title-box.is-visible .sec-h2,
.driver-full-card.is-revealed .driver-h2,
.driver-full-card.is-visible .driver-h2 {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0px) !important;
}

.is-revealed .sec-desc,
.is-visible .sec-desc,
.sec-title-box.is-revealed .sec-desc,
.sec-title-box.is-visible .sec-desc,
.driver-full-card.is-revealed .driver-intro-desc,
.driver-full-card.is-visible .driver-intro-desc {
  opacity: 1 !important;
  transform: translateY(0) !important;
  filter: blur(0px) !important;
}

/* ==========================================================================
   Hero Section (2-Column Standard)
   ========================================================================== */
.hero-sec {
  padding: 120px 0 110px 0;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .hero-sec {
    padding: 90px 0 70px 0;
  }
}

/* ==========================================================================
   Hero Cinematic Entrance Animations (OuiTaxi 2026 / Apple Standard)
   ========================================================================== */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

@keyframes heroSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-16px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}

@keyframes heroMockupIn {
  0% {
    opacity: 0;
    transform: translateX(35px) scale(0.96);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0px);
  }
}

.hero-sec .sec-pill-tag {
  animation: heroSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.hero-h1 .gradient-gold {
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.hero-h1-sub {
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

.hero-subtext.hero-subtext-enlarged,
.hero-subtext-enlarged {
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both;
}

.hero-cta-box {
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.60s both;
}

.hero-trust-strip {
  animation: heroFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.74s both;
}

.hero-mockup-wrapper {
  animation: heroMockupIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.hero-glow-bg {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 209, 116, 0.10) 0%, rgba(0, 209, 116, 0.02) 45%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 52px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .hero-content-col {
    display: contents;
  }
}

.hero-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-h1 {
  font-size: clamp(32px, 4.2vw, 50px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: #FFFFFF;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  filter: drop-shadow(0 2px 22px rgba(0, 209, 116, 0.28));
}

.hero-h1-sub {
  display: block;
  font-size: 0.88em;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.8px;
  line-height: 1.22;
}

.hero-subtext {
  font-size: clamp(15px, 1.8vw, 17px);
  color: #FFFFFF;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-subtext.hero-subtext-enlarged,
.hero-subtext-enlarged {
  font-size: clamp(16px, 1.9vw, 19px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  letter-spacing: -0.2px;
}

.hero-subtext-enlarged strong {
  color: #FFFFFF;
  font-weight: 700;
}

.hero-cta-box {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-cta-box .btn-outline-pill {
  padding: 16px 36px;
  font-size: 18px;
  font-weight: 700;
  gap: 12px;
  border-width: 2px;
  border-radius: var(--radius-pill);
}

.hero-cta-box .btn-outline-pill svg {
  width: 28px;
  height: 28px;
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #FFFFFF;
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.trust-sep {
  color: rgba(255, 255, 255, 0.30);
  font-size: 14px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  animation: dotPulse 2s infinite ease-in-out;
  display: inline-block;
  margin-right: 2px;
}

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

/* ==========================================================================
   Samsung Galaxy S25 Ultra Realistic Device Mockup
   ========================================================================== */
.hero-mockup-col {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-mockup-wrapper {
  position: relative;
  width: 280px;
  max-width: 100%;
}

.mockup-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(0, 209, 116, 0.12) 0%, rgba(255, 255, 255, 0.015) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(24px);
}

@keyframes phoneFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

.s25-ultra-device {
  position: relative;
  width: 274px;
  height: 565px;
  background: #141720;
  border-radius: 18px;
  border: 4px solid #232734;
  outline: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 
    0 30px 70px rgba(0, 0, 0, 0.9),
    0 10px 30px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 0 auto;
  animation: phoneFloat 6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
}

/* Subtle Top Earpiece Speaker */
.s25-speaker-earpiece {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2.5px;
  background: #2E3344;
  border-radius: 2px;
  z-index: 15;
}

/* Centered Infinity-O Camera Punch Hole */
.s25-punchhole {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  background: #060709;
  border-radius: 50%;
  z-index: 15;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.20);
}

/* OLED Display */
.s25-screen-wrapper {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.s25-video-feed {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Bento Grid Section (2x2 - 1200px Width & Uniform Equal Height)
   ========================================================================== */
.bento-section {
  position: relative;
}

.bento-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 28px;
  width: 100%;
}

@media (max-width: 768px) {
  .bento-2x2 {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.bento-box {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-main);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  box-sizing: border-box;
}

.bento-box:hover {
  border-color: rgba(0, 209, 116, 0.28);
  background: rgba(12, 17, 26, 0.88);
  transform: translateY(-2px);
  box-shadow: 0 14px 35px -8px rgba(0, 209, 116, 0.12), 0 0 20px rgba(0, 209, 116, 0.05);
}

.bento-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  min-height: 38px;
}

.bento-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
}

.bento-neon-icon {
  width: 38px;
  height: 38px;
  border-radius: 5px;
  background: rgba(0, 209, 116, 0.10);
  border: 1px solid rgba(0, 209, 116, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 209, 116, 0.12);
}

.bento-num-tag {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  background: rgba(0, 209, 116, 0.10);
  border: 1px solid rgba(0, 209, 116, 0.25);
  padding: 4px 8px;
  border-radius: 5px;
  line-height: 1;
  flex-shrink: 0;
}

.bento-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.bento-pill-badge {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-gold {
  background: rgba(0, 209, 116, 0.12);
  border: 1px solid rgba(0, 209, 116, 0.30);
  color: var(--gold);
}

.bento-card-desc {
  font-size: 14.5px;
  color: #FFFFFF;
  line-height: 1.65;
  flex: 1 1 auto;
}

/* ==========================================================================
   Comparison Section (1200px Width)
   ========================================================================== */
.compare-card {
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-main);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.compare-table th {
  padding: 22px 28px;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.35);
}

.compare-table td {
  padding: 20px 28px;
  font-size: 14px;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
  transition: background 0.25s ease;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.col-criteria {
  width: 32%;
  color: #FFFFFF;
}

.col-competitor {
  width: 34%;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.15);
}

.col-lageniale {
  width: 34%;
  color: #FFFFFF;
  background: rgba(0, 209, 116, 0.04);
}

.compare-table th.highlight-col,
.compare-table td.highlight-col {
  background: rgba(0, 209, 116, 0.06);
  border-left: 1px solid rgba(0, 209, 116, 0.20);
}

/* OuiTaxi Interactive Row Hover Effect */
.compare-table tbody tr {
  transition: background 0.25s ease;
  cursor: default;
}

.compare-table tbody tr:hover td {
  background: rgba(0, 209, 116, 0.08) !important;
}

.compare-table tbody tr:hover td.highlight-col {
  background: rgba(0, 209, 116, 0.16) !important;
}

.compare-table tbody tr:hover .check-icon-svg {
  box-shadow: 0 0 14px rgba(0, 209, 116, 0.6);
  transform: scale(1.1);
}

.compare-table tbody tr:hover .cross-icon-svg {
  box-shadow: 0 0 10px rgba(255, 90, 95, 0.35);
  transform: scale(1.05);
}

.compare-head-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}

.badge-competitor {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.badge-lageniale {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold-gradient);
  color: #06080D;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 15px rgba(0, 209, 116, 0.35);
}

.badge-lageniale .nav-brand-dot {
  width: 6px;
  height: 6px;
  background: #06080D;
  box-shadow: 0 0 6px rgba(6, 8, 13, 0.4);
}

.badge-lageniale .nav-brand-text {
  color: #06080D !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.6px;
}

.compare-mobile-carousel-wrap {
  display: none;
}

.compare-row-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
}

.cross-icon-svg {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: rgba(255, 90, 95, 0.12);
  border: 1px solid rgba(255, 90, 95, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-icon-svg {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: rgba(0, 209, 116, 0.15);
  border: 1px solid rgba(0, 209, 116, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}



/* Dual-Direction Split Title Animation (OuiTaxi Signature) */
.split-title-anim {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
  overflow: hidden;
}

.title-slide-left {
  display: block;
  transform: translateX(-50px);
  opacity: 0;
  color: #FFFFFF;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s ease;
  will-change: transform, opacity;
}

.title-slide-right {
  display: block;
  transform: translateX(50px);
  opacity: 0;
  color: var(--gold);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.12s, opacity 0.85s ease 0.12s;
  will-change: transform, opacity;
}

.reveal-on-scroll.is-revealed .title-slide-left,
.reveal-on-scroll.is-visible .title-slide-left,
.reveal-on-scroll.is-revealed .title-slide-right,
.reveal-on-scroll.is-visible .title-slide-right {
  transform: translateX(0) !important;
  opacity: 1 !important;
}

.bento-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  width: 100%;
}

@media (max-width: 960px) {
  .bento-3col {
    grid-template-columns: 1fr;
  }
}

.partner-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.partner-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.partner-neon-icon {
  width: 42px;
  height: 42px;
  border-radius: 5px;
  background: rgba(0, 209, 116, 0.10);
  border: 1px solid rgba(0, 209, 116, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 209, 116, 0.12);
}

.partner-category-badge {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gold);
}

.partner-tags-wrap {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.partner-tag {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 8px;
  border-radius: 5px;
  color: #FFFFFF;
}

.partner-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  margin-top: 14px;
}

.partner-stars-svg {
  display: flex;
  align-items: center;
  gap: 3px;
}

.partner-sub {
  font-size: 12px;
  color: #FFFFFF;
}

.partners-map-cta-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}

.map-explore-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 14px 34px !important;
  font-size: 14.5px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  gap: 10px !important;
  max-width: 100%;
}

.map-explore-btn svg {
  flex-shrink: 0;
}

.map-explore-btn span {
  text-align: center;
}

@media (max-width: 768px) {
  .partners-map-cta-wrap {
    margin-top: 28px;
    padding: 0 10px;
  }
  .map-explore-btn {
    width: 100%;
    max-width: 380px;
    padding: 13px 18px !important;
    font-size: 13.5px !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

/* ==========================================================================
   Driver Full Card (1200px Width - 4 Connected Steps + Bottom Download CTA)
   ========================================================================== */
.driver-full-card {
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  box-shadow: var(--shadow-main);
  transition: var(--transition);
}

.driver-full-card:hover {
  border-color: rgba(0, 209, 116, 0.22);
  box-shadow: 0 16px 36px -8px rgba(0, 209, 116, 0.08), 0 0 20px rgba(0, 209, 116, 0.03);
}

.driver-card-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.driver-h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  color: #FFFFFF;
  margin: 14px 0 10px 0;
  line-height: 1.25;
  text-align: center;
}

.driver-intro-desc {
  font-size: 15px;
  color: #FFFFFF;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 680px;
  text-align: center;
}

/* 4 Steps Grid */
.rider-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
}

.rider-step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
}

.rider-step-card:hover {
  border-color: rgba(0, 209, 116, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 209, 116, 0.1);
  background: rgba(0, 209, 116, 0.04);
}

.rider-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.timeline-node-badge {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(0, 209, 116, 0.12);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: monospace;
  font-size: 13.5px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(0, 209, 116, 0.25);
  transition: var(--transition);
}

.timeline-step-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.timeline-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  margin: 0;
}

.timeline-step-desc {
  font-size: 13.5px;
  color: #FFFFFF;
  line-height: 1.55;
  opacity: 0.9;
  margin: 0;
}

/* Bottom Actions & Download Buttons Centered */
.driver-bottom-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  width: 100%;
}

.driver-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.driver-sub-invite {
  margin-top: 4px;
}

.driver-invite-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.driver-invite-link:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

@media (max-width: 960px) {
  .driver-full-card {
    padding: 34px 22px;
    gap: 28px;
  }
  .rider-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 580px) {
  .rider-steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .driver-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .driver-cta-buttons a {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   FAQ Section Accordion (1200px Width)
   ========================================================================== */
.faq-list {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-row {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-main);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.faq-row:hover {
  border-color: rgba(0, 209, 116, 0.35);
  background: var(--glass-bg);
  box-shadow: 0 10px 28px -6px rgba(0, 209, 116, 0.12);
}

.faq-row.active {
  border-color: rgba(0, 209, 116, 0.35);
  background: var(--glass-bg);
  box-shadow: 0 12px 32px -6px rgba(0, 209, 116, 0.14);
}

.faq-header {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 16.5px;
  font-weight: 700;
  color: #FFFFFF;
  user-select: none;
}

.faq-header span:first-child {
  flex: 1 1 auto;
  color: #FFFFFF;
}

.faq-row.active .faq-header span:first-child {
  color: #FFFFFF;
}

.faq-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-toggle-icon svg {
  stroke: #00D174;
}

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

.faq-content {
  padding: 0 32px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 15px;
  color: #FFFFFF;
  line-height: 1.7;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, padding 0.4s ease;
}

.faq-row.active .faq-content {
  max-height: 400px;
  opacity: 1;
  padding: 0 32px 28px 32px;
}

/* ==========================================================================
   Contact Section (1200px 2-Column Split Card - Haute Précision)
   ========================================================================== */
.contact-split-card {
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 50px 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: stretch;
  box-shadow: var(--shadow-main);
  box-sizing: border-box;
  transition: var(--transition);
}

.contact-split-card:hover {
  border-color: rgba(0, 209, 116, 0.22);
  box-shadow: 0 16px 36px -8px rgba(0, 209, 116, 0.08), 0 0 20px rgba(0, 209, 116, 0.03);
}

@media (max-width: 960px) {
  .contact-split-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 36px;
  }
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-h3 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: #FFFFFF;
  margin: 12px 0 10px;
  line-height: 1.22;
}

.contact-info-desc {
  font-size: 15px;
  color: #FFFFFF;
  line-height: 1.65;
  margin-bottom: 26px;
}

.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact-channel-card:hover {
  border-color: rgba(0, 209, 116, 0.20);
  background: rgba(0, 209, 116, 0.05);
  transform: translateX(3px);
}

.channel-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-channel-card:hover .channel-icon-wrap {
  background: rgba(0, 209, 116, 0.15);
  box-shadow: 0 0 12px rgba(0, 209, 116, 0.25);
}

.channel-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.channel-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.channel-val {
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  transition: var(--transition);
}

.channel-val:hover {
  color: var(--gold-light);
}

.channel-desc {
  font-size: 13px;
  color: #FFFFFF;
  line-height: 1.4;
}

.channel-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(0, 209, 116, 0.15);
  border: 1px solid rgba(0, 209, 116, 0.35);
  color: var(--gold);
  white-space: nowrap;
}

.contact-trust-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #FFFFFF;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 580px) {
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.form-label {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  margin-bottom: 7px !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  letter-spacing: -0.1px;
}

.req-star {
  color: var(--gold) !important;
  font-weight: 800;
  font-size: 14px;
}

.form-input, .form-textarea, .custom-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: #FFFFFF !important;
  font-family: inherit;
  font-size: 14.5px;
  transition: var(--transition);
  outline: none;
  box-sizing: border-box;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.70) !important;
  opacity: 1 !important;
}

.form-input:focus, .form-textarea:focus, .custom-select:focus {
  border-color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 16px rgba(0, 209, 116, 0.30) !important;
  color: #FFFFFF !important;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2300D174' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
  color: #FFFFFF !important;
}

.custom-select option {
  background: #0B0E17 !important;
  color: #FFFFFF !important;
  padding: 10px;
}

.contact-alert-success, .contact-alert-error {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-alert-success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.40);
}

.contact-alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.40);
}

.success-check {
  color: #22c55e;
  font-weight: 900;
  font-size: 18px;
}

.error-cross {
  color: #ef4444;
  font-weight: 900;
  font-size: 18px;
}

/* ==========================================================================
   Luxury Footer (1200px Width)
   ========================================================================== */
.footer-sec {
  background: #030407;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 35px 0;
  margin-top: 0 !important;
  position: relative;
  width: 100%;
}

.footer-grid-wrap {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr 1.1fr;
  gap: 36px;
  margin-bottom: 48px;
  align-items: start;
}

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

@media (max-width: 640px) {
  .footer-grid-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-row .nav-brand-text {
  color: #FFFFFF !important;
  font-weight: 900 !important;
  font-size: 18px !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
}

.footer-brand-desc {
  font-size: 13.5px !important;
  color: #FFFFFF !important;
  opacity: 1 !important;
  line-height: 1.65 !important;
  max-width: 360px;
  margin: 0;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.footer-links-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 0;
  margin: 0;
  text-align: left;
  align-items: flex-start;
}

.footer-nav-list a {
  font-size: 13.5px;
  color: #FFFFFF;
  transition: var(--transition);
  display: inline-block;
  padding: 2px 0;
}

.footer-nav-list a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-app-desc {
  font-size: 13.5px;
  color: #FFFFFF;
  margin-bottom: 14px;
  line-height: 1.5;
}

.footer-app-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.footer-app-btns .btn-glowing,
.footer-app-btns .btn-outline-pill {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 22px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  justify-content: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  border-radius: var(--radius-pill) !important;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #FFFFFF;
  text-align: center;
  width: 100%;
}

.footer-bottom-bar p {
  text-align: center;
  margin: 0 auto;
  color: #FFFFFF;
}

/* ==========================================================================
   Cinematic Apple/Linear Blur-to-Sharp Scroll Reveal Animations (OuiTaxi Standard)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(6px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-revealed,
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

.stagger-1 { transition-delay: 0.05s !important; }
.stagger-2 { transition-delay: 0.12s !important; }
.stagger-3 { transition-delay: 0.19s !important; }
.stagger-4 { transition-delay: 0.26s !important; }
.stagger-5 { transition-delay: 0.33s !important; }
.stagger-6 { transition-delay: 0.40s !important; }

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Perfection (OuiTaxi Standard 2026)
   ========================================================================== */

@media (max-width: 960px) {
  .container {
    padding: 0 18px;
  }

  .header-wrapper {
    top: 14px;
    margin-top: 14px;
    padding: 0 18px;
  }

  .navbar-pill {
    padding: 8px 14px 8px 18px !important;
  }

  .nav-menu {
    display: none !important;
  }

  .burger-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .hero-sec {
    padding: 60px 0 60px 0;
  }

  .hero-grid-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .hero-content-col {
    display: contents;
  }

  .sec-pill-tag {
    order: 1;
    margin: 0 auto 16px auto;
  }

  .hero-h1 {
    order: 2;
    font-size: clamp(28px, 6vw, 40px);
    text-align: center;
    margin-bottom: 16px;
  }

  .hero-subtext,
  .hero-subtext-enlarged {
    order: 3;
    text-align: center;
    margin: 0 auto 28px auto;
  }

  .hero-mockup-col {
    order: 4;
    width: 100%;
    margin-bottom: 32px;
  }

  .hero-cta-box {
    order: 5;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
  }

  .hero-trust-strip {
    order: 6;
    justify-content: center;
    margin: 0 auto;
  }

  .bento-2x2 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bento-3col {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .driver-split-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 36px;
  }

  .contact-split-card {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 36px;
  }

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

@media (max-width: 768px) {
  /* Container & Sections */
  .container {
    padding: 0 16px;
  }

  .section,
  .bento-section,
  .compare-section,
  .faq-section {
    padding: 55px 0;
  }

  /* Navigation Bar */
  .header-wrapper {
    top: 10px;
    margin-top: 10px;
    padding: 0 16px;
  }

  .navbar-pill {
    padding: 7px 12px 7px 16px !important;
  }

  .nav-actions-wrap .nav-btn-glow {
    display: none !important;
  }

  .mobile-drawer {
    padding: 14px 16px;
    gap: 6px;
  }

  .mobile-nav-link {
    font-size: 14px;
    padding: 9px 12px;
  }

  /* Section Headers */
  .sec-title-box {
    margin-bottom: 32px;
  }

  .sec-pill-tag {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .sec-h2 {
    font-size: 24px !important;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
  }

  .sec-desc {
    font-size: 14px !important;
    line-height: 1.55;
  }

  /* Hero Section */
  .hero-sec {
    padding: 40px 0 50px 0;
  }

  .hero-h1 {
    font-size: 27px !important;
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin-bottom: 14px;
  }

  .hero-subtext-enlarged {
    font-size: 14.5px !important;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .hero-cta-box {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .hero-cta-box .btn-glowing,
  .hero-cta-box .btn-outline-pill {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16.5px;
    font-weight: 700;
  }

  .hero-trust-strip {
    justify-content: center;
    gap: 6px 10px;
    margin-top: 18px;
    font-size: 11.5px;
  }

  .trust-item {
    font-size: 11.5px;
  }

  .s25-ultra-device {
    width: 235px;
    height: 485px;
    border-width: 3px;
  }

  /* Bento 2x2 */
  .bento-2x2 {
    gap: 14px;
  }

  .bento-box {
    padding: 20px 18px;
  }

  .bento-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    min-height: auto;
  }

  .bento-title-group {
    gap: 10px;
    width: 100%;
  }

  .bento-card-title {
    font-size: 16px !important;
    line-height: 1.3;
  }

  .bento-pill-badge {
    font-size: 10.5px;
    padding: 3px 8px;
    align-self: flex-start;
  }

  .bento-card-desc {
    font-size: 13.5px !important;
    line-height: 1.55;
  }

  /* Comparison Section: Mobile Horizontal Swipeable Carousel */
  .compare-desktop-view {
    display: none !important;
  }

  .compare-mobile-carousel-wrap {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 16px !important;
  }

  .compare-carousel-track {
    display: flex !important;
    gap: 14px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
    padding: 6px 4px 10px 4px !important;
    margin: 0 -4px !important;
  }

  .compare-carousel-track::-webkit-scrollbar {
    display: none !important;
  }

  .compare-slide-card {
    flex: 0 0 88% !important;
    max-width: 360px !important;
    min-width: 280px !important;
    scroll-snap-align: center !important;
    background: rgba(6, 8, 13, 0.94) !important;
    backdrop-filter: blur(25px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(150%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 5px !important;
    padding: 20px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.65), 0 0 20px rgba(0, 209, 116, 0.06) !important;
    box-sizing: border-box !important;
    transition: border-color 0.25s ease !important;
  }

  .cmp-card-header {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-bottom: 12px !important;
  }

  .cmp-step-num {
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    color: var(--gold) !important;
    text-transform: uppercase !important;
  }

  .cmp-card-title {
    font-size: 16.5px !important;
    font-weight: 800 !important;
    color: #FFFFFF !important;
    margin: 0 !important;
    line-height: 1.35 !important;
  }

  .cmp-box-traditional {
    background: rgba(255, 90, 95, 0.04) !important;
    border: 1px solid rgba(255, 90, 95, 0.18) !important;
    border-radius: 5px !important;
    padding: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  .cmp-box-tag.tag-bad {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    color: #FF5A5F !important;
    text-transform: uppercase !important;
  }

  .cmp-icon-badge.cross-bad {
    width: 18px !important;
    height: 18px !important;
    border-radius: 3px !important;
    background: rgba(255, 90, 95, 0.15) !important;
    border: 1px solid rgba(255, 90, 95, 0.35) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    color: #FF5A5F !important;
    line-height: 1 !important;
  }

  .cmp-box-lageniale {
    background: rgba(0, 209, 116, 0.06) !important;
    border: 1px solid rgba(0, 209, 116, 0.28) !important;
    border-radius: 5px !important;
    padding: 14px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    box-shadow: 0 0 15px rgba(0, 209, 116, 0.08) !important;
  }

  .cmp-box-tag.tag-good {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
  }

  .cmp-box-tag.tag-good .nav-brand-dot {
    width: 7px !important;
    height: 7px !important;
    background: var(--gold) !important;
    box-shadow: 0 0 8px var(--gold) !important;
    border-radius: 50% !important;
  }

  .cmp-box-tag.tag-good .nav-brand-text {
    font-size: 13px !important;
    font-weight: 900 !important;
    letter-spacing: 0.8px !important;
    color: #FFFFFF !important;
    text-transform: uppercase !important;
  }

  .cmp-box-text {
    font-size: 13.5px !important;
    color: #FFFFFF !important;
    line-height: 1.55 !important;
    margin: 0 !important;
  }

  .compare-carousel-controls {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    padding-top: 4px !important;
  }

  .cmp-nav-arrow {
    width: 36px !important;
    height: 36px !important;
    border-radius: 5px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    color: #FFFFFF !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
  }

  .cmp-nav-arrow:hover {
    background: rgba(0, 209, 116, 0.15) !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
  }

  .compare-carousel-dots {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
  }

  .compare-carousel-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.25) !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
  }

  .compare-carousel-dot.active {
    width: 24px !important;
    border-radius: 4px !important;
    background: var(--gold) !important;
    box-shadow: 0 0 10px var(--gold) !important;
  }

  /* Partners 3-Col */
  .bento-3col {
    gap: 14px;
  }

  .partner-card {
    padding: 20px 18px;
  }

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

  .partner-tags-wrap {
    gap: 6px;
    margin: 10px 0 12px;
  }

  .partner-tag {
    font-size: 11px;
    padding: 3px 8px;
  }

  /* Stepper / Drivers split */
  .driver-split-card {
    padding: 22px 18px;
    gap: 26px;
  }

  .driver-h2 {
    font-size: 21px !important;
    margin: 10px 0;
  }

  .driver-intro-desc {
    font-size: 13.5px !important;
    margin-bottom: 18px;
  }

  .rider-timeline-stepper {
    margin: 18px 0 6px 0;
  }

  .timeline-step-item {
    gap: 14px;
  }

  .timeline-node-badge {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .timeline-connector-line {
    min-height: 22px;
  }

  .timeline-step-body {
    padding-bottom: 18px;
  }

  .timeline-step-tag {
    font-size: 10px;
  }

  .timeline-step-title {
    font-size: 14.5px;
    margin-bottom: 3px;
  }

  .timeline-step-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .driver-sub-invite {
    margin-top: 12px;
    padding-top: 14px;
  }

  .driver-invite-link {
    font-size: 12px;
  }

  .app-showcase-hub {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }

  .app-hub-buttons {
    gap: 10px;
    width: 100%;
  }

  .app-cta-btn {
    padding: 13px 18px;
    font-size: 14px;
    width: 100%;
  }

  /* FAQ Accordion */
  .faq-list {
    gap: 10px;
  }

  .faq-header {
    padding: 16px 18px;
    font-size: 14.5px;
    gap: 10px;
  }

  .faq-content {
    padding: 0 18px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .faq-row.active .faq-content {
    padding: 0 18px 18px 18px;
  }

  /* Contact Split Card */
  .contact-split-card {
    padding: 22px 18px;
    gap: 26px;
  }

  .contact-info-h3 {
    font-size: 21px !important;
    margin: 8px 0;
  }

  .contact-info-desc {
    font-size: 13.5px !important;
    margin-bottom: 16px;
  }

  .contact-channels-list {
    gap: 8px;
    margin-bottom: 16px;
  }

  .contact-channel-card {
    padding: 10px 8px;
    gap: 10px;
  }

  .channel-icon-wrap {
    width: 32px;
    height: 32px;
  }

  .channel-label {
    font-size: 10px;
  }

  .channel-val {
    font-size: 13px;
  }

  .channel-desc {
    font-size: 12px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-group {
    margin-bottom: 10px;
  }

  .form-label {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 5px !important;
  }

  .form-input,
  .form-textarea,
  .custom-select {
    padding: 12px 14px;
    font-size: 13.5px;
  }

  .contact-trust-note {
    font-size: 11.5px;
    padding-top: 10px;
  }

  /* Responsive Footer Alignment */
  .footer-sec {
    padding: 50px 0 25px 0;
    margin-top: 0 !important;
  }

  .footer-grid-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 28px;
    text-align: left;
  }

  .footer-brand-box {
    align-items: flex-start;
    text-align: left;
  }

  .footer-logo-row {
    justify-content: flex-start;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-links-col {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .footer-links-col h4 {
    margin-bottom: 12px;
  }

  .footer-nav-list {
    align-items: flex-start;
    text-align: left;
  }

  .footer-app-btns {
    flex-direction: row;
    gap: 10px;
    width: 100%;
  }

  .footer-app-btns .btn-glowing,
  .footer-app-btns .btn-outline-pill {
    flex: 1;
  }

  .footer-bottom-bar {
    text-align: center;
    justify-content: center;
    padding-top: 20px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .header-wrapper {
    top: 8px;
    margin-top: 8px;
    padding: 0 14px;
  }

  .hero-h1 {
    font-size: 24px !important;
  }

  .sec-h2 {
    font-size: 22px !important;
  }

  .footer-app-btns {
    flex-direction: column;
    gap: 8px;
  }
}
