﻿/* ═══════════════════════════════════════════════════════════
   RENTACARPEMAI — CONCEPT 5 — VELOCITY
   CAR_FAST / BRIGHT_OPTIMISTIC — Deviation 10 (RADICAL)
   la-palma-web.digital
═══════════════════════════════════════════════════════════ */

/* ── FONTS ──────────────────────────────────────────────── */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/opensans-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/opensans-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
/* JetBrains Mono — replaces generic monospace for the booking panel's "command center" feel.
   Self-hosted for GDPR + deterministic rendering across all OS/browsers. */
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/jetbrainsmono-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/jetbrainsmono-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/jetbrainsmono-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Brand accent — aliased to the SINGLE SOURCE css/brand.css (--brand*). Change the colour THERE. */
  --orange:       var(--brand);
  --orange-dark:  var(--brand-dark);
  --orange-light: var(--brand-light);
  --accent-rgb:   var(--brand-rgb);   /* all brand UI flows from the single-source brand.css tokens */
  --accent-ink:   var(--brand-ink);
  /* Blue family folded into the accent so ALL brand UI follows the one brand colour. */
  --blue:         var(--orange);
  --blue-dark:    var(--orange-dark);
  --blue-light:   rgba(var(--accent-rgb), 0.10);
  --yellow:       #FFD100;
  --white:        #FFFFFF;
  --off-white:    #F8FAFC;
  --light-grey:   #F1F4F8;
  --border:       #E2E8F0;
  --dark:         #111827;
  --dark-mid:     #1F2937;
  --text:         #111827;
  --text-mid:     #374151;
  --text-muted:   #6B7280;
  --text-dim:     #9CA3AF;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:    0 10px 40px rgba(0,0,0,0.12);
  --shadow-orange:0 8px 32px rgba(var(--accent-rgb),0.25);
  --transition:   0.2s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.4s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: 'Open Sans', sans-serif; }

/* ── UTILITY ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(var(--accent-rgb),0.08); border: 1px solid rgba(var(--accent-rgb),0.2);
  padding: 4px 14px; border-radius: 20px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--orange-dark); text-transform: uppercase;
}
.section-label::before { content: '▶'; font-size: 0.5rem; }
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1; color: var(--dark);
}
.section-title span { color: var(--orange-dark); }
.section-title.on-dark { color: var(--white); }
.section-title.on-dark span { color: var(--yellow); }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 580px; }
.text-center { text-align: center; }

/* Speed lines decorative */
.speed-lines {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.speed-lines::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -60deg,
    transparent,
    transparent 40px,
    rgba(var(--accent-rgb),0.025) 40px,
    rgba(var(--accent-rgb),0.025) 41px
  );
}

/* GSAP reveal initial state */
.v-reveal { opacity: 0; transform: translateY(24px); }
/* c4-style pageload reveal — fires immediately on load, no scroll trigger.
   Bigger movement (y:50), longer duration (0.9s), and cubic ease for a
   more cinematic entrance than scroll reveals. */
.c5-hero-reveal       { opacity: 0; transform: translateY(50px); }
.c5-hero-reveal-right { opacity: 0; transform: translateX(60px); }
.c5-hero-reveal-left  { opacity: 0; transform: translateX(-60px); }

/* ── GDPR BANNER ─────────────────────────────────────────── */
#gdpr-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--c-ffffff); padding: 16px 20px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  border-top: 3px solid var(--blue);
  box-shadow: 0 -4px 24px rgba(var(--c-000000-rgb), 0.08);
  transform: translateY(100%); transition: transform 0.4s ease;
}
#gdpr-banner.visible { transform: translateY(0); }
#gdpr-banner p { font-size: 0.82rem; color: var(--text-mid); flex: 1; min-width: 240px; }
#gdpr-banner a { color: var(--blue); }
.gdpr-btn {
  padding: 8px 20px; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; transition: var(--transition);
}
#gdpr-accept { background: var(--blue); color: var(--white); }
#gdpr-accept:hover { background: var(--blue-dark); }
#gdpr-decline { border: 1px solid var(--border); color: var(--text-muted); }
#gdpr-decline:hover { border-color: var(--blue); color: var(--blue); }

/* ── HEADER ─────────────────────────────────────────────── */
#main-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all 0.3s ease;
}
#main-header.scrolled {
  background: rgba(var(--c-ffffff-rgb), 0.97); box-shadow: var(--shadow-sm);
  padding: 10px 0; backdrop-filter: blur(12px);
}
/* Centered-logo header — logo dead-center, nav on the left, lang/theme on the right.
   Three-column grid: nav | logo | utilities. Logo dominates vertically; nav + utilities
   pin to the TOP of the row so they sit near the top of the header alongside the big logo. */
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
/* Pin EVERY child to row 1 — without this, the hamburger + lang wrapper both want
   column 3 and grid auto-creates a second row for the overflow. */
.header-inner > * { grid-row: 1; }
.header-inner .nav-links { grid-column: 1; justify-self: start; }
.header-inner .logo-wrap { grid-column: 2; justify-self: center; }
.header-inner > div     { grid-column: 3; justify-self: end; }   /* lang+toggle wrapper */
.header-inner .hamburger { grid-column: 3; justify-self: end; }
.logo-wrap img { height: 60px; width: auto; }                   /* +25% from prior 48px per Joe */
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em;
  /* At the top of the page (header transparent over dark hero video) → light text.
     When header gets .scrolled (white bg appears) → dark text. See override below. */
  color: rgba(var(--c-ffffff-rgb), 0.92);
  text-shadow: 0 1px 4px rgba(var(--c-000000-rgb), 0.45);
  text-transform: uppercase;
  transition: color var(--transition), text-shadow var(--transition);
  position: relative;
}
#main-header.scrolled .nav-links a {
  color: var(--text-mid);
  text-shadow: none;
}
.nav-links a:hover { color: var(--orange); text-shadow: 0 1px 4px rgba(var(--c-000000-rgb), 0.55); }
#main-header.scrolled .nav-links a:hover { color: var(--orange-dark); text-shadow: none; }
.nav-cta {
  background: var(--orange-dark); color: var(--accent-ink) !important;
  padding: 9px 22px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-orange); transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--orange) !important; transform: translateY(-1px); }
.header-top {
  background: var(--orange-dark); padding: 6px 0; text-align: center;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--white); text-transform: uppercase;
  /* Hidden per Joe — client may re-enable by removing the next line. */
  display: none;
}
.lang-switcher { display: flex; gap: 6px; align-items: center; }
.lang-btn {
  font-family: 'Poppins', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; color: var(--text-dim);
  padding: 4px 6px; line-height: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; border-radius: 4px; transition: var(--transition);
  opacity: 0.55;
}
.lang-btn svg { display: block; border-radius: 2px; }
.lang-btn.active, .lang-btn:hover { opacity: 1; border-color: var(--orange-dark); }
.dark-toggle {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--border); color: var(--text-muted); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.dark-toggle:hover { border-color: var(--orange-dark); color: var(--orange-dark); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 26px; padding: 3px 0;
}
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--dark); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ─────────────────────────────────────────── */
#mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--white); flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700;
  color: var(--dark); text-transform: uppercase; letter-spacing: 0.06em;
  transition: color var(--transition);
}
#mobile-nav a:hover { color: var(--orange-dark); }
.mobile-lang { display: flex; gap: 10px; }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--dark);
}
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-video-wrap video {
  width: 100%; height: 100%; object-fit: cover; opacity: 1;
}
.hero-video-wrap img {
  width: 100%; height: 100%; object-fit: cover; opacity: 1;
}
.hero-video-wrap .hero-video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* Mobile + reduced-motion fallback — show poster image instead of video.
   Saves ~8MB on mobile data, eliminates battery drain, instant LCP. */
.hero-video-wrap .hero-poster-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: none;
}
@media (max-width: 767.98px) {
  .hero-video-wrap .hero-video { display: none; }
  .hero-video-wrap .hero-poster-img { display: block; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap .hero-video { display: none; }
  .hero-video-wrap .hero-poster-img { display: block; }
}
/* Scanlines — thin horizontal stripes drifting down, gives the video
   a filmed-surface / cinematic texture (ported from c3 .hero-scan). */
.hero-scanlines {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(0deg,
    transparent, transparent 2px,
    rgba(var(--c-000000-rgb), 0.06) 2px, rgba(var(--c-000000-rgb), 0.06) 4px);
  animation: c5-scanlines 8s linear infinite;
  mix-blend-mode: multiply;
}
@keyframes c5-scanlines {
  from { background-position: 0 0; }
  to   { background-position: 0 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scanlines { animation: none; }
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(var(--c-000a14-rgb), 0.28) 0%, rgba(var(--c-000a14-rgb), 0.1) 55%, transparent 75%);
}
/* Animated speed lines on hero */
.hero-speed-lines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  overflow: hidden;
}
.hero-speed-lines::before, .hero-speed-lines::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(var(--accent-rgb),0.6), transparent);
  animation: speedLine 2.5s ease-in-out infinite;
}
.hero-speed-lines::before { left: 30%; animation-delay: 0s; }
.hero-speed-lines::after  { left: 70%; animation-delay: 1.2s; }
@keyframes speedLine {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}
/* Orange stripe accent */
.hero-stripe {
  position: absolute; bottom: 0; left: 0; right: 0; height: 6px; z-index: 2;
  background: linear-gradient(90deg, var(--orange-dark), var(--yellow), var(--orange-dark));
  background-size: 200% 100%;
  animation: stripeShift 3s linear infinite;
}
@keyframes stripeShift {
  0%   { background-position: 0 0; }
  100% { background-position: 200% 0; }
}
.c5-hero-2col {
  position: relative; z-index: 3;
  padding: 120px 0 100px;
}
.hero-content {
  position: relative;
}
.hero-flag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange-dark); padding: 6px 16px 6px 8px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 24px; position: relative;
}
.hero-flag::before {
  content: ''; position: absolute; left: -12px; top: 0; bottom: 0;
  border-right: 12px solid var(--orange-dark); border-top: 18px solid transparent; border-bottom: 18px solid transparent;
}
.hero-flag-text { font-family: 'Poppins', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; color: var(--white); text-transform: uppercase; }
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 800; line-height: 0.95;
  margin-bottom: 20px; color: var(--white);
}
.hero-title em { font-style: normal; color: var(--orange-dark); }
.hero-title .title-line { display: block; overflow: hidden; }
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem); color: var(--c-cbd5e1);
  max-width: 520px; margin-bottom: 36px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-dark); color: var(--accent-ink);
  padding: 15px 34px; border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: var(--shadow-orange); transition: var(--transition);
}
.btn-primary:hover { background: var(--orange); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(var(--accent-rgb),0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(var(--c-ffffff-rgb), 0.4); color: var(--white);
  padding: 13px 30px; border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(var(--c-ffffff-rgb), 0.08); }
.hero-trust {
  display: flex; gap: 20px; margin-top: 32px; flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: rgba(var(--c-cbd5e1-rgb), 0.8);
}
.hero-trust-icon { color: var(--yellow); font-size: 0.9rem; }

/* Soft gradient fade at hero bottom — replaces the dated diagonal triangle clip-path. */
#hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; z-index: 4;
  background: linear-gradient(to bottom, transparent 0%, rgba(var(--c-000000-rgb), 0.55) 70%, var(--orange-dark) 100%);
  pointer-events: none;
}

/* ════ [ZE:hero:price-hook] ══ Conversion-critical price ribbon above the H1 ══ */
.hero-price-hook {
  display: inline-flex; align-items: baseline; gap: 6px;
  margin: 14px 0 12px;
  padding: 7px 14px;
  background: rgba(var(--accent-rgb), 0.16);
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--c-ffffff);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(var(--c-000000-rgb), 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-price-hook__lead { opacity: 0.85; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; }
.hero-price-hook__amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
  text-shadow: 0 1px 6px rgba(var(--c-000000-rgb), 0.55);
}
.hero-price-hook__unit { font-size: 0.78rem; opacity: 0.85; }
.hero-price-hook__dot  { opacity: 0.5; margin: 0 2px; }
.hero-price-hook__inclusive {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.92;
}
@media (max-width: 540px) {
  .hero-price-hook { padding: 6px 12px; font-size: 0.74rem; flex-wrap: wrap; }
  .hero-price-hook__amount { font-size: 1.1rem; }
}
/* ════ [/ZE:hero:price-hook] ══ */

/* ════ [ZE:hero:footer-float] ══ Links float at bottom of #hero over the diagonal, no bg ══ */
/* Use ID specificity to defeat the base `#main-footer { background; padding: 60px 0 24px }` rule. */
#main-footer.c5-hero-footer-float {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;                      /* above ::after (z-index 4), below hero panel content */
  background: transparent;
  padding: 0 0 14px;
  color: rgba(var(--c-ffffff-rgb), 0.85);
  font-size: 0.7rem;
  pointer-events: none;            /* let video clicks pass; child links re-enable below */
}
.c5-hero-footer-float a,
.c5-hero-footer-float .lpwd-badge,
.c5-hero-footer-float button { pointer-events: auto; }
.c5-hero-footer-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.c5-hero-footer-float .footer-copy {
  margin: 0;
  font-size: 0.68rem;
  color: rgba(var(--c-ffffff-rgb), 0.78);
  text-shadow: 0 1px 4px rgba(var(--c-000000-rgb), 0.5);
}
.c5-hero-footer-float .footer-legal { display: inline-flex; gap: 12px; margin-top: 2px; }
.c5-hero-footer-float .footer-legal a {
  color: rgba(var(--c-ffffff-rgb), 0.82);
  text-decoration: none;
  font-size: 0.66rem;
  text-shadow: 0 1px 4px rgba(var(--c-000000-rgb), 0.5);
  transition: color .15s;
}
.c5-hero-footer-float .footer-legal a:hover { color: var(--c-ffffff); text-decoration: underline; }
.c5-hero-footer__left { flex-shrink: 0; }  /* agency pill — fixed width */
.c5-hero-footer__center {
  text-align: center;
  font-size: 0.65rem;
  color: rgba(var(--c-ffffff-rgb), 0.7);
  text-shadow: 0 1px 4px rgba(var(--c-000000-rgb), 0.5);
}
.c5-hero-footer__center a { color: inherit; text-decoration: underline; }
.c5-hero-footer__right { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; text-align: right; }
@media (max-width: 900px) {
  .c5-hero-footer-float { padding-bottom: 10px; }
  .c5-hero-footer-inner { flex-wrap: wrap; gap: 6px; justify-content: center; text-align: center; }
  .c5-hero-footer__center { display: none; }
}
/* ════ [/ZE:hero:footer-float] ══ */

/* ── STATS BAR ───────────────────────────────────────────── */
#stats-bar { background: var(--off-white); padding: 56px 0 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius-md); overflow: hidden; }
.stat-item { background: var(--white); text-align: center; padding: 28px 16px; }
.stat-num {
  font-family: 'Poppins', sans-serif; font-size: 2.4rem; font-weight: 800;
  color: var(--orange-dark); line-height: 1;
}
.stat-lbl { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.08em; margin-top: 4px; }
.stat-item:hover { background: var(--blue-light); }
.stat-item:hover .stat-num { color: var(--blue); }
.stat-item { transition: background var(--transition); }

/* ── VELOCITY BOOKING SECTION ────────────────────────────── */
#velocity {
  position: relative; padding: 80px 0 100px;
  background: var(--off-white); overflow: hidden;
}
/* Diagonal speed stripe at top */
#velocity::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange-dark), var(--yellow), var(--blue), var(--orange-dark));
  background-size: 300% 100%;
  animation: stripeShift 4s linear infinite;
}
/* Subtle speed lines background */
#velocity .speed-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 80px,
    rgba(var(--accent-rgb),0.02) 80px,
    rgba(var(--accent-rgb),0.02) 82px
  );
}

.velocity-header { text-align: center; margin-bottom: 48px; position: relative; z-index: 1; }
.velocity-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-dark); color: var(--accent-ink);
  padding: 5px 16px; border-radius: 20px;
  font-family: 'Poppins', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 14px;
}
.velocity-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow); animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.7); }
}

/* Wizard wrapper */
.wizard-wrap {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Progress track */
.wizard-progress {
  background: var(--light-grey);
  padding: 28px 40px;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
/* Animated racing fill */
.progress-fill {
  position: absolute; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange-dark), var(--yellow));
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1);
  background-size: 200% 100%;
  animation: stripeShift 2s linear infinite;
}
.progress-step {
  display: flex; align-items: center; flex: 1;
}
.progress-step:last-child { flex: none; }
.progress-step-connector {
  flex: 1; height: 2px; background: var(--border); margin: 0 8px;
  position: relative; overflow: hidden;
}
.progress-step-connector.done::after {
  content: ''; position: absolute; inset: 0;
  background: var(--orange-dark);
}
.progress-dot {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 700;
  color: var(--text-dim); transition: all 0.3s ease;
  position: relative; z-index: 1;
}
.progress-dot.active { border-color: var(--orange-dark); color: var(--orange-dark); background: rgba(var(--accent-rgb),0.06); box-shadow: 0 0 0 4px rgba(var(--accent-rgb),0.12); }
.progress-dot.done { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--accent-ink); }
.progress-dot-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--text-dim); text-align: center; margin-top: 4px;
  display: block; white-space: nowrap;
}
.progress-step-wrap { display: flex; flex-direction: column; align-items: center; }

/* Wizard steps */
.wizard-body { padding: 40px; min-height: 340px; overflow: hidden; }
.wizard-step { display: none; }
.wizard-step.active { display: block; }

/* Step 1 — Category cards */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cat-card {
  border: 2px solid var(--border); border-radius: var(--radius-md);
  padding: 20px 16px; cursor: pointer; transition: all 0.2s ease;
  text-align: center; position: relative; overflow: hidden;
}
.cat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange-dark); transform: scaleX(0); transition: transform 0.2s ease;
}
.cat-card:hover { border-color: rgba(var(--accent-rgb),0.4); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cat-card:hover::after { transform: scaleX(1); }
.cat-card.selected { border-color: var(--orange-dark); background: rgba(var(--accent-rgb),0.04); transform: translateY(-3px); box-shadow: var(--shadow-orange); }
.cat-card.selected::after { transform: scaleX(1); }
.cat-selected-badge {
  position: absolute; top: 8px; right: 8px;
  background: var(--orange-dark); color: var(--accent-ink);
  width: 20px; height: 20px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700;
}
.cat-card.selected .cat-selected-badge { display: flex; }
.cat-icon { font-size: 2rem; margin-bottom: 8px; }
.cat-name { font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cat-from { font-size: 0.72rem; color: var(--text-muted); }
.cat-price { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--orange-dark); margin-top: 8px; }

/* Step 2 — Dates */
.step2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.step3-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: 'Poppins', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
}
.form-input, .form-select {
  padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--dark);
  background: var(--off-white); transition: border-color var(--transition);
  appearance: none; width: 100%; color-scheme: light;
}
.form-input:focus, .form-select:focus {
  outline: none; border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.12);
}
.form-input::placeholder { color: var(--text-dim); }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾'; position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%); color: var(--orange-dark); pointer-events: none;
}

/* Step 3 — Extras */
.extra-card {
  border: 2px solid var(--border); border-radius: var(--radius-md);
  padding: 20px; cursor: pointer; transition: all 0.2s ease; position: relative;
}
.extra-card.selected { border-color: var(--orange-dark); background: rgba(var(--accent-rgb),0.04); }
.extra-card:hover { border-color: rgba(var(--accent-rgb),0.4); }
.extra-card-check {
  position: absolute; top: 12px; right: 12px;
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; transition: all 0.2s;
}
.extra-card.selected .extra-card-check { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--accent-ink); }
.extra-icon { font-size: 1.6rem; margin-bottom: 8px; }
.extra-name { font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.extra-price { font-size: 0.78rem; color: var(--orange-dark); font-weight: 600; }

/* Step 4 — Confirm */
.step4-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.step4-summary {
  background: var(--off-white); border-radius: var(--radius-md); padding: 24px;
  border: 1px solid var(--border);
}
.summary-title {
  font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.15em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 16px;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.summary-row:last-child { border: none; }
.summary-row-label { color: var(--text-muted); }
.summary-row-val { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--dark); }

/* ODOMETER PRICE DISPLAY */
.odometer-wrap {
  background: var(--dark); border-radius: var(--radius-md); padding: 24px;
  text-align: center; margin-bottom: 16px; position: relative; overflow: hidden;
}
.odometer-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg, transparent, transparent 20px,
    rgba(var(--accent-rgb),0.04) 20px, rgba(var(--accent-rgb),0.04) 22px
  );
}
.odometer-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 8px; }
.odometer-value {
  font-family: 'Poppins', sans-serif; font-size: 3rem; font-weight: 800;
  color: var(--orange-dark); line-height: 1; letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(var(--accent-rgb),0.4);
  position: relative; z-index: 1;
}
.odometer-value sup { font-size: 1.4rem; vertical-align: super; }
.odometer-sub { font-size: 0.72rem; color: var(--c-6b7280); margin-top: 6px; position: relative; z-index: 1; }
.odometer-breakdown { font-size: 0.78rem; color: var(--c-9ca3af); margin-top: 4px; position: relative; z-index: 1; }
/* Racing stripe at bottom of odometer */
.odometer-stripe {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange-dark), var(--yellow), var(--orange-dark));
  background-size: 200% 100%;
  animation: stripeShift 2s linear infinite;
}

/* Step 4 form inputs */
.step4-inputs { display: flex; flex-direction: column; gap: 14px; }

/* Wizard navigation */
.wizard-footer {
  padding: 20px 40px 32px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); background: var(--off-white);
}
.wizard-footer-trust { display: flex; gap: 16px; flex-wrap: wrap; }
.wizard-trust-pill {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.68rem; color: var(--text-dim);
}
.wizard-trust-icon { color: var(--orange-dark); }
.wizard-nav-btns { display: flex; gap: 12px; }
.btn-wizard-prev {
  padding: 11px 24px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text-muted);
  font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 600;
  transition: var(--transition);
}
.btn-wizard-prev:hover { border-color: var(--orange-dark); color: var(--orange-dark); }
.btn-wizard-next {
  padding: 11px 28px; background: var(--orange-dark); color: var(--accent-ink);
  border-radius: var(--radius-sm); font-family: 'Poppins', sans-serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em;
  box-shadow: var(--shadow-orange); transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.btn-wizard-next:hover { background: var(--orange); transform: translateX(2px); }

/* Launch button (step 4 submit) */
.btn-launch {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
  color: var(--white); border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: var(--shadow-orange); transition: all 0.2s ease;
  position: relative; overflow: hidden;
}
.btn-launch::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(var(--c-ffffff-rgb), 0.2), transparent);
  transition: left 0.5s ease;
}
.btn-launch:hover { transform: translateY(-2px); box-shadow: 0 14px 48px rgba(var(--accent-rgb),0.45); }
.btn-launch:hover::before { left: 140%; }
.launch-note { font-size: 0.7rem; color: var(--text-dim); text-align: center; margin-top: 8px; }

/* ── FLEET ───────────────────────────────────────────────── */
#fleet { padding: 100px 0; background: var(--white); }
.fleet-header { text-align: center; margin-bottom: 52px; }
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.car-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: all 0.25s ease; background: var(--white);
}
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(var(--accent-rgb),0.3); }
.car-img-wrap { position: relative; height: 188px; overflow: hidden; background: var(--light-grey); }
.car-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.car-card:hover .car-img-wrap img { transform: scale(1.05); }
.car-cat-tag {
  position: absolute; top: 12px; left: 0;
  background: var(--orange-dark); color: var(--accent-ink);
  padding: 4px 12px 4px 8px; clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  font-family: 'Poppins', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.car-body { padding: 22px; }
.car-name { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.car-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 14px; }
.car-specs { display: flex; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.car-spec { font-size: 0.72rem; color: var(--text-dim); display: flex; align-items: center; gap: 4px; }
.car-footer { display: flex; align-items: center; justify-content: space-between; }
.car-price { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--orange-dark); }
.car-price span { font-size: 0.75rem; color: var(--text-dim); font-weight: 400; font-family: 'Open Sans', sans-serif; }
.car-cta {
  padding: 9px 20px; background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--dark);
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 600;
  transition: all 0.2s; letter-spacing: 0.04em;
}
.car-cta:hover { background: var(--orange-dark); color: var(--accent-ink); border-color: var(--orange-dark); }

/* ── USP ─────────────────────────────────────────────────── */
#usp { padding: 100px 0; background: var(--off-white); }
.usp-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.usp-content-side { }
.usp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.usp-card {
  background: var(--white); border-radius: var(--radius-md); padding: 22px;
  border: 1.5px solid var(--border); transition: all 0.2s;
}
.usp-card:hover { border-color: var(--orange-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.usp-icon { font-size: 1.6rem; margin-bottom: 10px; }
.usp-title { font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.usp-text { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
/* Visual side */
.usp-visual {
  position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3;
}
.usp-visual img { width: 100%; height: 100%; object-fit: cover; }
.usp-visual-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(var(--c-ffffff-rgb), 0.95); border-radius: var(--radius-md); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  backdrop-filter: blur(8px); box-shadow: var(--shadow-md);
}
.usp-badge-rating { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.usp-badge-stars { color: var(--yellow); font-size: 0.85rem; }
.usp-badge-count { font-size: 0.72rem; color: var(--text-muted); }
.usp-badge-right { text-align: right; }
.usp-badge-label { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.usp-badge-sub { font-size: 0.72rem; color: var(--text-muted); }

/* ── HOW IT WORKS ────────────────────────────────────────── */
#how-it-works {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--c-005bcc), var(--c-00a0ff));
  position: relative; overflow: hidden;
}
#how-it-works .speed-lines::before {
  background: repeating-linear-gradient(
    -60deg, transparent, transparent 60px,
    rgba(var(--accent-rgb),0.04) 60px, rgba(var(--accent-rgb),0.04) 62px
  );
}
.how-header { text-align: center; margin-bottom: 60px; }
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; position: relative; z-index: 1; }
.how-step-card {
  background: rgba(var(--c-ffffff-rgb), 0.04); padding: 32px 24px;
  border: 1px solid rgba(var(--c-ffffff-rgb), 0.06); position: relative;
  transition: var(--transition);
}
.how-step-card:hover { background: rgba(var(--accent-rgb),0.08); border-color: rgba(var(--accent-rgb),0.2); }
.how-step-num {
  font-family: 'Poppins', sans-serif; font-size: 4rem; font-weight: 800;
  color: rgba(var(--accent-rgb),0.15); line-height: 1; margin-bottom: -8px;
}
.how-step-icon { font-size: 1.8rem; margin-bottom: 14px; }
.how-step-title { font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.how-step-text { font-size: 0.8rem; color: var(--c-9ca3af); line-height: 1.7; }
.how-step-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange-dark); transform: scaleX(0); transition: transform 0.3s;
}
.how-step-card:hover::after { transform: scaleX(1); }

/* ── DISCOVER ────────────────────────────────────────────── */
#discover { padding: 100px 0; background: var(--white); }
.discover-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.discover-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.discover-imgs .img-main { grid-column: 1 / -1; border-radius: var(--radius-lg); overflow: hidden; height: 220px; }
.discover-imgs .img-main img { width: 100%; height: 100%; object-fit: cover; }
.discover-imgs .img-side { border-radius: var(--radius-md); overflow: hidden; height: 140px; }
.discover-imgs .img-side img { width: 100%; height: 100%; object-fit: cover; }
.discover-content { }
.discover-pills { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.discover-pill {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  background: var(--off-white); border-radius: var(--radius-md);
  border: 1.5px solid var(--border); transition: var(--transition);
}
.discover-pill:hover { border-color: var(--orange-dark); background: rgba(var(--accent-rgb),0.03); }
.discover-pill-icon { font-size: 1.4rem; flex-shrink: 0; }
.discover-pill-title { font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700; margin-bottom: 2px; }
.discover-pill-text { font-size: 0.76rem; color: var(--text-muted); }

/* ── TESTIMONIALS ────────────────────────────────────────── */
#testimonials { padding: 100px 0; background: var(--blue-light); }
.test-header { text-align: center; margin-bottom: 52px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: var(--transition); position: relative;
}
.test-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.test-card::before { content: '"'; position: absolute; top: 12px; right: 20px; font-size: 4rem; color: rgba(var(--accent-rgb),0.08); font-family: Georgia, serif; line-height: 1; }
.test-stars { color: var(--yellow); margin-bottom: 14px; letter-spacing: 2px; }
.test-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-flag { font-size: 1.4rem; }
.test-name { font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 700; }
.test-origin { font-size: 0.72rem; color: var(--text-dim); }

/* ── CTA STRIP ───────────────────────────────────────────── */
#cta-strip {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--c-005bcc), var(--c-00a0ff));
  position: relative; overflow: hidden;
}
#cta-strip .speed-lines::before {
  background: repeating-linear-gradient(
    -55deg, transparent, transparent 50px,
    rgba(var(--c-ffffff-rgb), 0.04) 50px, rgba(var(--c-ffffff-rgb), 0.04) 52px
  );
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-title { font-family: 'Poppins', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-sub { font-size: 1rem; color: rgba(var(--c-ffffff-rgb), 0.8); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  padding: 15px 36px; background: var(--white); color: var(--orange-dark);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; transition: var(--transition);
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(var(--c-000000-rgb), 0.2); }
.btn-cta-outline {
  padding: 13px 32px; border: 2px solid rgba(var(--c-ffffff-rgb), 0.5); color: var(--white);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; transition: var(--transition);
}
.btn-cta-outline:hover { border-color: var(--white); background: rgba(var(--c-ffffff-rgb), 0.1); }

/* ── CONTACT ─────────────────────────────────────────────── */
#contact { padding: 100px 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-col h2 { margin-bottom: 12px; }
.contact-info-col > p { color: var(--text-muted); margin-bottom: 32px; }
.contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-icon {
  width: 44px; height: 44px; background: rgba(var(--accent-rgb),0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-label { font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text-dim); text-transform: uppercase; }
.contact-item-val { font-size: 0.9rem; color: var(--text-mid); }
.contact-item-val a { color: var(--orange-dark); }
#map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border); height: 280px; margin-top: 20px; }
#map-wrap iframe { width: 100%; height: 100%; border: none; }
.contact-form-col { display: flex; flex-direction: column; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-form-submit {
  align-self: flex-start; padding: 13px 32px;
  background: var(--orange-dark); color: var(--accent-ink);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: var(--shadow-orange); transition: var(--transition);
}
.btn-form-submit:hover { background: var(--orange); transform: translateY(-1px); }
.form-small { font-size: 0.72rem; color: var(--text-dim); }
.form-textarea { resize: vertical; min-height: 110px; }

/* ── FOOTER ──────────────────────────────────────────────── */
#main-footer { background: var(--dark-mid); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand img { height: 38px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.82rem; color: var(--c-6b7280); line-height: 1.7; max-width: 240px; }
.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(var(--c-ffffff-rgb), 0.05); border: 1px solid rgba(var(--c-ffffff-rgb), 0.1);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--c-9ca3af);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--accent-ink); }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; color: var(--orange-dark); text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.82rem; color: var(--c-6b7280); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid rgba(var(--c-ffffff-rgb), 0.06); padding-top: 24px; }
.footer-copy { font-size: 0.75rem; color: var(--c-4b5563); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.75rem; color: var(--c-4b5563); transition: color var(--transition); }
.footer-legal a:hover { color: var(--orange-dark); }

/* ── AGENCY BADGE ────────────────────────────────────────── */
.lpwd-footer-section { display: flex; justify-content: center; padding: 16px 0; margin-top: 8px; border-top: 1px solid rgba(var(--c-ffffff-rgb), 0.06); }
.lpwd-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--accent-rgb),0.25); background: rgba(var(--accent-rgb),0.06);
  transition: var(--transition); position: relative;
}
.lpwd-badge:hover { border-color: var(--orange-dark); background: rgba(var(--accent-rgb),0.12); }
.lpwd-badge__globe { font-size: 1.2rem; }
.lpwd-badge__text { display: flex; flex-direction: column; }
.lpwd-badge__built-by { font-size: 0.58rem; color: var(--c-6b7280); letter-spacing: 0.1em; }
.lpwd-badge__name { font-size: 0.75rem; font-weight: 700; color: var(--orange-dark); font-family: 'Poppins', sans-serif; }
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute; bottom: 110%; left: 50%; transform: translateX(-50%);
  background: var(--dark); border: 1px solid rgba(var(--accent-rgb),0.3);
  color: var(--c-9ca3af); font-size: 0.68rem; padding: 6px 10px;
  border-radius: 4px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s; z-index: 10;
}
[data-tooltip]:hover::after { opacity: 1; }

/* ── BOOKING MODAL ───────────────────────────────────────── */
#modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(var(--c-111827-rgb), 0.7); backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
}
#modal-overlay.open { display: flex; }
#booking-modal {
  background: var(--white); border-radius: var(--radius-xl); padding: 44px;
  max-width: 480px; width: 90%; position: relative;
  box-shadow: 0 24px 80px rgba(var(--c-000000-rgb), 0.25);
  animation: modalIn 0.3s ease;
  border-top: 4px solid var(--orange-dark);
}
@keyframes modalIn {
  from { opacity:0; transform: scale(0.94) translateY(-16px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--light-grey); color: var(--text-muted); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.modal-close:hover { background: var(--orange-dark); color: var(--accent-ink); }
.modal-icon { font-size: 3rem; text-align: center; margin-bottom: 14px; }
.modal-title { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--dark); text-align: center; margin-bottom: 6px; }
.modal-sub { font-size: 0.88rem; color: var(--text-muted); text-align: center; margin-bottom: 22px; }
.modal-checks { background: var(--off-white); border-radius: var(--radius-md); padding: 16px 20px; font-size: 0.82rem; color: var(--text-mid); line-height: 2.2; }
.modal-checks span { color: var(--orange-dark); font-weight: 700; margin-right: 6px; }
.modal-actions { display: flex; gap: 12px; margin-top: 22px; }
.modal-actions button { flex: 1; padding: 12px; border-radius: var(--radius-sm); font-family: 'Poppins', sans-serif; font-size: 0.85rem; font-weight: 700; transition: var(--transition); letter-spacing: 0.04em; }
.modal-btn-ok { background: var(--orange-dark); color: var(--accent-ink); box-shadow: var(--shadow-orange); }
.modal-btn-ok:hover { background: var(--orange); }
.modal-btn-again { border: 1.5px solid var(--border); color: var(--text-mid); }
.modal-btn-again:hover { border-color: var(--orange-dark); color: var(--orange-dark); }

/* ── DARK / LIGHT MODE ───────────────────────────────────── */
body.light-mode { /* already light by default — dark mode is the inversion */ }
body.dark-mode {
  --white:      #111827;
  --off-white:  #1F2937;
  --light-grey: #1F2937;
  --border:     rgba(255,255,255,0.08);
  --dark:       #F9FAFB;
  --dark-mid:   #111827;
  --text:       #F9FAFB;
  --text-mid:   #E5E7EB;
  --text-muted: #9CA3AF;
  --text-dim:   #6B7280;
  --blue-light: rgba(var(--accent-rgb),0.08);
}
body.dark-mode #main-header.scrolled { background: rgba(var(--c-111827-rgb), 0.97); }
body.dark-mode .header-top { background: var(--orange); }

/* ── A11Y ────────────────────────────────────────────────── */
#a11y-toggle {
  position: fixed; bottom: 80px; right: 20px; z-index: 8000;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange-dark); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: var(--shadow-orange); transition: var(--transition);
}
#a11y-toggle:hover { transform: scale(1.1); }
#a11y-panel {
  position: fixed; bottom: 132px; right: 20px; z-index: 8000;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 16px; width: 220px;
  display: none; box-shadow: var(--shadow-lg);
}
#a11y-panel.open { display: block; }
#a11y-panel h4 { font-family: 'Poppins', sans-serif; font-size: 0.72rem; font-weight: 700; color: var(--orange-dark); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.a11y-opt { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.a11y-opt label { font-size: 0.78rem; color: var(--text-muted); }
.a11y-opt button { padding: 4px 10px; border-radius: 4px; background: var(--light-grey); border: 1px solid var(--border); color: var(--text); font-size: 0.72rem; transition: var(--transition); }
.a11y-opt button:hover { background: var(--orange-dark); color: var(--accent-ink); border-color: var(--orange-dark); }

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -40px; left: 20px; z-index: 10000;
  background: var(--orange-dark); color: var(--accent-ink);
  padding: 8px 16px; border-radius: 4px; font-size: 0.82rem; font-weight: 700; transition: top 0.2s;
}
.skip-link:focus { top: 20px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .usp-inner { grid-template-columns: 1fr; }
  .usp-visual { display: none; }
  .usp-grid { grid-template-columns: repeat(3, 1fr); }
  .step4-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .lang-switcher, .dark-toggle { display: none; }
  .hamburger { display: flex; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .step2-grid { grid-template-columns: 1fr; }
  .step3-grid { grid-template-columns: 1fr; }
  .wizard-progress { padding: 20px; overflow-x: auto; }
  .wizard-body { padding: 24px; }
  .wizard-footer { padding: 16px 24px 24px; flex-direction: column; align-items: stretch; gap: 16px; }
  .wizard-nav-btns { justify-content: flex-end; }
  .discover-inner { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row-2 { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .progress-dot-label { display: none; }
}

/* ── HERO 2-COL PANEL ─────────────────────────────────────── */
.c5-hero-2col {
  display: grid;
  /* Right col widened from 440 → 550 so the fleet card peek (320px wide,
     anchored to the left of col 2) has ~110px of breathing room before the
     booking form starts. Booking form keeps its 440px max-width via justify-self:end. */
  grid-template-columns: 1fr 550px;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.c5-hero-panel {
  position: relative; z-index: 3;
  background: rgba(var(--c-ffffff-rgb), 0.97);
  border: 1px solid rgba(var(--accent-rgb),0.28);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 48px rgba(var(--c-000000-rgb), 0.18);
  width: 440px;          /* explicit — was max-width only, but content (marquee removed) was shrinking it */
  max-width: 440px;
  justify-self: end;     /* anchor to right edge of col 2 so fleet card peek fits to its left */
}
.c5-panel-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue);
  border-left: 3px solid var(--blue);
  padding-left: 10px;
  margin-bottom: 18px;
}
.c5-panel-field { margin-bottom: 14px; }
.c5-panel-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.c5-panel-input {
  width: 100%;
  background: var(--c-ffffff);
  border: 1px solid rgba(var(--accent-rgb),0.22);
  border-radius: var(--radius-sm);
  color: var(--dark);
  padding: 9px 12px;
  font-family: 'Open Sans', sans-serif; font-size: 0.875rem;
  transition: border-color var(--transition);
  appearance: none; -webkit-appearance: none;
  color-scheme: light;
}
.c5-panel-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.14); }
.c5-panel-input.is-invalid { border-color: var(--c-ff4d4d) !important; box-shadow: 0 0 0 3px rgba(var(--c-ff4d4d-rgb), .18); animation: c5Shake .32s ease; }
@keyframes c5Shake { 10%,90%{transform:translateX(-1px)} 30%,70%{transform:translateX(2px)} 50%{transform:translateX(-3px)} }
.c5-panel-input option { background: var(--c-ffffff); color: var(--dark); }

/* Booking-form extras (live accessories inventory) — toggle chips */
.c5-extras-list { display: flex; flex-wrap: wrap; gap: 6px; }
.c5-extra-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-ffffff); border: 1px solid rgba(var(--accent-rgb),0.22);
  border-radius: 999px; padding: 6px 11px 6px 9px; cursor: pointer;
  font-family: 'Open Sans', sans-serif; font-size: 0.78rem; color: var(--dark);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.c5-extra-chip:hover { border-color: var(--orange-dark); }
.c5-extra-chip .c5-extra-ic { font-size: 0.95rem; line-height: 1; }
.c5-extra-chip .c5-extra-lbl { font-weight: 600; white-space: nowrap; max-width: 13ch; overflow: hidden; text-overflow: ellipsis; }
.c5-extra-chip .c5-extra-px { font-weight: 700; color: var(--orange-dark); font-size: 0.72rem; }
.c5-extra-chip.is-on {
  background: rgba(var(--orange-rgb,255,107,0),0.10);
  border-color: var(--orange-dark);
  box-shadow: 0 0 0 2px rgba(var(--orange-rgb,255,107,0),0.18) inset;
}
.c5-extra-chip.is-on::after { content: '✓'; font-weight: 800; color: var(--orange-dark); font-size: 0.72rem; margin-left: 1px; }
.c5-hero-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; margin: 4px 0 16px;
  border-top: 1px solid rgba(var(--accent-rgb),0.18);
  border-bottom: 1px solid rgba(var(--accent-rgb),0.18);
}
.c5-hero-price-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem; color: var(--text-muted);
}
.c5-hero-price-val {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem; font-weight: 800;
  color: var(--orange-dark);
}
.c5-panel-submit {
  width: 100%;
  background: var(--orange-dark); color: var(--accent-ink);
  border: none; border-radius: var(--radius-sm);
  padding: 13px 20px;
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-orange);
}
.c5-panel-submit:hover { background: var(--orange); transform: translateY(-2px); }

@media (max-width: 960px) {
  .c5-hero-2col { grid-template-columns: 1fr; }
  .c5-hero-panel { order: -1; margin-bottom: 8px; }
}

/* ── HOW-STEP LAVA CARD GHOST NUMBER ─────────────────────── */
.how-step-card { position: relative; overflow: hidden; }
.how-step-ghost {
  position: absolute;
  top: -12px; right: -6px;
  font-family: 'Poppins', sans-serif;
  font-size: 5.5rem; font-weight: 800;
  color: var(--orange-dark);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ── BOOKING TOAST ───────────────────────────────────────── */
.c5-booking-toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--c-ffffff); color: var(--dark);
  border: 1px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex; align-items: flex-start; gap: 12px;
  box-shadow: 0 8px 32px rgba(var(--c-000000-rgb), 0.12);
  transform: translateY(120%) scale(0.9);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  max-width: 340px;
  pointer-events: none;
}
.c5-booking-toast.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.c5-toast-icon { font-size: 1.4rem; line-height: 1.2; }
.c5-toast-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 0.9rem; margin-bottom: 3px;
}
.c5-toast-desc { font-size: 0.78rem; color: var(--text-muted); }
@media (max-width: 480px) {
  .c5-booking-toast { left: 16px; right: 16px; max-width: none; bottom: 16px; }
}


/* ════ [ZE:sidebar:qcs] — Quick-Contact Sidebar v4 (BME-style, hover-expand) ════ */
:root {
  --qcs-blue:var(--orange);                       /* sidebar accent follows the brand colour */
  --qcs-blue-100:rgba(var(--accent-rgb),0.20);
  --qcs-blue-50:rgba(var(--accent-rgb),0.10);
  --qcs-blue-25:rgba(var(--accent-rgb),0.06);
  --qcs-wa:#25D366;
  --qcs-wa-100:rgba(37,211,102,0.20);
  --qcs-wa-50:rgba(37,211,102,0.10);
  --qcs-wa-25:rgba(37,211,102,0.06);
  --qcs-grey-100:#e0e0e0;
  --qcs-grey-600:#555555;
}

#qc-sidebar {
  position:fixed; right:0; bottom:50%;
  transform:translate(0,50%);
  z-index:9990;
  display:flex; flex-direction:row;
  border-top-left-radius:16px; border-bottom-left-radius:16px;
  box-shadow:0 10px 30px rgba(var(--c-65696f-rgb), 0.25);
}

.qcs-items {
  display:flex; flex-direction:column;
  row-gap:16px;
  background-color:var(--c-ffffff);
  border-top-left-radius:16px; border-bottom-left-radius:16px;
  padding:12px 0;
}

/* Items */
.qcs-item {
  display:flex; justify-content:flex-start; align-items:center;
  cursor:pointer;
  padding:7px 12px;
  border-left:solid 3px transparent;
  border-right:solid 3px transparent;
  border-top:none; border-bottom:none;
  background:transparent;
  text-decoration:none; color:var(--qcs-grey-600);
  transition:background-color 0.2s;
  width:100%; box-sizing:border-box;
  appearance:none;
}
.qcs-item:hover { background-color:var(--qcs-blue-25); }
.qcs-item:active { background-color:var(--qcs-blue-50); }
.qcs-item:focus-visible { outline:2px solid var(--qcs-blue); border-radius:4px; }

/* Circular icon badge */
.qcs-icon-circle {
  flex-shrink:0;
  width:32px; height:32px; border-radius:50%;
  border:1px solid var(--qcs-blue-100);
  background-color:var(--qcs-blue-50);
  color:var(--qcs-blue);
  display:flex; align-items:center; justify-content:center;
  margin-right:8px;
  transition:background-color 0.5s, color 0.5s, border-color 0.5s;
  box-sizing:border-box;
}
.qcs-icon-circle svg { width:16px; height:16px; }

/* Label — hidden, slides in on sidebar hover */
.qcs-label {
  font-size:13px; font-weight:600;
  color:var(--qcs-grey-600);
  white-space:nowrap; overflow:hidden;
  max-width:0; opacity:0; pointer-events:none;
  transition:max-width 0.3s ease, opacity 0.25s ease;
}
#qc-sidebar:hover .qcs-label { max-width:100px; opacity:1; }

/* Dark mode — sidebar surface + labels flip with theme (tel/WhatsApp accent tints stay) */
body.dark-mode .qcs-items { background-color: var(--off-white); }
body.dark-mode .qcs-item,
body.dark-mode .qcs-label { color: var(--text-mid); }
body.dark-mode #qc-sidebar { box-shadow: 0 10px 30px rgba(var(--c-000000-rgb), 0.45); }

/* WhatsApp */
.qcs-item--whatsapp:hover { background-color:var(--qcs-wa-25); }
.qcs-item--whatsapp:active { background-color:var(--qcs-wa-50); }
.qcs-item--whatsapp .qcs-icon-circle {
  border-color:var(--qcs-wa-100);
  background-color:var(--qcs-wa-50);
  color:var(--qcs-wa);
}
.qcs-item--whatsapp:focus-visible { outline-color:var(--qcs-wa); }

/* Scroll-to-top — hidden until scroll */
.qcs-item--btt {
  max-height:0; opacity:0; padding-block:0;
  overflow:hidden; pointer-events:none;
  margin-top:-16px;
  transition:max-height 0.3s ease, opacity 0.3s ease, padding-block 0.3s ease, margin-top 0.3s ease;
}
.qcs-item--btt.qcs-visible {
  max-height:60px; opacity:1; padding-block:7px;
  pointer-events:auto; margin-top:0;
}

/* Hide standalone a11y button */
body.qcs-active #a11y-toggle,
body.qcs-active #a11y-toggle-btn { display:none; }

@media (max-width:480px) { #qc-sidebar { display:none; } }

@media (prefers-reduced-motion:reduce) {
  .qcs-label, .qcs-item--btt { transition:none; }
}
/* ════ [/ZE:sidebar:qcs] ════ */

/* ════ [ZE:booking:two-step] ══════════════════════════════════ */

/* Dark panel override — new two-step form inherits dark card */
.c5-hero-panel {
  background: var(--c-1c1c1e);
  border: none;
  box-shadow: 0 8px 48px rgba(var(--c-000000-rgb), 0.45);
  position: relative;
  overflow: hidden;
}
/* Red diagonal accent stripe */
.c5-hero-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 80px;
  background: var(--orange-dark);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
  z-index: 0;
}
.c5-hero-panel > * { position: relative; z-index: 1; }

/* Override existing c5-panel-label for dark context */
.c5-hero-panel .c5-panel-label {
  display: block; font-size: 9px; font-weight: 900; letter-spacing: .12em;
  color: rgba(var(--c-ffffff-rgb), .5); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; margin-bottom: 4px;
}
/* Override existing c5-panel-input for dark context */
.c5-hero-panel .c5-panel-input {
  width: 100%; min-height: 38px; padding: 0.4rem 0.7rem;
  background: rgba(var(--c-ffffff-rgb), .06); border: 1px solid rgba(var(--c-ffffff-rgb), .12); border-radius: 6px;
  color: var(--c-ffffff);
  /* iOS Safari zooms on focus if font-size < 16px → 16px on mobile, 14px on desktop. */
  font-size: 16px;
  font-family: 'JetBrains Mono', monospace; transition: border-color .2s;
  box-sizing: border-box; appearance: none; -webkit-appearance: none;
}
@media (min-width: 768px) {
  .c5-hero-panel .c5-panel-input { font-size: 14px; }
}
/* Focused panel inputs keep a visible ring (Universal Frontend Standard). Must be on
   :focus, not :focus-visible — Chromium does NOT flag the HOST of date/time inputs
   :focus-visible when Tab lands in their internal shadow-DOM fields. Ring is an OUTLINE,
   not box-shadow — shadow-DOM date inputs lag a style-recalc frame on box-shadow, which
   reads as no-ring to same-frame computed-style checks (and to fast screen readers). */
.c5-hero-panel .c5-panel-input:focus {
  outline: 2px solid var(--brand); outline-offset: 2px;
  border-color: var(--orange-dark); background: rgba(var(--accent-rgb),.05);
}
.c5-hero-panel .c5-panel-input option { background: var(--c-1c1c1e); color: var(--c-ffffff); }
/* Override existing c5-panel-badge inside the hero booking panel.
   font-size enlarged 250% (9px → 22.5px) per Joe — RESERVA RÁPIDA announces itself. */
.c5-hero-panel .c5-panel-badge {
  font-family: 'JetBrains Mono', monospace; font-size: 22.5px; font-weight: 900; letter-spacing: .15em;
  color: var(--orange-dark); border-left: 4px solid var(--orange-dark); padding-left: 14px;
  margin-bottom: 10px; text-transform: uppercase; line-height: 1.1;
}
/* Override existing c5-hero-price-row for new two-step */
.c5-hero-panel .c5-hero-price-row {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(var(--accent-rgb),.1); border: 1px solid rgba(var(--accent-rgb),.3);
  border-radius: 6px; padding: 8px 12px; border-top: none; border-bottom: none;
  margin: 0;
}
.c5-hero-panel .c5-hero-price-label { font-size: 10px; color: rgba(var(--c-ffffff-rgb), .6); font-family: 'JetBrains Mono', monospace; font-weight: 700; }
.c5-hero-panel .c5-hero-price-val   { font-size: 1.3rem; font-weight: 900; color: var(--orange-dark); font-family: 'JetBrains Mono', monospace; }
/* Override existing c5-panel-submit for dark context */
.c5-hero-panel .c5-panel-submit {
  width: 100%; min-height: 52px; background: var(--orange-dark); color: var(--c-ffffff);
  border: none; border-radius: 6px; font-weight: 900; font-size: 0.9rem;
  letter-spacing: .08em; font-family: 'JetBrains Mono', monospace; cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb),0.4);
  padding: 0;
  /* Lock text vertical center so transform/scale on hover doesn't reflow it. */
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
}
/* No scaleX on hover — caused sub-pixel reflow that read as a height bounce. */
.c5-hero-panel .c5-panel-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(var(--accent-rgb),.55); background: var(--orange); }
.c5-hero-panel .c5-panel-submit:active { transform: translateY(0); }
.c5-hero-panel .c5-panel-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.c5-panel-sub { font-size: 10px; color: rgba(var(--c-ffffff-rgb), .4); font-family: 'JetBrains Mono', monospace; }

/* Mobile ordering */
@media (max-width: 1023px) {
  .c5-hero-right-order { order: -1; }
  .c5-hero-left-order  { order: 1; }
}

/* Step indicator */
.c5-step-indicator {
  display: flex; align-items: center; gap: 8px; margin-bottom: 18px;
}
.c5-step-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-333333); border: 2px solid var(--orange-dark); transition: background .3s; flex-shrink: 0;
}
.c5-step-dot.active { background: var(--orange-dark); }
.c5-step-line {
  flex: 1; height: 2px; background: var(--c-333333); position: relative; overflow: hidden;
}
.c5-step-line::after {
  content: ''; position: absolute; inset: 0 auto 0 0;
  width: calc(var(--c5-progress, 0) * 100%);
  background: var(--orange-dark); transition: width .4s ease;
}

/* Spacing utilities used inside panel */
.mb-1 { margin-bottom: 6px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 14px; }
.mb-4 { margin-bottom: 18px; }
.mt-3 { margin-top: 14px; }
.text-xs { font-size: 11px; }
.text-center { text-align: center; }

/* Back button */
.c5-back-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(var(--c-ffffff-rgb), .06); border: 1px solid rgba(var(--c-ffffff-rgb), .2); color: var(--c-ffffff);
  display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0;
  transition: border-color .2s;
}
.c5-back-btn:hover { border-color: var(--orange-dark); color: var(--orange-dark); }

/* Step 2 hidden */
.c5-step2-hidden { display: none; }

/* Summary card */
.c5-summary-card {
  background: rgba(var(--c-ffffff-rgb), .04); border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(var(--c-ffffff-rgb), .08);
}
.c5-summary-row {
  display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px;
  border-bottom: 1px solid rgba(var(--c-ffffff-rgb), .06); opacity: 0;
  animation: c5SumRowIn .4s ease forwards;
}
.c5-summary-row:last-child { border-bottom: none; }
.c5-summary-row:nth-child(1) { animation-delay: .05s; }
.c5-summary-row:nth-child(2) { animation-delay: .12s; }
.c5-summary-row:nth-child(3) { animation-delay: .19s; }
.c5-summary-row:nth-child(4) { animation-delay: .26s; }
.c5-summary-row--price { background: rgba(var(--accent-rgb),.05); }
@keyframes c5SumRowIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.c5-sum-icon  { font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.c5-sum-label { font-size: 9px; font-weight: 900; letter-spacing: .1em; color: rgba(var(--c-ffffff-rgb), .4); font-family: 'JetBrains Mono', monospace; text-transform: uppercase; }
.c5-sum-val   { font-size: 12px; color: var(--c-ffffff); font-weight: 600; font-family: 'JetBrains Mono', monospace; margin-top: 2px; }
.c5-sum-price {
  font-size: 1.3rem; font-weight: 900; color: var(--orange-dark); font-family: 'JetBrains Mono', monospace;
  animation: c5PriceSpring .6s cubic-bezier(0.34,1.56,0.64,1) .35s both;
}
@keyframes c5PriceSpring { from { opacity: 0; transform: scale(0.6); } to { opacity: 1; transform: scale(1); } }

/* Step transitions */
@keyframes c5StepOut {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to   { opacity: 0; transform: translateX(-24px) scale(0.98); }
}
@keyframes c5StepIn {
  from { opacity: 0; transform: translateX(24px) scale(0.98); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

/* Error */
.c5-field-error { font-size: 11px; color: var(--c-ff4d4d); margin-top: 6px; min-height: 16px; font-weight: 700; font-family: 'JetBrains Mono', monospace; }

/* Loading spinner */
.c5-spinner {
  display: inline-block; width: 13px; height: 13px;
  border: 2px solid rgba(var(--c-ffffff-rgb), .3); border-top-color: var(--c-ffffff);
  border-radius: 50%; animation: c5Spin .7s linear infinite; margin-right: 6px;
  vertical-align: middle;
}
@keyframes c5Spin { to { transform: rotate(360deg); } }

/* ════ [/ZE:booking:two-step] ══════════════════════════════════ */

/* ════ [ZE:fleet:card-dates] ══ Orange Rush ══ */
.c5-card-dates{overflow:hidden;clip-path:polygon(0 0,0 0,0 100%,0 100%);max-height:0;transition:clip-path .42s cubic-bezier(.4,0,.2,1),max-height .42s ease}
.c5-card-dates.open{clip-path:polygon(0 0,100% 0,100% 100%,0 100%);max-height:220px}
.c5-date-inner{background:var(--c-1c1c1e);border-top:3px solid var(--orange-dark);position:relative;padding:14px 14px 10px}
.c5-date-inner::before{content:'';position:absolute;top:0;left:0;width:40%;height:3px;background:var(--orange-dark);box-shadow:0 0 12px rgba(var(--accent-rgb),.5)}
.c5-date-row{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:10px}
.c5-date-lbl{display:block;font-size:9px;font-weight:800;color:rgba(var(--accent-rgb),.85);letter-spacing:.12em;text-transform:uppercase;margin-bottom:4px}
.c5-date-inp{width:100%;background:rgba(var(--accent-rgb),.08);border:1px solid rgba(var(--accent-rgb),.25);border-radius:4px;padding:7px 8px;font-size:13px;color:var(--c-ffffff);color-scheme:dark;outline:none;min-height:36px;transition:border-color .2s}
.c5-date-inp:focus{border-color:var(--orange-dark)}
.c5-date-confirm{width:100%;background:linear-gradient(90deg,var(--orange-dark),var(--orange));color:var(--c-ffffff);border:none;border-radius:4px;padding:9px;font-size:11px;font-weight:900;letter-spacing:.1em;text-transform:uppercase;cursor:pointer;min-height:38px;transition:opacity .2s}
.c5-date-confirm:hover{opacity:.88}
/* ════ [/ZE:fleet:card-dates] ══ */

/* ════ [ZE:booking:marquee] ══ USP ticker imported from c3 ══ */
.c5-marquee-wrap {
  position: relative;
  overflow: hidden;
  background: rgba(var(--c-ffffff-rgb), 0.04);
  border: 1px solid rgba(var(--c-ffffff-rgb), 0.08);
  border-radius: 8px;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent 0, var(--c-000000) 8%, var(--c-000000) 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, var(--c-000000) 8%, var(--c-000000) 92%, transparent 100%);
}
.c5-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  align-items: center;
  gap: 14px;
  animation: c5-marquee 38s linear infinite;
  will-change: transform;
}
.c5-marquee-wrap:hover .c5-marquee-track { animation-play-state: paused; }
.c5-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(var(--c-ffffff-rgb), 0.82);
  text-transform: uppercase;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.c5-marquee-icon { font-size: 14px; line-height: 1; }
.c5-marquee-sep {
  color: rgba(var(--accent-rgb),0.55);
  font-weight: 800;
  font-size: 14px;
}
@keyframes c5-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .c5-marquee-track { animation: none; }
}
/* ════ [/ZE:booking:marquee] ══ */

/* ════ [ZE:booking:price-preview] ══ Detailed breakdown imported from c3 ══ */
.c5-price-preview {
  background: rgba(var(--accent-rgb),0.06);
  border: 1px solid rgba(var(--accent-rgb),0.18);
  border-radius: 10px;
  padding: 14px;
}
.c5-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.c5-price-row--top {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.c5-price-row .text-right { text-align: right; }
.c5-price-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.c5-price-val {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.c5-price-val--brand { color: var(--blue, var(--c-00a0ff)); }
.c5-price-label--total {
  font-size: 11px;
  color: var(--blue, var(--c-00a0ff));
  margin-bottom: 0;
}
.c5-price-total {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-head, inherit);
  color: var(--text);
  line-height: 1;
}
.c5-price-note {
  margin: 8px 0 0;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(var(--accent-rgb),0.85);
}
/* ════ [/ZE:booking:price-preview] ══ */

/* ════ [ZE:fleet:v2-boarding-pass] ══ Variant 02 locked-in ══ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.fleet-card {
  position: relative;
  background: var(--c-fefcf7);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(var(--c-000000-rgb), 0.35);
  overflow: hidden;
  cursor: pointer;
  color: var(--c-0d1320);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease;
  outline: none;
}
.fleet-card:hover,
.fleet-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(var(--c-000000-rgb), 0.45);
}
.fleet-card:focus-visible { outline: 2px solid var(--blue, var(--c-00a0ff)); outline-offset: 2px; }

.fleet-stripe {
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 3px;
  background: var(--orange-dark);
  z-index: 3;
}

/* The boarding-pass horizontal split + perforation line */
.fleet-card-row {
  display: grid;
  grid-template-columns: 42% 1fr;
  position: relative;
  min-height: 240px;
}
.fleet-card-row::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 42%;
  width: 2px;
  background-image: linear-gradient(to bottom, var(--c-c5beaf) 0, var(--c-c5beaf) 6px, transparent 6px, transparent 12px);
  background-size: 2px 12px;
  z-index: 1;
}
.fleet-card-row::after {
  /* Holepunch illusion: notch matches the section bg behind the card.
     var(--white) is the section bg and theme-flips with dark-mode. */
  content: '';
  position: absolute;
  top: 50%; left: 42%;
  width: 28px; height: 28px;
  background: var(--white, var(--c-ffffff));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  /* Subtle inner shadow sells the depth */
  box-shadow: inset 0 1px 2px rgba(var(--c-000000-rgb), 0.08);
}

.fleet-card-image {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.fleet-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms cubic-bezier(.4,0,.2,1);
}
.fleet-card:hover .fleet-card-image img { transform: scale(1.06); }

.fleet-group-tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  background: rgba(var(--c-0d1320-rgb), 0.85);
  color: var(--c-ffffff);
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  border-radius: 3px;
  z-index: 2;
}
.fleet-cat-tag {
  position: absolute;
  bottom: 12px; left: 12px;
  padding: 3px 9px;
  background: rgba(var(--accent-rgb),0.95);
  color: var(--c-ffffff);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
}

.fleet-card-body {
  padding: 18px 20px 18px 26px;
  display: flex;
  flex-direction: column;
}
.fleet-card-pass-label {
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-999999);
  margin: 0 0 2px;
  font-weight: 700;
}
.fleet-card-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 0 0 8px;
  line-height: 1.1;
  color: var(--c-0d1320);
  text-transform: uppercase;
}
.fleet-card-desc {
  font-size: 11px;
  color: var(--c-777777);
  margin: 0 0 12px;
  line-height: 1.5;
}
.fleet-card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--c-ece6d8);
  border-bottom: 1px solid var(--c-ece6d8);
  margin-bottom: 10px;
}
.fleet-card-price-row .fleet-card-pass-label {
  margin: 0;
  align-self: flex-end;
}
.fleet-card-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  color: var(--blue, var(--c-00a0ff));
}
.fleet-card-price small {
  font-family: 'Open Sans', 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  opacity: 0.5;
  margin-left: 3px;
}
.fleet-card-specs {
  display: flex;
  gap: 14px;
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  color: var(--c-555555);
  margin-bottom: 12px;
}
.fleet-card-spec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
/* Spec icons — clean line glyphs replacing childlike emoji; inherit text colour via mask */
.fleet-card-spec.ic::before {
  content: ''; flex: none; width: 14px; height: 14px;
  background: currentColor; opacity: .6;
  -webkit-mask: var(--spec-i) center / contain no-repeat;
          mask: var(--spec-i) center / contain no-repeat;
}
.ic-pax  { --spec-i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm0 2c-4.4 0-8 2.2-8 5v1h16v-1c0-2.8-3.6-5-8-5z'/%3E%3C/svg%3E"); }
.ic-bag  { --spec-i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 7V5.5A2.5 2.5 0 0 1 11.5 3h1A2.5 2.5 0 0 1 15 5.5V7h3.5A1.5 1.5 0 0 1 20 8.5v10A1.5 1.5 0 0 1 18.5 20h-13A1.5 1.5 0 0 1 4 18.5v-10A1.5 1.5 0 0 1 5.5 7H9zm2 0h2V5.5h-2V7z'/%3E%3C/svg%3E"); }
.ic-fuel { --spec-i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 21V4a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v17h1v2H2v-2h1zM5 5v4h6V5H5zm11 2 3 3v7.5a1.5 1.5 0 0 1-3 0V13h-2v-3h2V8.5L15 7z'/%3E%3C/svg%3E"); }
.ic-size { --spec-i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 3 6.5v11L12 22l9-4.5v-11L12 2zm0 2.2 5.7 2.8L12 9.8 6.3 7 12 4.2zM5 8.6l6 3v7.2l-6-3V8.6zm14 0v7.2l-6 3v-7.2l6-3z'/%3E%3C/svg%3E"); }
.ic-loc   { --spec-i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E"); }
.ic-phone { --spec-i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8a15 15 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.24 11 11 0 0 0 3.4.55 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11 11 0 0 0 .55 3.4 1 1 0 0 1-.25 1L6.6 10.8z'/%3E%3C/svg%3E"); }
.ic-mail  { --spec-i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 5h18a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1zm1.2 2L12 12l7.8-5H4.2zM20 8.3l-8 5-8-5V18h16V8.3z'/%3E%3C/svg%3E"); }
.ic-clock { --spec-i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm1 5h-2v6.4l5 3 1-1.7-4-2.4V7z'/%3E%3C/svg%3E"); }
.ic-chat  { --spec-i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16a1 1 0 0 1 1 1v11a1 1 0 0 1-1 1H8l-4 4V5a1 1 0 0 1 1-1zm3 5v2h10V9H7zm0 4v2h7v-2H7z'/%3E%3C/svg%3E"); }
.ic-seat  { --spec-i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2a2 2 0 0 0-2 2v8a3 3 0 0 0 3 3h4.8l1 5h2l-1.2-6.2A2 2 0 0 0 14.6 12H8V4h3a1 1 0 0 0 0-2H7zm-.5 14L4.6 21h2.1l1.3-3.4A4.9 4.9 0 0 1 6.5 16z'/%3E%3C/svg%3E"); }
.ic-gps   { --spec-i: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E"); }
/* Contact-block icons — accent-tinted mask glyph inside the round chip */
.contact-icon.ic { font-size: 0; }
.contact-icon.ic::before {
  content: ''; width: 22px; height: 22px; background: var(--accent, var(--c-ff0033));
  -webkit-mask: var(--spec-i) center / contain no-repeat; mask: var(--spec-i) center / contain no-repeat;
}
/* Booking extras chip icons */
.c5-extra-chip .c5-extra-ic.ic {
  display: inline-block; width: 16px; height: 16px; background: currentColor; opacity: .75;
  -webkit-mask: var(--spec-i) center / contain no-repeat; mask: var(--spec-i) center / contain no-repeat;
}
.fleet-card-included {
  margin: 0;
  padding: 10px 12px;
  background: rgba(var(--c-00a0ef-rgb), 0.08);
  border: 1px solid rgba(var(--c-00a0ef-rgb), 0.22);
  border-left: 3px solid rgba(var(--c-00a0ef-rgb), 0.85);
  border-radius: 6px;
  color: var(--c-1a2638);
}
.fleet-card-included-title {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-006fa8);
  margin-bottom: 8px;
}
.fleet-card-included-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  font-size: 12px;
  line-height: 1.45;
}
.fleet-card-included-list li {
  position: relative;
  padding-left: 18px;
}
.fleet-card-included-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  width: 13px; height: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(var(--c-00a0ef-rgb), 0.95);
  color: var(--c-ffffff);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}
@media (max-width: 480px) {
  .fleet-card-included-list { grid-template-columns: 1fr; }
}

/* Date veil — c3-style bright slide-up from bottom (hover + click) */
.fleet-date-veil {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(var(--c-00a0ef-rgb), 0.97);
  backdrop-filter: blur(4px);
  padding: 14px 16px 16px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 -8px 24px rgba(var(--c-003c6e-rgb), 0.25);
}
@media (hover: hover) {
  .fleet-card:hover .fleet-date-veil { transform: translateY(0); }
}
.fleet-card.is-open .fleet-date-veil { transform: translateY(0); }
.fleet-date-veil-title {
  color: rgba(var(--c-ffffff-rgb), 0.92);
  font-family: var(--font-head, 'Inter', sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.fleet-date-fields {
  display: flex;
  gap: 8px;
}
.fleet-date-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fleet-date-field label {
  color: rgba(var(--c-ffffff-rgb), 0.82);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.fleet-date-field input {
  background: rgba(var(--c-ffffff-rgb), 0.18);
  border: 1px solid rgba(var(--c-ffffff-rgb), 0.38);
  border-radius: 6px;
  color: var(--c-ffffff);
  padding: 6px 9px;
  font-size: 12px;
  width: 100%;
  cursor: pointer;
  color-scheme: dark;
  outline: none;
  transition: background .2s, border-color .2s;
}
.fleet-date-field input:focus {
  background: rgba(var(--c-ffffff-rgb), 0.28);
  border-color: rgba(var(--c-ffffff-rgb), 0.7);
  /* Visible ring on :focus (Universal Frontend Standard) — the base rule's outline:none
     killed it, and :focus-visible never fires on date-input HOSTS in Chromium.
     OUTLINE, not box-shadow (shadow lags a recalc frame on shadow-DOM date inputs). */
  outline: 2px solid var(--brand); outline-offset: 2px;
}
.fleet-date-field input::-webkit-calendar-picker-indicator { filter: invert(1); cursor: pointer; }
.fleet-veil-btn {
  width: 100%;
  background: var(--c-ffffff);
  color: var(--c-0090d0);
  border: none;
  border-radius: 6px;
  padding: 9px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background .15s, transform .15s, box-shadow .15s;
  font-family: var(--font-head, 'Inter', sans-serif);
}
.fleet-veil-btn:hover {
  background: var(--c-e8f9ff);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--c-0090d0-rgb), 0.25);
}

@media (max-width: 700px) {
  .fleet-grid { grid-template-columns: 1fr; gap: 16px; }
  .fleet-card-row { grid-template-columns: 1fr; min-height: auto; }
  .fleet-card-row::before, .fleet-card-row::after { display: none; }
  .fleet-card-image { height: 200px; border-radius: 10px 10px 0 0; }
  .fleet-card-body { padding: 18px 20px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .fleet-card, .fleet-card-image img, .fleet-date-veil { transition: none; }
}
/* ════ [/ZE:fleet:v2-boarding-pass] ══ */

/* ════ [ZE:hero:preview-card] ══ Peek-sidebar tucked behind booking form ══ */
/* Hero content stays in col 1 always visible — no fade-out. Preview is now
   positioned in col 2 (same as booking form) anchored to col-2 LEFT edge.
   Booking form max-width 440 anchored to col-2 RIGHT → ~110px gap on col-2 left
   is where the fleet card peek shows. The remaining ~210px of the card hides
   behind the booking form via lower z-index. On hover, the card slides left
   to escape the booking form's shadow and reveal fully. */

.c5-hero-2col .hero-content    { grid-column: 1; grid-row: 1; position: relative; z-index: 1; }
.c5-hero-2col .c5-hero-preview { grid-column: 2; grid-row: 1; }
.c5-hero-2col .c5-hero-panel   { grid-column: 2; grid-row: 1; } /* stack with preview in same cell */

.c5-hero-preview {
  position: relative;
  width: 440px;                    /* match booking form width */
  max-width: 440px;
  justify-self: start;             /* anchor to col-2 LEFT edge */
  /* Stretch to the booking panel's row height, then inset 15px top + bottom
     so the card sits ~30px shorter than the ~590px panel (≈5% smaller). */
  align-self: stretch;
  margin-top: 15px;
  margin-bottom: 15px;
  z-index: 2;                      /* above hero text (z-index 1), below booking form (z-index 3) */
  opacity: 1;
  pointer-events: auto;
  /* Resting peek: shifted 95px right → ~15px visible peek on the left of booking form. */
  transform: translateX(95px);
  transition: transform .55s cubic-bezier(.22,1,.36,1),
              box-shadow .35s ease;

  /* Background matches booking panel exactly (solid white, no gradient) per Joe.
     Right-side corners square: card disappears behind booking form, so only the
     left edge needs the rounded radius. */
  background: rgba(var(--c-ffffff-rgb), 0.97);
  border: 1px solid rgba(var(--accent-rgb),0.22);
  border-left: 3px solid var(--orange-dark);  /* orange spine on the peek edge — still the eye-catcher */
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: 0 4px 18px rgba(var(--c-003c64-rgb), 0.10);
  overflow: hidden;
  padding: 14px;
}
.c5-hero-preview::after {
  /* Sky-blue corner veil — top right of the card, holiday-brand accent */
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at top right, rgba(var(--accent-rgb),0.18) 0%, rgba(var(--accent-rgb),0) 65%);
  pointer-events: none;
  z-index: 0;
}
.c5-hero-preview > * { position: relative; z-index: 1; }

/* ════ A1+ hero-preview components ════
   Card chrome (geometry, peek/reveal) is handled above; these style the composed content.
   Sections own their own padding — the card padding is zeroed so dividers run edge to edge. */
.c5-hero-preview { padding: 0; }
.c5-hp-sect { padding: 11px 14px; border-top: 1px solid var(--border); }
.c5-hp-eyebrow {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); margin: 0 0 6px;
}

/* [vehicle] balanced split — square image + body */
.c5-hp-vehicle { display: grid; grid-template-columns: 132px 1fr; gap: 13px; padding: 14px; }
.c5-hp-v-imgwrap { position: relative; }
.c5-hp-v-img { width: 132px; height: 132px; object-fit: cover; border-radius: 12px; display: block; }
.c5-hp-v-cat {
  position: absolute; bottom: 7px; left: 7px;
  background: var(--orange); color: var(--accent-ink, var(--c-ffffff));
  font-family: var(--font-mono, monospace); font-size: 10px; font-weight: 800;
  padding: 2px 7px; border-radius: 5px; letter-spacing: .04em;
}
.c5-hp-v-body { min-width: 0; }
.c5-hp-v-name {
  font-family: var(--font-head, inherit); font-weight: 700; font-size: 1.02rem;
  line-height: 1.15; color: var(--text); margin: 0 0 3px;
}
.c5-hp-v-fleet { font-size: 12px; color: var(--text-muted); font-weight: 600; margin: 0 0 7px; }
.c5-hp-v-specs { display: flex; gap: 5px; flex-wrap: wrap; }
.c5-hp-v-specs .fleet-card-spec {
  font-size: 11px; font-weight: 700; color: var(--text-mid);
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 999px; padding: 3px 9px; white-space: nowrap;
}

/* [switcher] group gallery — syncs the booking form's vehicle <select> */
.c5-hp-switcher { display: flex; gap: 6px; }
.c5-hp-sw {
  flex: 1; min-width: 0; border: 1px solid var(--border); border-radius: 9px;
  overflow: hidden; text-align: center; background: var(--off-white); cursor: pointer; padding: 0;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.c5-hp-sw img { width: 100%; height: 34px; object-fit: cover; display: block; }
.c5-hp-sw-g { display: block; font-family: var(--font-mono, monospace); font-size: 10px; font-weight: 800; color: var(--text); padding: 2px 0 0; }
.c5-hp-sw-p { display: block; font-size: 10px; color: var(--orange-dark); font-weight: 800; padding-bottom: 3px; }
.c5-hp-sw:hover { border-color: rgba(var(--accent-rgb), .5); }
.c5-hp-sw.is-act { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange); }

/* [included] two-column tick list (backend-fed later) */
.c5-hp-incl { list-style: none; margin: 0; padding: 0; columns: 3; column-gap: 14px; }
.c5-hp-incl li { font-size: 12px; color: var(--text-mid); padding-left: 16px; position: relative; margin: 3px 0; break-inside: avoid; }
.c5-hp-incl li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 800; }

/* [trust] rating chip + since-year */
.c5-hp-trust { display: flex; gap: 7px; flex-wrap: wrap; align-items: center; padding: 11px 14px; border-top: 1px solid var(--border); }
.c5-hp-chip {
  display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700;
  color: var(--text); background: var(--off-white); border: 1px solid var(--border); border-radius: 8px; padding: 4px 9px;
}
.c5-hp-chip b { font-weight: 800; }
.c5-hp-chip-link { text-decoration: none; cursor: pointer; transition: border-color .15s ease, transform .15s ease; }
.c5-hp-chip-link:hover { border-color: var(--blue); transform: translateY(-1px); }
.c5-hp-star { color: var(--c-f5a623); }

/* [review] random Google review filler — Concept D: stat + quote split (rating is the hero) */
.c5-hp-review {
  display: flex; justify-content: center; align-items: center; gap: 16px;
  padding: 15px 16px 16px; text-align: center;
}
.c5-hp-rev-quote { max-width: 300px; text-align: center; }
.c5-hp-review[hidden] { display: none; }
/* Left — the big rating stat */
.c5-hp-rev-stat { text-align: center; padding-right: 16px; border-right: 1px solid var(--line, rgba(var(--c-14283c-rgb), .14)); }
.c5-hp-rev-num { font-size: 2.4rem; font-weight: 800; line-height: 1; color: var(--text); letter-spacing: -.02em; }
.c5-hp-rev-num small { font-size: .95rem; color: var(--c-f5a623); margin-left: 1px; }
.c5-hp-rev-cnt { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 6px; font-size: 11px; color: var(--muted, rgba(var(--c-14283c-rgb), .6)); white-space: nowrap; }
.c5-g-ic { width: 14px; height: 14px; flex: none; }
/* Right — the quote */
.c5-hp-rev-stars { color: var(--c-f5a623); font-size: 13px; letter-spacing: 1px; margin-bottom: 4px; }
.c5-hp-rev-text {
  font-size: 12.5px; line-height: 1.5; color: var(--text); margin: 0 0 7px; font-style: italic;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.c5-hp-rev-author { font-size: 11.5px; font-weight: 700; color: var(--text); }
.c5-hp-rev-via { font-weight: 500; color: var(--muted, rgba(var(--c-14283c-rgb), .55)); }
body.dark-mode .c5-hp-rev-text { color: rgba(var(--c-ffffff-rgb), .82); }
body.dark-mode .c5-hp-rev-stat { border-color: rgba(var(--c-ffffff-rgb), .14); }
@media (max-width: 420px) {
  .c5-hp-review { grid-template-columns: 1fr; gap: 10px; }
  .c5-hp-rev-stat { padding-right: 0; padding-bottom: 10px; border-right: 0; border-bottom: 1px solid var(--line, rgba(var(--c-14283c-rgb), .14)); }
}
body.dark-mode .c5-hp-rev-author { color: rgba(var(--c-ffffff-rgb), .9); }
body.dark-mode .c5-hp-rev-via { color: rgba(var(--c-ffffff-rgb), .5); }

/* [avail] live availability — hidden until a public availability endpoint exists */
.c5-hp-avail-wrap { padding: 0 14px 11px; }
.c5-hp-avail-wrap[hidden] { display: none; }
.c5-hp-avail {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800;
  color: var(--c-1ba14e); background: var(--c-e9f8ef); border: 1px solid rgba(var(--c-1ba14e-rgb), .28); border-radius: 999px; padding: 5px 11px;
}
.c5-hp-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--c-1ba14e); box-shadow: 0 0 0 3px rgba(var(--c-1ba14e-rgb), .18); }

/* [price] full breakdown box — reuses .c5-price-preview chrome; just needs card insets.
   (Theme tokens --text/--border/--text-muted flip in dark mode, so it reads in both.) */
.c5-hp-pricebox { margin: 11px 14px; }
.c5-hp-pricebox[hidden] { display: none; }
/* Responsive swap: on wide desktop the card shows the breakdown → hide the booking-form
   duplicate (≥1101px is exactly where the card becomes visible). At ≤1100px the card is
   hidden, so the form's own box (toggled inline by updateC5Price) is the live one. */
@media (min-width: 1101px) {
  .c5-hero-panel #c5-price-preview { display: none !important; }
}

/* [localhook] cross-sell — ships hidden, ready to enable */
.c5-hp-localhook {
  display: flex; align-items: center; gap: 10px; margin: 0 14px 14px; padding: 8px;
  background: var(--dark); border-radius: 10px; text-decoration: none;
}
.c5-hp-localhook[hidden] { display: none; }
.c5-hp-localhook img { width: 46px; height: 46px; object-fit: cover; border-radius: 8px; flex: none; }
.c5-hp-lh-txt { display: flex; flex-direction: column; min-width: 0; }
.c5-hp-lh-t { font-size: 12px; font-weight: 700; color: var(--c-ffffff); }
.c5-hp-lh-s { font-size: 11px; color: rgba(var(--c-ffffff-rgb), .7); }
.c5-hp-lh-new { font-size: 10px; color: var(--orange-light); font-weight: 700; margin-top: 3px; }
.c5-hp-lh-go { margin-left: auto; color: var(--orange-light); font-weight: 800; font-size: 1.05rem; }

/* A1+ dark-mode — the card flips to #26262a (rule below), so flip component tones too. */
body.dark-mode .c5-hp-sect,
body.dark-mode .c5-hp-trust { border-top-color: rgba(var(--c-ffffff-rgb), 0.08); }
body.dark-mode .c5-hp-v-name,
body.dark-mode .c5-hp-sw-g { color: var(--c-ffffff); }
body.dark-mode .c5-hp-v-specs .fleet-card-spec,
body.dark-mode .c5-hp-sw,
body.dark-mode .c5-hp-chip { background: rgba(var(--c-ffffff-rgb), 0.05); border-color: rgba(var(--c-ffffff-rgb), 0.10); color: rgba(var(--c-ffffff-rgb), 0.88); }
body.dark-mode .c5-hp-incl li { color: rgba(var(--c-ffffff-rgb), 0.78); }

/* Light marquee variant — used on the light fleet card. Dark text on light bg. */
.c5-marquee-wrap--light {
  background: rgba(var(--accent-rgb),0.06);
  border: 1px solid rgba(var(--accent-rgb),0.18);
}
.c5-marquee-wrap--light .c5-marquee-item { color: rgba(var(--c-14283c-rgb), 0.78); }
.c5-marquee-wrap--light .c5-marquee-sep  { color: rgba(var(--accent-rgb), 0.65); }

/* FOUC guard — hide the card until JS finishes init AND the booking panel has revealed,
   then fade it in smoothly so it appears to nest behind a visible booking form. */
body:not(.c5-hero-ready) .c5-hero-preview { opacity: 0; visibility: hidden; }
body.c5-hero-ready .c5-hero-preview { opacity: 1; transition: opacity .45s ease, transform .55s cubic-bezier(.22,1,.36,1), box-shadow .35s ease; }

/* Booking-form spacer — replaces the moved marquee block. Keeps step 1 the same height
   so the fleet card's stretched height stays consistent. */
.c5-booking-marquee-spacer { height: 38px; }

/* ════ [ZE:lang-banner] ══ Polite first-visit language banner ══ */
.c5-lang-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translate(-50%, calc(100% + 40px));
  z-index: 9997;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px 10px 18px;
  background: var(--c-1c1c1e);
  border: 1px solid rgba(var(--accent-rgb), 0.40);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(var(--c-000000-rgb), 0.35);
  color: var(--c-ffffff);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  max-width: 95vw;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.c5-lang-banner.is-revealed { transform: translate(-50%, 0); }
.c5-lang-banner.is-leaving  { transform: translate(-50%, calc(100% + 40px)); }
.c5-lang-banner__text { white-space: nowrap; font-weight: 700; }
.c5-lang-banner__options { display: inline-flex; gap: 6px; }
.c5-lang-banner__cta {
  background: var(--orange-dark);
  color: var(--c-ffffff);
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, transform .12s;
  font-family: inherit;
}
.c5-lang-banner__cta:hover { background: var(--orange); transform: translateY(-1px); }
.c5-lang-banner__close {
  width: 24px; height: 24px;
  border: none; background: rgba(var(--c-ffffff-rgb), 0.10);
  border-radius: 50%;
  color: var(--c-ffffff);
  cursor: pointer;
  font-size: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .18s;
  font-family: inherit;
}
.c5-lang-banner__close:hover { background: rgba(var(--c-ffffff-rgb), 0.18); }
body:not(.dark-mode) .c5-lang-banner {
  background: var(--c-ffffff);
  color: var(--c-14283c);
  border-color: rgba(var(--accent-rgb),0.30);
}
body:not(.dark-mode) .c5-lang-banner__close {
  background: rgba(var(--accent-rgb),0.06);
  color: var(--c-14283c);
}
@media (max-width: 600px) {
  .c5-lang-banner {
    bottom: 12px; left: 12px; right: 12px;
    transform: translate(0, calc(100% + 40px));
    flex-wrap: wrap;
    border-radius: 14px;
  }
  .c5-lang-banner.is-revealed { transform: translate(0, 0); }
  .c5-lang-banner.is-leaving  { transform: translate(0, calc(100% + 40px)); }
  .c5-lang-banner__text { white-space: normal; font-size: 12px; flex: 1 1 100%; }
}
/* ════ [/ZE:lang-banner] ══ */

/* ════ [ZE:legal-section] ══ Condiciones + Privacidad sections on descubre.php ══ */
.c5-legal-section { padding: 64px 0; background: var(--off-white); }
body.dark-mode .c5-legal-section { background: var(--dark-mid); }
.c5-legal { max-width: 820px; }
.c5-legal__header { margin-bottom: 32px; }
.c5-legal__body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem; font-weight: 700; color: var(--orange-dark);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin: 28px 0 10px;
}
.c5-legal__body p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 10px; }
.c5-legal__body ul { padding-left: 20px; margin-bottom: 12px; }
.c5-legal__body li { font-size: 0.9rem; line-height: 1.55; margin-bottom: 4px; }
body.dark-mode .c5-legal__body { color: rgba(var(--c-ffffff-rgb), 0.82); }
body.dark-mode .c5-legal__body strong { color: var(--c-ffffff); }
/* ════ [/ZE:legal-section] ══ */

/* ════ [ZE:hero:logo-overlay] ══ Large brand statement floating over the hero video ══ */
/* Hidden — header logo is now centered and prominent. Re-enable by removing display:none. */
.hero-logo-overlay {
  display: none;
  position: absolute;
  top: 28px;
  left: max(24px, calc((100% - 1200px) / 2));   /* container-aligned, falls back to 24px gutter */
  z-index: 5;
  pointer-events: none;
}
.hero-logo-overlay img {
  height: 70px;
  width: auto;
  filter: drop-shadow(0 6px 24px rgba(var(--c-000000-rgb), 0.45));
}
@media (max-width: 768px) {
  .hero-logo-overlay { top: 16px; left: 16px; }
  .hero-logo-overlay img { height: 48px; }
}
/* ════ [/ZE:hero:logo-overlay] ══ */

/* ════ [ZE:hero:theme-toggle] ══ Dark ⇄ Light theme overrides — wired to existing .dark-toggle in header ══ */

/* ── DARK overrides (default) ──
   Booking panel already dark via [ZE:booking:two-step] rules; fleet card needs override
   to dark sibling tone since base styles are light. */
body.dark-mode .c5-hero-preview {
  background: var(--c-26262a);
  border: 1px solid rgba(var(--c-ffffff-rgb), 0.06);
  border-left: 3px solid var(--orange-dark);
  box-shadow: 0 4px 18px rgba(var(--c-000000-rgb), 0.35);
}
body.dark-mode .c5-hero-preview::after {
  /* Replace sky-blue veil with a subtle orange glow for dark mode */
  background: radial-gradient(circle at top right, rgba(var(--accent-rgb),0.12) 0%, rgba(var(--accent-rgb),0) 65%);
}
body.dark-mode .c5-hero-preview .c5-marquee-wrap--light {
  background: rgba(var(--c-ffffff-rgb), 0.04);
  border: 1px solid rgba(var(--c-ffffff-rgb), 0.08);
}
body.dark-mode .c5-hero-preview .c5-marquee-wrap--light .c5-marquee-item { color: rgba(var(--c-ffffff-rgb), 0.82); }
body.dark-mode .c5-hero-preview .c5-marquee-wrap--light .c5-marquee-sep  { color: rgba(var(--accent-rgb),0.55); }
/* Light-mode toggle button colors for dark backdrop (already default) — no change needed. */

/* ── THEME-LIGHT overrides ──
   Booking panel default is dark via [ZE:booking:two-step]; light mode flips it to paper-white
   with blue accents, dark text, and light input fields. Fleet card stays light (current default). */
body:not(.dark-mode) .c5-hero-panel {
  background: rgba(var(--c-ffffff-rgb), 0.97);
  border: 1px solid rgba(var(--accent-rgb),0.28);
  box-shadow: 0 8px 48px rgba(var(--c-003c64-rgb), 0.12);
}
/* Corner triangle stays orange in both themes per Joe — it's a brand cue, not a theme cue. */
body:not(.dark-mode) .c5-hero-panel .c5-panel-badge {
  color: var(--orange-dark);
  border-left-color: var(--orange-dark);
}
body:not(.dark-mode) .c5-hero-panel .c5-panel-sub { color: rgba(var(--c-14283c-rgb), 0.55); }
body:not(.dark-mode) .c5-hero-panel .c5-panel-label { color: rgba(var(--c-14283c-rgb), 0.55); }
body:not(.dark-mode) .c5-hero-panel .c5-panel-input {
  background: var(--c-ffffff);
  border: 1px solid rgba(var(--accent-rgb),0.22);
  color: var(--c-14283c);
  color-scheme: light;
}
body:not(.dark-mode) .c5-hero-panel .c5-panel-input:focus {
  border-color: var(--orange);
  background: rgba(var(--accent-rgb),0.04);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.14);
}
body:not(.dark-mode) .c5-hero-panel .c5-panel-input option { background: var(--c-ffffff); color: var(--c-14283c); }
body:not(.dark-mode) .c5-hero-panel .c5-hero-price-row {
  background: rgba(var(--accent-rgb),0.06);
  border: 1px solid rgba(var(--accent-rgb),0.22);
}
body:not(.dark-mode) .c5-hero-panel .c5-hero-price-label { color: rgba(var(--c-14283c-rgb), 0.65); }
body:not(.dark-mode) .c5-hero-panel .c5-step-dot { background: rgba(var(--accent-rgb),0.18); border-color: var(--orange); }
body:not(.dark-mode) .c5-hero-panel .c5-step-dot.active { background: var(--orange); }
body:not(.dark-mode) .c5-hero-panel .c5-step-line { background: rgba(var(--accent-rgb),0.18); }
body:not(.dark-mode) .c5-hero-panel .c5-step-line::after { background: var(--orange); }
body:not(.dark-mode) .c5-hero-panel .c5-summary-card {
  background: rgba(var(--accent-rgb),0.04);
  border: 1px solid rgba(var(--accent-rgb),0.18);
}
body:not(.dark-mode) .c5-hero-panel .c5-summary-row { border-bottom-color: rgba(var(--accent-rgb),0.10); }
body:not(.dark-mode) .c5-hero-panel .c5-sum-label { color: rgba(var(--c-14283c-rgb), 0.55); }
body:not(.dark-mode) .c5-hero-panel .c5-sum-val { color: var(--c-14283c); }
body:not(.dark-mode) .c5-hero-panel .c5-back-btn {
  background: rgba(var(--accent-rgb),0.06);
  border-color: rgba(var(--accent-rgb),0.30);
  color: var(--c-14283c);
}
/* ════ [/ZE:hero:theme-toggle] ══ */

.c5-hero-preview.is-revealed {
  /* 415px slide travel. Resting is +95, so endpoint = 95 - 415 = -320px.
     Card stays at z-index 2 — sits ABOVE hero text (z-index 1) but BELOW booking form (z-index 3). */
  transform: translateX(-320px);
  box-shadow: 0 14px 42px rgba(var(--c-000000-rgb), 0.55);
}

/* Fleet card clone inside */
/* Cloned fleet-card inside the preview: kill its drop shadow AND make its background
   match the booking panel per Joe — so the card reads as a sibling, not a foreign element. */
.c5-hero-preview .fleet-card {
  cursor: default;
  box-shadow: none;
  background: rgba(var(--c-ffffff-rgb), 0.97);   /* light theme — matches .c5-hero-panel light */
}
body.dark-mode .c5-hero-preview .fleet-card {
  background: var(--c-1c1c1e);                  /* dark theme — matches .c5-hero-panel dark */
  color: var(--c-ffffff);
}
/* The holepunch notch in the boarding-pass split uses var(--white) which is the
   section background — recolor it to the booking bg so it visually disappears here. */
.c5-hero-preview .fleet-card-row::after { background: rgba(var(--c-ffffff-rgb), 0.97); }
body.dark-mode .c5-hero-preview .fleet-card-row::after { background: var(--c-1c1c1e); }
.c5-hero-preview .fleet-card:hover { transform: none; box-shadow: none; }
.c5-hero-preview .fleet-card:hover .fleet-card-image img { transform: none; }
.c5-hero-preview .fleet-card .fleet-date-veil { display: none; }

@media (min-width: 961px) and (max-width: 1100px) {
  /* Tight desktop — peek geometry doesn't fit cleanly. Collapse col 2 to 440 and hide the peek. */
  .c5-hero-2col { grid-template-columns: 1fr 440px; }
  .c5-hero-panel { justify-self: stretch; }
  .c5-hero-preview { display: none; }
}
@media (max-width: 960px) {
  /* Mobile stack — original rule at line ~1122 sets single column; preview hidden here too.
     CRITICAL: reset explicit grid-column on the panel — otherwise grid-column: 2 forces an
     implicit second column to be created at mobile widths, breaking the stack. */
  .c5-hero-preview { display: none; }
  .c5-hero-2col .c5-hero-panel { grid-column: auto; grid-row: auto; justify-self: stretch; }
}
@media (prefers-reduced-motion: reduce) {
  .c5-hero-preview { transition: none; }
}
/* ════ [/ZE:hero:preview-card] ══ */

/* ════ [ZE:booking:location-chip] ════════════════════════════════
   Location chip at top of booking form — reuses the original
   .hero-flag arrow style. Centered horizontally and lifted up so
   it sits on top of the panel's top edge ("blue line").
   ════════════════════════════════════════════════════════════════ */
.lpwd-booking-loc.hero-flag {
  display: flex;
  width: fit-content;
  margin: -18px auto 18px auto;   /* centered + lifted onto the panel top */
  position: relative;
  z-index: 2;                     /* above the diagonal accent corner */
  transform: none;
}
/* ════ [/ZE:booking:location-chip] ══ */

/* ════ [ZE:descubre-hero] ════════════════════════════════════════
   Hero for descubre.php — Juan Garcia / Pexels mar-de-nubes shot
   ════════════════════════════════════════════════════════════════ */
.lpwd-descubre-hero {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  padding: 7rem 0 5rem;
  background-image:
    linear-gradient(180deg, rgb(var(--c-08121e-sp) / 0.45) 0%, rgb(var(--c-08121e-sp) / 0.20) 35%, rgb(var(--c-08121e-sp) / 0.78) 100%),
    url('../images/hub-descubre-hero-mobile.jpg');
  background-size: cover;
  background-position: center;
  color: var(--c-f3f5f8);
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .lpwd-descubre-hero {
    min-height: 540px;
    padding: 9rem 0 6rem;
    background-image:
      linear-gradient(180deg, rgb(var(--c-08121e-sp) / 0.45) 0%, rgb(var(--c-08121e-sp) / 0.15) 35%, rgb(var(--c-08121e-sp) / 0.78) 100%),
      url('../images/hub-descubre-hero.jpg');
  }
}
.lpwd-descubre-hero__eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange, var(--c-ff7a00));
  margin: 0 0 1rem;
}
.lpwd-descubre-hero__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw + 1rem, 4.5rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--c-f3f5f8);
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 14px rgb(var(--c-000000-sp) / .55);
}
.lpwd-descubre-hero__lede {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--c-e8edf2);
  max-width: 60ch;
  margin: 0;
  text-shadow: 0 1px 6px rgb(var(--c-000000-sp) / .65);
}
.lpwd-descubre-hero::after {
  content: 'Photo · Juan Garcia / Pexels';
  position: absolute;
  right: .75rem;
  bottom: .5rem;
  z-index: 2;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: .65rem;
  letter-spacing: .05em;
  color: rgb(var(--c-ffffff-sp) / .55);
  text-shadow: 0 1px 3px rgb(var(--c-000000-sp) / .6);
  pointer-events: none;
}
/* ════ [/ZE:descubre-hero] ══ */

/* ════ [ZE:hero:title-outline] ═══════════════════════════════════
   1px text-shadow outline around each letter of the H1 lines
   (Reserva / Conduce / Listo.) — adds dynamic edge contrast.
   Light mode → dark-orange stroke. Dark mode → light-orange stroke.
   ════════════════════════════════════════════════════════════════ */
.hero-title .title-line,
.hero-title .title-line em {
  text-shadow:
    -1px -1px 0 var(--orange-dark),
     1px -1px 0 var(--orange-dark),
    -1px  1px 0 var(--orange-dark),
     1px  1px 0 var(--orange-dark);
}
body.dark-mode .hero-title .title-line,
body.dark-mode .hero-title .title-line em {
  text-shadow:
    -1px -1px 0 var(--orange-light),
     1px -1px 0 var(--orange-light),
    -1px  1px 0 var(--orange-light),
     1px  1px 0 var(--orange-light);
}
/* ════ [/ZE:hero:title-outline] ══ */

/* [ZE:tools:color-switcher] removed 2026-06-14 — brand colour is final (baked in css/brand.css). */

/* ════════════════════════════════════════════════════════════════
   [LPWD] Brand scrollbar — Universal Frontend Standard (Zero-Drift).
   Added 2026-06-26. Thumb = single-source brand colour (brand.css).
   pemai already ships :focus-visible rings (focus-ring standard met).
   ════════════════════════════════════════════════════════════════ */
html { scrollbar-width: thin; scrollbar-color: var(--scrollbar-accent) rgba(var(--accent-rgb), 0.14); }
::-webkit-scrollbar        { width: 10px; height: 10px; }
::-webkit-scrollbar-track  { background: rgba(var(--accent-rgb), 0.10); }
::-webkit-scrollbar-thumb  { background: var(--scrollbar-accent); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--scrollbar-accent-strong); }
