/* ============================================================
   VELARO RENTALS — Dubaï
   Noir profond + orange signal. Display: Archivo (élargi),
   corps: Schibsted Grotesk, chiffres: Chivo Mono.
   ============================================================ */

:root {
  --bg: #0b0b0c;
  --bg-2: #0f0f11;
  --panel: #141416;
  --panel-2: #18181b;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --txt: #f4f1ec;
  --muted: #97928a;
  --muted-2: #6d6a64;
  --orange: #ff5a00;
  --orange-2: #ff8a2a;
  --orange-grad: linear-gradient(135deg, #ff8a2a 0%, #ff5a00 55%, #e63d00 100%);
  --font-display: "Archivo", sans-serif;
  --font-body: "Schibsted Grotesk", sans-serif;
  --font-mono: "Chivo Mono", monospace;
  --radius: 14px;
  --radius-sm: 10px;
  --gutter: clamp(20px, 4vw, 64px);
}

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

html { scroll-behavior: smooth; }
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain global */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

::selection { background: var(--orange); color: #0b0b0c; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a2e; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: 1340px; margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Typo helpers ---------- */
.display {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 118;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
}
.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--orange);
}
.accent { color: var(--orange); }

h2.section-title {
  font-size: clamp(30px, 4.6vw, 58px);
  margin-top: 14px;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-orange {
  background: var(--orange-grad);
  color: #140700;
  box-shadow: 0 8px 30px rgba(255, 90, 0, 0.28);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(255, 90, 0, 0.42); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
  color: var(--txt);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn .arr { transition: transform 0.25s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.nav.scrolled {
  background: rgba(11, 11, 12, 0.82);
  backdrop-filter: blur(14px);
  border-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 18px var(--gutter);
  max-width: 1500px;
  margin: 0 auto;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo .logo-main {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 125;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 0.06em;
}
.logo .logo-sub {
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.58em;
  color: var(--orange);
  margin-top: 4px;
}
.nav-links { display: flex; gap: 28px; margin: 0 auto; }
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--txt); }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--txt);
}
.nav-phone:hover { color: var(--orange); }
.btn-nav { padding: 12px 22px; font-size: 11px; }
.burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 24px; height: 2px; background: var(--txt); transition: 0.3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 72% center;
  transform: scale(1.06);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,12,0.92) 0%, rgba(11,11,12,0.55) 38%, rgba(11,11,12,0.1) 70%),
    linear-gradient(0deg, var(--bg) 2%, transparent 36%),
    linear-gradient(180deg, rgba(11,11,12,0.75) 0%, transparent 28%);
}
/* trait diagonal orange façon référence */
.hero-slash {
  position: absolute;
  top: 8%; right: -6%;
  width: 58%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange));
  transform: rotate(-24deg);
  transform-origin: right;
  z-index: -1;
  box-shadow: 0 0 24px rgba(255, 90, 0, 0.7);
}
.hero-slash.s2 { top: 16%; right: -12%; width: 40%; opacity: 0.45; }

.hero-word {
  position: absolute;
  top: clamp(64px, 9vh, 120px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-variation-settings: "wdth" 125;
  font-weight: 900;
  font-size: clamp(90px, 16.5vw, 270px);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  z-index: -1;
  user-select: none;
  background: linear-gradient(180deg, rgba(244,241,236,0.85) 0%, rgba(244,241,236,0.18) 70%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-content {
  position: relative;
  padding: 0 var(--gutter) clamp(48px, 8vh, 96px);
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero-left { max-width: 660px; }
.hero h1 {
  font-size: clamp(34px, 4.8vw, 64px);
  margin: 18px 0 22px;
}
.hero-sub {
  color: var(--muted);
  font-size: 16.5px;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-video {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--txt);
  flex-shrink: 0;
}
.hero-video .play {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 14px;
  transition: 0.25s;
  position: relative;
}
.hero-video .play::after {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}
.hero-video:hover .play { background: var(--orange); color: #140700; }
.hero-video .vid-label { font-size: 13.5px; font-weight: 600; }
.hero-video .vid-dur { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }

/* ============================================================
   STATS
   ============================================================ */
.stats {
  position: relative;
  margin-top: clamp(-60px, -4vw, -30px);
  z-index: 5;
}
.stats-grid {
  background: linear-gradient(180deg, #161618 0%, #111113 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.stat {
  padding: 38px 32px 34px;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 22%; bottom: 22%;
  width: 1px;
  background: var(--line);
}
.stat-value {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 115;
  font-weight: 800;
  font-size: clamp(34px, 3.4vw, 50px);
  color: var(--orange);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-value .unit { font-size: 0.5em; }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 14px 0 8px;
  color: var(--txt);
}
.stat-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.stat-icon { font-size: 30px; color: var(--orange); line-height: 1; }

/* ============================================================
   SECTIONS COMMUNES
   ============================================================ */
section { padding: clamp(70px, 9vw, 130px) 0 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: clamp(34px, 4vw, 56px);
}
.section-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
  flex-shrink: 0;
  padding-bottom: 8px;
}
.section-link:hover { color: var(--orange); }

/* ============================================================
   FLOTTE — cartes
   ============================================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.car-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  display: block;
}
.car-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 0, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 90, 0, 0.12);
}
.car-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0d0d0e;
}
.car-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), opacity 0.45s ease;
}
.car-media .img-alt {
  position: absolute; inset: 0;
  opacity: 0;
}
.car-card:hover .car-media .img-main { transform: scale(1.06); }
.car-card:hover .car-media .img-alt { opacity: 1; transform: scale(1.03); }
.car-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(11, 11, 12, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  padding: 7px 12px;
  border-radius: 6px;
  color: var(--txt);
  z-index: 2;
}
.car-badge.hot { color: var(--orange); border-color: rgba(255,90,0,.5); }
.car-arrow {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(11, 11, 12, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  color: var(--txt);
  font-size: 14px;
  z-index: 2;
  transition: 0.25s;
  transform: rotate(-45deg);
}
.car-card:hover .car-arrow {
  background: var(--orange);
  border-color: var(--orange);
  color: #140700;
  transform: rotate(0deg);
}
.car-info { padding: 22px 22px 24px; }
.car-name {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 110;
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.car-meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
}
.car-meta span:not(:last-child)::after { content: "·"; margin: 0 8px; color: var(--muted-2); }
.car-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.car-price {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 112;
  font-weight: 800;
  font-size: 21px;
  color: var(--orange);
}
.car-price small {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.car-from {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* ============================================================
   POURQUOI — accordéon
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.why-text p { color: var(--muted); margin-top: 22px; max-width: 440px; }
.why-text .why-cta { margin-top: 34px; }
.acc-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.acc-item.open { border-color: rgba(255, 90, 0, 0.4); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--txt);
  text-align: left;
}
.acc-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(255, 90, 0, 0.1);
  border: 1px solid rgba(255, 90, 0, 0.25);
  display: grid;
  place-items: center;
  font-size: 19px;
  color: var(--orange);
}
.acc-title {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex: 1;
}
.acc-plus {
  font-size: 22px;
  color: var(--muted);
  transition: transform 0.35s ease, color 0.35s ease;
  line-height: 1;
}
.acc-item.open .acc-plus { transform: rotate(45deg); color: var(--orange); }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.acc-body p {
  padding: 0 24px 24px 86px;
  color: var(--muted);
  font-size: 14.5px;
}

/* ============================================================
   MARQUEE zones de livraison
   ============================================================ */
.marquee {
  margin-top: clamp(70px, 9vw, 130px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 120;
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 241, 236, 0.35);
  padding-right: 18px;
}
.marquee-track span::after {
  content: "•";
  color: var(--orange);
  -webkit-text-stroke: 0;
  margin-left: 18px;
}
.marquee-track span:nth-child(even) {
  color: var(--txt);
  -webkit-text-stroke: 0;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee-label {
  position: absolute;
  top: -11px; left: var(--gutter);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--bg);
  padding: 0 12px;
}

/* ============================================================
   GALERIE — Plus que des voitures
   ============================================================ */
.gallery-nav { display: flex; gap: 10px; }
.gal-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: none;
  color: var(--txt);
  font-size: 16px;
  display: grid;
  place-items: center;
  transition: 0.25s;
}
.gal-btn:hover { border-color: var(--orange); color: var(--orange); }
.gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gal-item {
  flex: 0 0 clamp(260px, 31vw, 420px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 4.6;
  border: 1px solid var(--line);
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.gal-item:hover img { transform: scale(1.06); }
.gal-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 20px 18px;
  background: linear-gradient(0deg, rgba(11,11,12,0.92), transparent);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.gal-item figcaption em {
  display: block;
  font-style: normal;
  color: var(--orange);
  font-size: 10px;
  margin-bottom: 5px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  margin-top: clamp(70px, 9vw, 130px);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding-bottom: clamp(70px, 9vw, 120px);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 5vw, 90px);
  align-items: start;
}
.contact-text p { color: var(--muted); margin-top: 22px; max-width: 420px; }
.contact-perks { margin-top: 40px; display: grid; gap: 22px; }
.perk { display: flex; gap: 16px; align-items: flex-start; }
.perk-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 90, 0, 0.35);
  background: rgba(255, 90, 0, 0.08);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--orange);
}
.perk b {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.perk span { font-size: 13.5px; color: var(--muted); }

.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 16px;
  color: var(--txt);
  font-family: var(--font-body);
  font-size: 14.5px;
  transition: border-color 0.25s;
  appearance: none;
}
.field select { cursor: pointer; }
.field select option { background: var(--panel); }
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field label {
  position: absolute;
  top: -7px; left: 12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--panel);
  padding: 0 7px;
  z-index: 1;
}
.form-card .btn { width: 100%; margin-top: 6px; padding: 18px; }
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted-2);
}
.form-consent input { accent-color: var(--orange); margin-top: 2px; }
.form-consent a { color: var(--muted); text-decoration: underline; }
.form-success {
  display: none;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #59d98c;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--line);
  padding: clamp(50px, 6vw, 80px) 0 30px;
  background: var(--bg);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 36px;
}
.foot-brand p { color: var(--muted-2); font-size: 13px; margin-top: 16px; max-width: 240px; }
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.foot-col li { margin-bottom: 11px; }
.foot-col a, .foot-col span { font-size: 13.5px; color: #c9c5be; transition: color 0.2s; }
.foot-col a:hover { color: var(--orange); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted-2);
  flex-wrap: wrap;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  transition: 0.25s;
}
.socials a:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* WhatsApp flottant */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange-grad);
  color: #140700;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(255, 90, 0, 0.4);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.08) rotate(6deg); }
.wa-float svg { width: 26px; height: 26px; }

/* ============================================================
   PAGE VÉHICULE
   ============================================================ */
.car-hero {
  padding: 150px 0 0;
}
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange); }
.car-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 4vw, 70px);
  align-items: end;
}
.car-hero h1 { font-size: clamp(38px, 5.4vw, 76px); }
.car-hero .brand-line {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.car-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.car-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: 7px 14px;
  color: var(--muted);
}
.car-hero-right { text-align: right; padding-bottom: 6px; }
.price-big {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 115;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--orange);
  line-height: 1;
}
.price-big small {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
}
.price-note { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); margin-top: 8px; }
.car-hero-ctas { display: flex; gap: 12px; justify-content: flex-end; margin-top: 26px; flex-wrap: wrap; }

/* Galerie véhicule */
.car-gallery { margin-top: clamp(36px, 4vw, 60px); }
.gal-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 8.2;
  position: relative;
  background: #0d0d0e;
}
.gal-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}
.gal-main .gal-caption {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(11, 11, 12, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  padding: 8px 14px;
  border-radius: 6px;
}
.gal-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.gal-thumb {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
  cursor: pointer;
  position: relative;
  padding: 0;
  background: none;
  transition: border-color 0.25s, opacity 0.25s;
  opacity: 0.55;
}
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gal-thumb.active { border-color: var(--orange); opacity: 1; }
.gal-thumb:hover { opacity: 1; }

/* Cockpit — jauges */
.cockpit {
  margin-top: clamp(70px, 8vw, 110px);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(50px, 6vw, 90px) 0;
}
.gauges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: clamp(30px, 4vw, 50px);
}
.gauge-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gauge-card::before {
  content: "";
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 90, 0, 0.6), transparent);
}
.gauge-svg { width: 150px; height: 96px; margin: 0 auto; display: block; }
.gauge-svg .track { stroke: #232326; }
.gauge-svg .fill { stroke: url(#gaugeGrad); }
.gauge-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 27px;
  color: var(--txt);
  margin-top: -54px;
  position: relative;
}
.gauge-value small { font-size: 12px; color: var(--muted); font-weight: 400; }
.gauge-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 22px;
}
.engine-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 28px;
  gap: 10px;
}
.engine-card .eng-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
}
.engine-card .eng-row:last-child { border-bottom: 0; }
.engine-card .eng-row b { color: var(--txt); font-weight: 500; text-align: right; }
.engine-card .eng-row span { color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; font-size: 10.5px; }

/* Tarifs + calculateur */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(26px, 3.5vw, 50px);
  margin-top: clamp(30px, 4vw, 50px);
  align-items: start;
}
.rate-card, .calc-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 36px);
}
.rate-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.rate-head h3 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.currency-toggle { display: flex; border: 1px solid var(--line-strong); border-radius: 8px; overflow: hidden; }
.currency-toggle button {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 8px 13px;
  transition: 0.2s;
}
.currency-toggle button.active { background: var(--orange); color: #140700; font-weight: 700; }
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.rate-row:last-of-type { border-bottom: 0; }
.rate-row .tier { font-size: 14px; color: var(--txt); }
.rate-row .tier small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-transform: uppercase;
  margin-top: 3px;
}
.rate-row .amount {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 17px;
}
.rate-row .amount small { font-size: 10.5px; color: var(--muted); font-weight: 400; }
.rate-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line-strong);
  display: grid;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
}
.rate-foot b { color: var(--txt); font-weight: 500; }

.calc-card h3 {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.calc-card .calc-sub { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.calc-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.calc-dates input {
  color-scheme: dark;
}
.calc-summary {
  margin-top: 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: grid;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 12.5px;
}
.calc-line { display: flex; justify-content: space-between; color: var(--muted); }
.calc-line b { color: var(--txt); font-weight: 500; }
.calc-line.total {
  border-top: 1px dashed var(--line-strong);
  padding-top: 12px;
  margin-top: 4px;
  font-size: 15px;
  color: var(--txt);
}
.calc-line.total b { color: var(--orange); font-size: 19px; font-weight: 700; }
.calc-card .btn { width: 100%; margin-top: 18px; }
.calc-hint { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted-2); margin-top: 12px; text-align: center; }

/* Conditions */
.conditions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: clamp(28px, 3.5vw, 44px);
}
.cond {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px;
  background: var(--panel);
  display: flex;
  gap: 14px;
  align-items: center;
}
.cond .c-icon { font-size: 22px; color: var(--orange); }
.cond b {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cond span { font-size: 12px; color: var(--muted); }

/* Similaires */
.similar { padding-bottom: clamp(70px, 9vw, 120px); }

/* ============================================================
   REVEAL ANIMATIONS (état initial géré en JS)
   ============================================================ */
.reveal { opacity: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
  .gauges { grid-template-columns: repeat(2, 1fr); }
  .conditions { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .why-grid, .contact-grid, .pricing-grid, .car-hero-grid { grid-template-columns: 1fr; }
  .car-hero-right { text-align: left; }
  .car-hero-ctas { justify-content: flex-start; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .burger { display: flex; margin-left: auto; }
  .nav-right .btn-nav { display: none; }
  .nav-inner { justify-content: space-between; }
  .nav.menu-open { background: rgba(11,11,12,0.97); }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(11, 11, 12, 0.97);
    backdrop-filter: blur(16px);
    padding: 24px var(--gutter) 32px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 640px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gal-thumbs { grid-template-columns: repeat(4, 1fr); }
  .gauges { grid-template-columns: 1fr 1fr; }
  .conditions { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-content { flex-direction: column; align-items: flex-start; }
  .calc-dates { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
