/* =========================================================
   PAGES — LuxurCars.ch
   Layout spécifique à chaque page
   ========================================================= */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GRILLES RESPONSIVE (2 colonnes → 1 colonne sur mobile)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (max-width: 768px) {
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* Fix overflow horizontal global */
.section, .contact-band {
  overflow-x: hidden;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO MOBILE (index.html — visible ≤ 768px uniquement)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mobile-hero {
  display:          none; /* caché sur desktop */
  position:         relative;
  min-height:       100vh;   /* fallback Chrome < 108 */
  min-height:       100svh;
  background:       var(--bg-obsidian);
  padding-top:      var(--nav-height);
  overflow:         hidden;
}

/* Slides */
.mobile-hero__slide {
  display:          none;
  flex-direction:   column;
  min-height:       calc(100vh - var(--nav-height));   /* fallback Chrome < 108 */
  min-height:       calc(100svh - var(--nav-height));
}

.mobile-hero__slide.active {
  display:          flex;
  animation:        mhFadeIn 0.5s ease;
}

@keyframes mhFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Bloc texte — haut */
.mobile-hero__content {
  display:          flex;
  flex-direction:   column;
  gap:              var(--space-sm);
  padding:          var(--space-xl) var(--container-pad) var(--space-lg);
}

.mobile-hero__eyebrow {
  font-family:      var(--font-mono);
  font-size:        var(--fs-caption);
  letter-spacing:   0.2em;
  color:            var(--accent-bright);
  text-transform:   uppercase;
}

.mobile-hero__title {
  font-family:      var(--font-display);
  font-size:        clamp(2.4rem, 11vw, 4rem);
  font-weight:      700;
  line-height:      1.05;
  color:            var(--text-primary);
  margin:           var(--space-xs) 0;
}

.mobile-hero__sub {
  font-size:        var(--fs-small);
  color:            var(--platinum);
  line-height:      1.7;
  margin-bottom:    var(--space-sm);
}

.mobile-hero__actions {
  display:          flex;
  gap:              var(--space-sm);
  flex-wrap:        wrap;
}

/* Bloc image — bas, pleine largeur, ratio naturel */
.mobile-hero__img-wrap {
  flex:             1;
  display:          flex;
  align-items:      flex-end;
}

.mobile-hero__img {
  width:            100%;
  height:           auto;
  object-fit:       contain;
  object-position:  center bottom;
  display:          block;
}

/* Dots navigation */
.mobile-hero__dots {
  position:         absolute;
  bottom:           var(--space-lg);
  left:             50%;
  transform:        translateX(-50%);
  display:          flex;
  gap:              10px;
  z-index:          10;
}

.mobile-hero__dot {
  width:            8px;
  height:           8px;
  border-radius:    50%;
  background:       rgba(244,242,238,0.3);
  border:           none;
  cursor:           pointer;
  transition:       background 0.3s, transform 0.3s;
}

.mobile-hero__dot.active {
  background:       var(--accent-bright);
  transform:        scale(1.3);
}

/* slider masqué — glass cards actives en hero mobile */
.mobile-hero--hidden { display: none !important; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CAR SELECTOR HERO (index.html — video game style)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.car-selector {
  position:    relative;
  min-height:  100vh;
  min-height:  100svh;
  background:  #030304;
  display:     flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow:    hidden;
  padding:     calc(var(--nav-height) + 1rem) var(--container-pad) 3rem;
}

.car-selector__video {
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
}

.car-selector__overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 60%,
    rgba(0,0,0,0.45) 100%
  );
  z-index:    1;
}

/* All children above overlay */
.car-selector__top,
.car-selector__center,
.car-selector__bottom {
  position: relative;
  z-index:  2;
  width:    100%;
}

/* Center: arrows + car info */
.car-selector__center {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             var(--space-lg);
  flex:            1;
  padding:         2rem 0;
}

/* Car info panel */
.cs-info {
  flex:       1;
  text-align: center;
  padding:    0 var(--space-lg);
}

.cs-info__brand {
  font-size:      var(--fs-caption);
  font-weight:    600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color:          var(--platinum);
  margin-bottom:  0.4rem;
  transition:     opacity 0.4s ease;
}

.cs-info__model {
  font-family:    var(--font-serif);
  font-style:     italic;
  font-size:      clamp(2.8rem, 7vw, 6rem);
  font-weight:    400;
  line-height:    var(--lh-tight);
  letter-spacing: -0.02em;
  color:          var(--text-primary);
  margin-bottom:  1rem;
  transition:     opacity 0.4s ease, transform 0.4s ease;
}

.cs-info__price {
  font-family:          var(--font-mono);
  font-size:            clamp(0.9rem, 1.5vw, 1.15rem);
  color:                var(--accent);
  font-variant-numeric: tabular-nums;
  transition:           opacity 0.4s ease;
}

/* Transition animation — class added by JS */
.cs-info.is-transitioning .cs-info__brand,
.cs-info.is-transitioning .cs-info__model,
.cs-info.is-transitioning .cs-info__price {
  opacity:   0;
  transform: translateY(12px);
}

/* ARROWS — game controller style */
.cs-arrow {
  flex-shrink:     0;
  width:           100px;
  height:          100px;
  display:         flex;
  align-items:     center;
  justify-content: center;
  background:      rgba(0,0,0,0.65);
  border:          2px solid rgba(255,255,255,0.75);
  color:           #ffffff;
  cursor:          pointer;
  position:        relative;
  box-shadow:      0 0 20px rgba(0,0,0,0.6), inset 0 0 12px rgba(255,255,255,0.05);
  transition:      background var(--transition-fast),
                   border-color var(--transition-fast),
                   transform var(--transition-fast),
                   box-shadow var(--transition-fast);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.cs-arrow svg {
  width:      40px;
  height:     40px;
  transition: transform var(--transition-fast);
}

.cs-arrow:hover:not(.disabled) {
  background:   rgba(166,43,43,0.75);
  border-color: #ffffff;
  box-shadow:   0 0 50px rgba(166,43,43,0.7), 0 0 100px rgba(166,43,43,0.3);
  transform:    scale(1.12);
}

.cs-arrow--left:hover:not(.disabled) svg  { transform: translateX(-3px); }
.cs-arrow--right:hover:not(.disabled) svg { transform: translateX(3px); }

.cs-arrow.disabled {
  opacity:        0.2;
  cursor:         not-allowed;
  pointer-events: none;
}

.cs-arrow:active:not(.disabled) { transform: scale(0.94); }

@keyframes arrowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,0,0,0.6), 0 0 0px rgba(255,255,255,0.1); }
  50%       { box-shadow: 0 0 28px rgba(0,0,0,0.7), 0 0 18px rgba(255,255,255,0.25); }
}

.cs-arrow:not(.disabled) { animation: arrowPulse 2.5s ease-in-out infinite; }

/* Bottom section */
.car-selector__bottom {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            1.5rem;
}

/* Dot indicators */
.cs-dots { display: flex; gap: 12px; }

.cs-dot {
  width:         10px;
  height:        10px;
  border-radius: 50%;
  background:    rgba(244,242,238,0.25);
  border:        1px solid rgba(244,242,238,0.2);
  cursor:        pointer;
  transition:    background var(--transition-smooth), transform var(--transition-smooth);
  padding:       0;
}

.cs-dot.active {
  background:   var(--accent);
  transform:    scale(1.3);
  border-color: var(--accent);
}

/* START BUTTON — racing style */
.cs-start {
  display:        inline-flex;
  align-items:    center;
  gap:            1.2rem;
  padding:        18px 56px;
  background:     var(--accent);
  color:          var(--text-primary);
  font-family:    var(--font-display);
  font-size:      1.15rem;
  font-weight:    700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  position:       relative;
  overflow:       hidden;
  transition:     background var(--transition-fast),
                  box-shadow var(--transition-fast),
                  transform var(--transition-fast);
  clip-path: polygon(12px 0%, calc(100% - 12px) 0%, 100% 50%, calc(100% - 12px) 100%, 12px 100%, 0% 50%);
}

.cs-start::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  transform:  translateX(-100%);
  transition: transform 0.5s ease;
}

.cs-start:hover::before { transform: translateX(100%); }

.cs-start:hover {
  background: var(--accent-bright);
  box-shadow: 0 0 40px rgba(166,43,43,0.6), 0 0 80px rgba(166,43,43,0.25);
  transform:  scale(1.04);
}

.cs-start:active { transform: scale(0.97); }

.cs-start__flag {
  font-size: 1rem;
  opacity:   0.8;
}

.cs-start__text { position: relative; }

/* ── Fleet Overlay (index 2 — "Voir la flotte") ────────── */
.cs-fleet-overlay {
  position:   absolute;
  inset:      0;
  z-index:    3;
  display:    flex;
  align-items: center;
  justify-content: center;
  background: rgba(3,3,4,0.88);
  opacity:    0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.cs-fleet-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Grid background — same as glass-fleet intro */
.cs-fleet-grid {
  position:         absolute;
  inset:            0;
  background-image: linear-gradient(rgba(166,43,43,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(166,43,43,0.06) 1px, transparent 1px);
  background-size:  60px 60px;
  mask-image:       radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

.cs-fleet-content {
  position:   relative;
  z-index:    1;
  display:    flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap:        1rem;
}

.cs-fleet-eyebrow {
  font-family:    var(--font-body);
  font-size:      var(--fs-caption);
  font-weight:    500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color:          var(--accent);
}

.cs-fleet-title {
  font-family:    var(--font-display);
  font-size:      clamp(3rem, 8vw, 6rem);
  font-weight:    200;
  line-height:    1;
  letter-spacing: -0.03em;
  color:          var(--text-primary);
}

.cs-fleet-sub {
  font-family:    var(--font-body);
  font-size:      clamp(0.9rem, 1.5vw, 1.1rem);
  color:          var(--text-muted);
  max-width:      34ch;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .car-selector__video { display: none; }
}

/* Mobile : caché (glass cards mobiles prennent le relais) */
@media (max-width: 768px) {
  .car-selector { display: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO legacy (other pages)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position:    relative;
  min-height:  100vh;   /* fallback Chrome < 108 */
  min-height:  100svh;
  display:     flex;
  align-items: flex-end;
  overflow:    hidden;
  background:  var(--bg-obsidian);
}

.hero__media {
  position: absolute;
  inset:    0;
  z-index:  0;
}

.hero__video {
  width:      100%;
  height:     100%;
  object-fit: cover;
}

.hero__image-fallback {
  width:         100%;
  height:        100%;
  object-fit:    cover;
  display:       none;
}

/* Show static fallback when video can't load or reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__video        { display: none; }
  .hero__image-fallback { display: block; }
}

.hero__overlay {
  position:   absolute;
  inset:      0;
  z-index:    1;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 65%,
    rgba(10,11,13,0.55) 100%
  );
}

.hero__content {
  position:   relative;
  z-index:    2;
  padding:    var(--space-3xl) var(--container-pad);
  max-width:  var(--container-max);
  margin-inline: auto;
  width:      100%;
}

.hero__eyebrow {
  font-size:      var(--fs-caption);
  font-weight:    500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color:          var(--platinum);
  margin-bottom:  var(--space-sm);
}

.hero__title {
  font-family:    var(--font-display);
  font-size:      var(--fs-display);
  font-weight:    200;
  line-height:    var(--lh-tight);
  letter-spacing: -0.03em;
  color:          var(--text-primary);
  margin-bottom:  var(--space-md);
  max-width:      10ch;
}

.hero__title em {
  font-style:   italic;
  font-family:  var(--font-serif);
  font-weight:  400;
}

.hero__subtitle {
  font-size:    clamp(0.9rem, 1.5vw, 1.1rem);
  color:        var(--text-secondary);
  max-width:    500px;
  line-height:  1.7;
  margin-bottom: var(--space-lg);
}

.hero__ctas {
  display:    flex;
  flex-wrap:  wrap;
  gap:        var(--space-sm);
}

.hero__scroll-hint {
  position:       absolute;
  bottom:         var(--space-lg);
  right:          var(--container-pad);
  z-index:        2;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            8px;
  color:          var(--text-muted);
  font-size:      var(--fs-caption);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode:   vertical-rl;
}

.hero__scroll-line {
  width:      1px;
  height:     60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation:  fadeIn 2s ease 1s both;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VANTABLACK CONTRAST SYSTEM
   Micro-éclairages, halos et séparateurs pour donner de la
   profondeur au fond quasi-absolu.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Halo rouge très subtil centré sur chaque grande section */
.section::after {
  content:        '';
  position:       absolute;
  bottom:         0;
  left:           50%;
  transform:      translateX(-50%);
  width:          100%;
  height:         1px;
  background:     linear-gradient(
    90deg,
    transparent 0%,
    rgba(166,43,43,0.18) 30%,
    rgba(166,43,43,0.35) 50%,
    rgba(166,43,43,0.18) 70%,
    transparent 100%
  );
  pointer-events: none;
}

/* Halo lumineux subtil en haut du manifeste */
.manifeste {
  position: relative;
}
.manifeste::before {
  content:    '';
  position:   absolute;
  top:        -80px;
  left:       50%;
  transform:  translateX(-50%);
  width:      600px;
  height:     300px;
  background: radial-gradient(ellipse at center, rgba(166,43,43,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Micro-contraste sur les stats */
.stat {
  position: relative;
}
.stat::before {
  content:    '';
  position:   absolute;
  top:        0; left: 0;
  width:      100%; height:     100%;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.015), transparent 70%);
  pointer-events: none;
}

/* Éclairage latéral sur les process steps */
.process-step {
  position: relative;
}
.process-step::before {
  content:    '';
  position:   absolute;
  left:       -1px;
  top:        0; bottom: 0;
  width:      2px;
  background: linear-gradient(to bottom, transparent, rgba(166,43,43,0.4), transparent);
  border-radius: 1px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BRAND TICKER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ticker {
  background:    transparent;
  border-top:    1px solid rgba(166,43,43,0.15);
  border-bottom: 1px solid rgba(166,43,43,0.15);
  overflow:    hidden;
  padding:     var(--space-md) 0;
}

.ticker__inner {
  display:  flex;
  overflow: hidden;
}

.ticker__item {
  font-family:    var(--font-display);
  font-size:      var(--fs-caption);
  font-weight:    600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color:          rgba(244, 242, 238, 0.35);
  white-space:    nowrap;
  padding-inline: var(--space-xl);
  transition:     color var(--transition-slow);
}

.ticker__item:hover { color: var(--text-primary); }

.ticker__logo {
  display:      inline-flex;
  align-items:  center;
  padding-inline: var(--space-xl);
  opacity:      0.55;
  transition:   opacity var(--transition-slow);
  flex-shrink:  0;
}

.ticker__logo:hover { opacity: 1; }

.ticker__logo svg {
  display: block;
  height:  32px;
  width:   auto;
}

.ticker__separator {
  color:       rgba(166,43,43,0.5);
  align-self:  center;
  font-size:   1.2rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ticker { padding: var(--space-sm) 0; }
  .ticker__logo { padding-inline: var(--space-md); }
  .ticker__logo img { height: 30px !important; }
  .ticker__logo img[alt="Ferrari"] { height: 36px !important; }
  .ticker__logo img[alt="Audi"] { height: 22px !important; }
  .ticker__item { padding-inline: var(--space-md); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MANIFESTE SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.manifeste {
  display:      grid;
  grid-template-columns: 1.4fr 1fr;
  gap:          var(--space-2xl);
  align-items:  center;
}

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

.manifeste__text {
  font-family:  var(--font-serif);
  font-style:   italic;
  font-size:    clamp(1.2rem, 2.5vw, 1.6rem);
  line-height:  1.7;
  color:        var(--text-secondary);
}

.manifeste__text strong {
  font-style: normal;
  color:      var(--text-primary);
}

.manifeste__stats {
  display:        flex;
  flex-direction: column;
  gap:            var(--space-lg);
}

.stat {
  border-left:  2px solid var(--accent);
  padding-left: var(--space-md);
}

.stat__number {
  font-family:    var(--font-display);
  font-size:      clamp(2.5rem, 5vw, 4rem);
  font-weight:    200;
  line-height:    1;
  letter-spacing: -0.03em;
  color:          var(--text-primary);
}

.stat__label {
  font-size:      var(--fs-caption);
  font-weight:    500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color:          var(--text-muted);
  margin-top:     4px;
}

/* ── Manifeste fond blanc ────────────────────────────── */
.manifeste-section--white {
  background: #F4F2EE;
  padding-block: calc(var(--space-3xl) * 1.6);
}

/* Pas de ligne rouge sur la section blanche elle-même */
.section + .manifeste-section--white::before {
  display: none !important;
}

/* Supprimer le séparateur rouge auto */
.manifeste-section--white + div + .section::before,
.manifeste-section--white + .section::before,
.no-top-separator::before {
  display: none !important;
}

.manifeste-section--white .manifeste__text {
  color: #1a1a1a;
}

.manifeste-section--white .manifeste__text strong {
  color: #0a0a0b;
}

.manifeste-section--white .stat__number {
  color: #0a0a0b;
}

.manifeste-section--white .stat__label {
  color: #555;
}

/* Ligne accent rouge — conservée */
.manifeste-section--white .stat {
  border-left-color: var(--accent);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OCCASIONS SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.occasions-grid {
  display:               grid;
  grid-template-columns: repeat(2, 1fr);
  gap:                   1px;
  background:            var(--border);
}

@media (min-width: 960px) {
  .occasions-grid { grid-template-columns: repeat(4, 1fr); }
}

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

.occasion-card {
  position:   relative;
  aspect-ratio: 3/4;
  overflow:   hidden;
  background: var(--bg-slate);
  cursor:     pointer;
}

.occasion-card__bg {
  position:   absolute;
  inset:      0;
  background: var(--bg-steel);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.occasion-card:hover .occasion-card__bg {
  transform: scale(1.05);
}

.occasion-card__overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(to top, rgba(10,11,13,0.92) 0%, rgba(10,11,13,0.2) 60%);
}

.occasion-card__content {
  position:   absolute;
  bottom:     0;
  left:       0;
  right:      0;
  padding:    var(--space-lg);
}

.occasion-card__title {
  font-family:  var(--font-display);
  font-size:    clamp(1.1rem, 2vw, 1.4rem);
  font-weight:  300;
  color:        var(--text-primary);
  margin-bottom: 0.4rem;
}

.occasion-card__sub {
  font-family:  var(--font-serif);
  font-style:   italic;
  font-size:    var(--fs-small);
  color:        var(--text-muted);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESSUS SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.process-list {
  display:        flex;
  flex-direction: column;
  max-width:      680px;
}

.process-step {
  display:    grid;
  grid-template-columns: 80px 1fr;
  gap:        var(--space-lg);
  padding:    var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

@media (max-width: 480px) {
  .process-step { grid-template-columns: 52px 1fr; gap: var(--space-sm); padding: var(--space-md) 0; }
  .process-step__num { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .process-list { max-width: 100%; }
}

.process-step:last-child { border-bottom: none; }

.process-step__num {
  font-family:    var(--font-display);
  font-size:      clamp(2.5rem, 4vw, 3.5rem);
  font-weight:    200;
  color:          var(--text-muted);
  line-height:    1;
  letter-spacing: -0.02em;
  transition:     color var(--transition-smooth);
}

.process-step:hover .process-step__num { color: var(--accent); }

.process-step__content { padding-top: 4px; }

.process-step__title {
  font-family:  var(--font-display);
  font-size:    var(--fs-h3);
  font-weight:  400;
  margin-bottom: 0.4rem;
  color:        var(--text-primary);
}

.process-step__text {
  font-size:  var(--fs-small);
  color:      var(--text-secondary);
  line-height: 1.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE HERO (subpages) — mobile
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
  .page-hero { padding-top: calc(var(--nav-height) + var(--space-xl)); padding-bottom: var(--space-lg); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONDITIONS SNAPSHOT — fond blanc
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.conditions-snapshot--white {
  background: #F4F2EE;
  padding-block: calc(var(--space-3xl) * 1.6);
}
.conditions-snapshot--white + .section::before,
.conditions-snapshot--white::before { display: none !important; }

.conditions-snapshot--white h2,
.conditions-snapshot--white .reveal { color: #0a0a0b; }

.conditions-snapshot--white .eyebrow { color: var(--accent); }

.conditions-snapshot--white .conditions-table tr {
  border-bottom-color: rgba(0,0,0,0.12);
}
.conditions-snapshot--white .conditions-table tr:hover {
  background: rgba(0,0,0,0.04);
}
.conditions-snapshot--white .conditions-table td:first-child {
  color: #777;
}
.conditions-snapshot--white .conditions-table td:last-child {
  color: #0a0a0b;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONDITIONS SNAPSHOT TABLE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.conditions-table {
  width:           100%;
  border-collapse: collapse;
  font-family:     var(--font-mono);
}

.conditions-table tr {
  border-bottom: 1px solid var(--border);
  transition:    background var(--transition-fast);
}

.conditions-table tr:hover { background: var(--bg-slate); }
.conditions-table tr:last-child { border-bottom: none; }

.conditions-table td {
  padding:    16px 0;
  font-size:  var(--fs-small);
}

.conditions-table td:first-child {
  color:       var(--text-muted);
  font-size:   var(--fs-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width:       42%;
}

@media (max-width: 640px) {
  .conditions-table td { padding: 10px 0; font-size: 0.8rem; }
  .conditions-table td:first-child { font-size: 0.65rem; width: 38%; letter-spacing: 0.05em; }
}

.conditions-table td:last-child {
  color: var(--text-primary);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT BAND (bottom CTA)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-band {
  position:   relative;
  min-height: 480px;
  display:    flex;
  align-items: center;
  overflow:   hidden;
  background: var(--bg-graphite);
}

@media (max-width: 768px) {
  .contact-band { min-height: auto; padding: var(--space-2xl) 0; }
  .contact-band__overlay {
    background: linear-gradient(to bottom, rgba(10,11,13,0.9) 0%, rgba(10,11,13,0.8) 100%);
  }
  .contact-band__phone { font-size: clamp(1.8rem, 7vw, 3rem); margin-bottom: var(--space-md); }
  .contact-band__actions { flex-direction: column; }
  .contact-band__actions .btn { width: 100%; justify-content: center; }
}

.contact-band__bg {
  position:   absolute;
  inset:      0;
  background: var(--bg-obsidian);
  opacity:    0.6;
  z-index:    0;
}

.contact-band__overlay {
  position:   absolute;
  inset:      0;
  background: linear-gradient(90deg, rgba(10,11,13,0.95) 40%, transparent 100%);
  z-index:    1;
}

.contact-band__content {
  position: relative;
  z-index:  2;
}

.contact-band__label {
  font-family:  var(--font-serif);
  font-style:   italic;
  font-size:    clamp(1rem, 2vw, 1.4rem);
  color:        var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.contact-band__phone {
  font-family:    var(--font-display);
  font-size:      clamp(2rem, 5vw, 4rem);
  font-weight:    200;
  letter-spacing: -0.02em;
  color:          var(--text-primary);
  display:        block;
  margin-bottom:  var(--space-lg);
  transition:     color var(--transition-fast);
}

.contact-band__phone:hover { color: var(--accent); }

.contact-band__actions {
  display:   flex;
  flex-wrap: wrap;
  gap:       var(--space-sm);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VEHICLE DETAIL PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vehicle-hero {
  min-height:      60vh;
  position:        relative;
  overflow:        hidden;
  display:         flex;
  align-items:     flex-end;
  background:      var(--bg-obsidian);
}

.vehicle-hero__img {
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
  object-position: center center;
}

/* Hero avec vidéo — sous la nav, fond quadrillage rouge */
.vehicle-hero--video {
  min-height:      auto;
  margin-top:      var(--nav-height);
  background:      var(--bg-obsidian);
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: flex-start;
  gap:             2rem;
  padding:         1.2rem var(--container-pad) 3rem;
}

/* Quadrillage red glass */
.vehicle-hero__grid-bg {
  position:         absolute;
  inset:            0;
  /* Fond teinté rouge sombre */
  background-color: rgba(80,10,10,0.18);
  /* Lignes de grille bien visibles */
  background-image:
    linear-gradient(to right, rgba(166,43,43,0.35) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(166,43,43,0.35) 1px, transparent 1px);
  background-size:  48px 48px;
  pointer-events:   none;
  /* Légère saturation pour l'effet verre teinté */
  backdrop-filter:         saturate(1.4);
  -webkit-backdrop-filter: saturate(1.4);
}

.vehicle-hero__grid-bg::after {
  content:    '';
  position:   absolute;
  inset:      0;
  /* Halo central chaud + vignette sombre sur les bords */
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(166,43,43,0.22) 0%, transparent 70%),
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 50%, rgba(0,0,0,0.45) 100%);
}

/* Glass card — non interactive */
.vehicle-hero__glass-card {
  position:      relative;
  z-index:       1;
  width:         clamp(340px, 88%, 1200px);
  aspect-ratio:  16 / 8;
  border-radius: 4px;
  overflow:      hidden;
  pointer-events: none;

  /* Bordure dégradée premium */
  border: 1px solid transparent;
  background-clip: padding-box;
  background-image: linear-gradient(var(--bg-obsidian), var(--bg-obsidian));

  /* Pseudo-border via box-shadow multicouche */
  box-shadow:
    /* Liseré blanc fin haut-gauche */
    inset  0  1px 0 rgba(255,255,255,0.22),
    inset  1px 0  0 rgba(255,255,255,0.08),
    /* Liseré rouge bas-droite */
    inset  0 -1px 0 rgba(166,43,43,0.45),
    inset -1px 0  0 rgba(166,43,43,0.2),
    /* Halo extérieur rouge */
    0 0  0   1px  rgba(166,43,43,0.25),
    0 0  40px 8px  rgba(166,43,43,0.12),
    /* Ombre de profondeur */
    0 60px 120px   rgba(0,0,0,0.75),
    0 20px  40px   rgba(0,0,0,0.5);
}

/* Coin décoratifs — accents lumineux */
.vehicle-hero__glass-card::before,
.vehicle-hero__glass-card::after {
  content:  '';
  position: absolute;
  z-index:  4;
  pointer-events: none;
}

/* Coin haut-gauche */
.vehicle-hero__glass-card::before {
  top:    0;
  left:   0;
  width:  60px;
  height: 60px;
  border-top:  1px solid rgba(255,255,255,0.5);
  border-left: 1px solid rgba(255,255,255,0.5);
}

/* Coin bas-droite */
.vehicle-hero__glass-card::after {
  bottom: 0;
  right:  0;
  width:  60px;
  height: 60px;
  border-bottom: 1px solid rgba(166,43,43,0.7);
  border-right:  1px solid rgba(166,43,43,0.7);
}

.vehicle-hero__glass-card video,
.vehicle-hero__glass-card img {
  display:         block;
  position:        absolute;
  inset:           0;
  width:           100%;
  height:          100%;
  object-fit:      cover;
  object-position: center center;
}

/* Dégradé bas — fondu élégant vers le texte */
.vehicle-hero__card-overlay {
  position:   absolute;
  bottom:     0;
  left:       0;
  right:      0;
  height:     50%;
  background: linear-gradient(
    to top,
    rgba(3,3,4,0.96)  0%,
    rgba(3,3,4,0.65)  30%,
    rgba(3,3,4,0.2)   60%,
    transparent       100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Ligne accent rouge horizontale au-dessus du texte */
.vehicle-hero__card-overlay::before {
  content:  '';
  position: absolute;
  bottom:   clamp(3.5rem, 8vh, 5.5rem);
  left:     clamp(1.5rem, 4vw, 3.5rem);
  width:    40px;
  height:   1px;
  background: var(--accent);
}

/* Texte positionné en bas dans la glass card */
.vehicle-hero--video .vehicle-hero__content {
  position: absolute;
  bottom:   clamp(1.2rem, 3.5vh, 2.5rem);
  left:     clamp(1.5rem, 4vw, 3.5rem);
  z-index:  3;
  padding:  0;
}

/* Contrôles navigateur cachés — tous navigateurs */
.vehicle-hero--video video::-webkit-media-controls,
.vehicle-hero--video video::-webkit-media-controls-enclosure,
.vehicle-hero--video video::-webkit-media-controls-panel,
.vehicle-hero--video video::-webkit-media-controls-play-button,
.vehicle-hero--video video::-webkit-media-controls-timeline,
.vehicle-hero--video video::-webkit-media-controls-current-time-display,
.vehicle-hero--video video::-webkit-media-controls-time-remaining-display,
.vehicle-hero--video video::-webkit-media-controls-mute-button,
.vehicle-hero--video video::-webkit-media-controls-volume-slider,
.vehicle-hero--video video::-webkit-media-controls-fullscreen-button,
.vehicle-hero--video video::-webkit-media-controls-overflow-button {
  display:    none !important;
  opacity:    0   !important;
  visibility: hidden !important;
}

/* Mobile : layout original — pas de glass card, pas de grille */
@media (max-width: 768px) {
  .vehicle-hero--video {
    min-height:      calc(var(--nav-height) + 100vw * 9 / 16 + 160px);
    margin-top:      0;
    padding-top:     var(--nav-height);
    padding-left:    0;
    padding-right:   0;
    gap:             0;
    background:      var(--bg-obsidian);
    align-items:     stretch;
    justify-content: flex-start;
  }

  /* Grille et halo cachés sur mobile */
  .vehicle-hero__grid-bg { display: none; }

  /* Glass card : redevient un simple conteneur pleine largeur */
  .vehicle-hero__glass-card {
    width:           100%;
    border-radius:   0;
    border:          none;
    outline:         none;
    background:      none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow:      none;
    flex:            1;
  }

  /* Supprimer tous les pseudo-éléments décoratifs sur mobile */
  .vehicle-hero__glass-card::before,
  .vehicle-hero__glass-card::after,
  .vehicle-hero__card-overlay::before { display: none; }

  .vehicle-hero__glass-card video,
  .vehicle-hero__glass-card img {
    position:        absolute;
    top:             var(--nav-height);
    left:            0;
    width:           100%;
    height:          calc(100% - var(--nav-height));
    object-fit:      cover;
    object-position: center center;
  }

  /* Overlay gradient mobile — fondu bas pour le texte */
  .vehicle-hero__card-overlay {
    height: 35%;
  }

  /* Texte en bas comme avant */
  .vehicle-hero--video .vehicle-hero__content {
    bottom: 1.25rem;
    left:   var(--container-pad);
  }
}

/* ── Audi hero — halo rouge + glass card arrondie (desktop uniquement) ── */
@media (min-width: 769px) {
  /* Quadrillage avec halo rouge concentré autour de la card */
  .vehicle-hero--audi .vehicle-hero__grid-bg {
    background-color: rgba(100, 8, 8, 0.20);
    background-image:
      radial-gradient(ellipse 75% 65% at 50% 48%, rgba(166,43,43,0.45) 0%, rgba(166,43,43,0.08) 55%, transparent 70%),
      linear-gradient(to right,  rgba(166,43,43,0.22) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(166,43,43,0.22) 1px, transparent 1px);
    background-size: auto, 48px 48px, 48px 48px;
  }

  .vehicle-hero--audi .vehicle-hero__grid-bg::after {
    background:
      radial-gradient(ellipse 65% 55% at 50% 48%, rgba(166,43,43,0.55) 0%, rgba(166,43,43,0.2) 35%, transparent 60%),
      radial-gradient(ellipse 100% 100% at 50% 50%, transparent 45%, rgba(0,0,0,0.55) 100%);
  }

  /* Glass card plus arrondie avec effet verre rouge */
  .vehicle-hero--audi .vehicle-hero__glass-card {
    border-radius: 18px;
    border: 1px solid rgba(166,43,43,0.35);
    box-shadow:
      /* Reflets internes glass */
      inset 0  1px 0   rgba(255,255,255,0.18),
      inset 1px 0  0   rgba(255,255,255,0.07),
      inset 0 -1px 0   rgba(166,43,43,0.55),
      inset -1px 0  0  rgba(166,43,43,0.28),
      /* Halo rouge extérieur doux et large */
      0 0   0   1px rgba(166,43,43,0.30),
      0 0  50px 15px rgba(166,43,43,0.28),
      0 0 100px 30px rgba(166,43,43,0.14),
      0 0 160px 50px rgba(166,43,43,0.07),
      /* Ombre de profondeur */
      0 60px 120px rgba(0,0,0,0.75),
      0 20px  40px rgba(0,0,0,0.5);
  }

  /* Coins arrondis pour suivre le border-radius */
  .vehicle-hero--audi .vehicle-hero__glass-card::before {
    border-radius: 18px 0 0 0;
    border-top:  1px solid rgba(255,255,255,0.45);
    border-left: 1px solid rgba(255,255,255,0.45);
  }

  .vehicle-hero--audi .vehicle-hero__glass-card::after {
    border-radius: 0 0 18px 0;
    border-bottom: 1px solid rgba(166,43,43,0.8);
    border-right:  1px solid rgba(166,43,43,0.8);
  }
}

.vehicle-hero__overlay {
  position:   absolute;
  inset:      0;
  background: none;
}

.vehicle-hero__content {
  position:   relative;
  z-index:    1;
  padding:    var(--space-xl) var(--container-pad);
  max-width:  var(--container-max);
  margin-inline: auto;
  width:      100%;
}

.vehicle-hero__brand {
  font-size:      var(--fs-caption);
  font-weight:    600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color:          var(--platinum);
  margin-bottom:  0.5rem;
}

.vehicle-hero__model {
  font-family:  var(--font-serif);
  font-style:   italic;
  font-size:    clamp(2.5rem, 7vw, 8rem);
  font-weight:  400;
  line-height:  var(--lh-tight);
  color:        var(--text-primary);
}

/* Layout: main + sticky aside */
.vehicle-layout {
  display:               grid;
  grid-template-columns: 1fr 380px;
  gap:                   var(--space-xl);
  align-items:           start;
  max-width:             var(--container-max);
  margin-inline:         auto;
  padding:               3rem var(--container-pad) var(--space-xl);
}

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

@media (max-width: 640px) {
  .vehicle-layout { padding: var(--space-lg) var(--container-pad); gap: var(--space-md); }
  .simulator-row { grid-template-columns: 1fr; }
  .simulator-result { flex-direction: column; gap: var(--space-xs); }
  .pricing-simulator { padding: var(--space-sm); }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

.vehicle-aside {
  position: sticky;
  top:      calc(var(--nav-height) + var(--space-md));
}

.vehicle-description {
  font-size:   clamp(1rem, 1.5vw, 1.15rem);
  color:       var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

/* Features grid */
.features-grid {
  display:               grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap:                   var(--space-sm);
  margin-bottom:         var(--space-xl);
}

.feature-item {
  display:     flex;
  align-items: center;
  gap:         0.6rem;
  font-size:   var(--fs-small);
  color:       var(--text-secondary);
  padding:     10px 0;
  border-bottom: 1px solid var(--border);
}

.feature-item::before {
  content:    '—';
  color:      var(--accent);
  font-size:  0.8rem;
}

/* Gallery masonry */
.gallery-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   4px;
  margin-bottom:         var(--space-xl);
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow:     hidden;
  cursor:       pointer;
  position:     relative;
}

.gallery-item img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.04); }

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

/* Pricing simulator */
.pricing-simulator {
  background: var(--bg-slate);
  border:     1px solid var(--border);
  padding:    var(--space-lg);
  margin-bottom: var(--space-lg);
}

.simulator-row {
  display:   grid;
  grid-template-columns: 1fr 1fr;
  gap:       var(--space-sm);
  margin-bottom: var(--space-sm);
}

.simulator-result {
  border-top:   1px solid var(--border);
  margin-top:   var(--space-sm);
  padding-top:  var(--space-sm);
  display:      flex;
  justify-content: space-between;
  align-items:  baseline;
}

.simulator-total {
  font-family:         var(--font-mono);
  font-size:           clamp(1.5rem, 2.5vw, 2rem);
  font-weight:         500;
  color:               var(--accent);
  font-variant-numeric: tabular-nums;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONDITIONS PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.conditions-layout {
  max-width:     760px;
  margin-inline: auto;
  padding:       var(--space-xl) var(--container-pad) var(--space-3xl);
}

/* ── TOC Dropdown ─────────────────────────────────── */
.conditions-toc-dropdown {
  position:      relative;
  margin-bottom: var(--space-xl);
}

.toc-toggle {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             var(--space-sm);
  width:           100%;
  padding:         0.85rem 1.25rem;
  background:      rgba(255,255,255,0.04);
  border:          1px solid rgba(166,43,43,0.3);
  border-radius:   8px;
  color:           var(--text-primary);
  font-family:     var(--font-mono);
  font-size:       var(--fs-small);
  letter-spacing:  0.08em;
  text-transform:  uppercase;
  cursor:          pointer;
  transition:      background var(--transition-fast), border-color var(--transition-fast);
}

.toc-toggle:hover {
  background:    rgba(166,43,43,0.1);
  border-color:  var(--accent);
}

.toc-toggle__arrow {
  transition:  transform 0.25s ease;
  flex-shrink: 0;
  color:       var(--accent);
}

.toc-toggle.is-open .toc-toggle__arrow {
  transform: rotate(180deg);
}

.toc-menu {
  display:       none;
  flex-direction: column;
  position:      absolute;
  top:           calc(100% + 6px);
  left:          0;
  right:         0;
  background:    var(--bg-graphite);
  border:        1px solid rgba(166,43,43,0.25);
  border-radius: 8px;
  padding:       0.5rem 0;
  z-index:       50;
  box-shadow:    0 16px 40px rgba(0,0,0,0.5);
  max-height:    60vh;
  overflow-y:    auto;
}

.toc-menu.is-open {
  display: flex;
}

.toc-link {
  display:     block;
  font-size:   var(--fs-small);
  color:       var(--text-muted);
  padding:     0.55rem 1.25rem;
  transition:  background var(--transition-fast), color var(--transition-fast);
  border-left: 2px solid transparent;
}

.toc-link:hover,
.toc-link.active {
  color:        var(--text-primary);
  border-color: var(--accent);
  background:   rgba(166,43,43,0.07);
}

.conditions-body {
  width: 100%;
}

.conditions-article {
  margin-bottom: var(--space-xl);
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.conditions-article h2 {
  font-size:    var(--fs-h3);
  font-weight:  400;
  margin-bottom: var(--space-sm);
  color:        var(--text-primary);
  padding-bottom: var(--space-xs);
  border-bottom:  1px solid var(--border);
}

.conditions-article p {
  font-size:   var(--fs-body);
  color:       var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

/* Toggle simplified/legal */
.conditions-toggle {
  display:         inline-flex;
  border:          1px solid var(--border);
  margin-bottom:   var(--space-xl);
  overflow:        hidden;
}

.toggle-btn {
  padding:    10px 24px;
  font-size:  var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:      var(--text-muted);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.toggle-btn.active {
  background: var(--accent);
  color:      var(--text-primary);
}

.simplified-text {
  display:     none;
  font-family: var(--font-serif);
  font-style:  italic;
  font-size:   var(--fs-small);
  color:       var(--platinum);
  background:  var(--bg-slate);
  padding:     var(--space-sm) var(--space-md);
  margin-bottom: var(--space-sm);
  border-left:  2px solid var(--accent);
}

.show-simplified .simplified-text { display: block; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESERVATION PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reservation-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   var(--space-3xl);
  align-items:           start;
}

@media (max-width: 860px) {
  .reservation-grid {
    grid-template-columns: 1fr;
    gap:                   var(--space-2xl);
  }
  .eligibility-checker { max-width: 100%; }
}

.eligibility-checker {
  background:   var(--bg-slate);
  border:       1px solid var(--border);
  padding:      var(--space-xl);
  max-width:    560px;
}

.eligibility-question {
  display:        none;
  flex-direction: column;
  gap:            var(--space-md);
}

.eligibility-question.active { display: flex; }

.eligibility-question__text {
  font-family:  var(--font-display);
  font-size:    var(--fs-h3);
  font-weight:  300;
  color:        var(--text-primary);
}

.eligibility-answers {
  display: flex;
  gap:     var(--space-sm);
}

.eligibility-result {
  display:        none;
  flex-direction: column;
  gap:            var(--space-sm);
  align-items:    flex-start;
}

.eligibility-result.active { display: flex; }

.eligibility-result__icon {
  font-size: 2.5rem;
}

.eligibility-result__title {
  font-family:  var(--font-display);
  font-size:    var(--fs-h3);
  font-weight:  300;
}

.eligibility-result__text {
  font-size: var(--fs-small);
  color:     var(--text-secondary);
  line-height: 1.7;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE HERO (subpages)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero {
  padding:     calc(var(--nav-height) + var(--space-2xl)) var(--container-pad) var(--space-xl);
  background:  var(--bg-obsidian);
  border-bottom: 1px solid var(--border);
  max-width:   var(--container-max);
  margin-inline: auto;
}

.page-hero__eyebrow {
  font-size:      var(--fs-caption);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          var(--text-muted);
  margin-bottom:  var(--space-sm);
}

.page-hero__title {
  font-family:    var(--font-display);
  font-size:      var(--fs-h1);
  font-weight:    200;
  letter-spacing: -0.02em;
  line-height:    var(--lh-tight);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VEHICLE SHOWCASE — marque-page / fiche technique latérale
   Voiture entière visible · fiche étroite collée sur le bord
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.vs-fleet {
  background:  var(--bg-obsidian);
  padding-top: var(--nav-height);
}

/* Section : flex row — image | fiche */
.vehicle-showcase {
  display:     flex;
  align-items: stretch;
  min-height:  100vh;
  overflow:    hidden;
  background:  var(--bg-obsidian);
}

/* Audi : panel à gauche, image à droite */
.vehicle-showcase--audi {
  flex-direction: row-reverse;
}

/* ── ZONE IMAGE ── */
.vs__media {
  flex:       1;
  position:   relative;
  overflow:   hidden;
  min-width:  0;
  background: var(--bg-obsidian);
}

.vs__media img {
  width:           100%;
  height:          100%;
  object-fit:      contain;
  object-position: center;
  display:         block;
  transition:      transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

a.vs__media {
  cursor: pointer;
}


.vehicle-showcase:hover .vs__media img {
  transform: scale(1.025);
}

a.vs__media:hover img {
  transform: scale(1.04);
}

/* Vignette supprimée — image brute */
.vs__media-overlay {
  display: none;
}

/* Halo couleur discret derrière la voiture */
.vehicle-showcase--ferrari .vs__media::after {
  content:        '';
  position:       absolute;
  inset:          0;
  pointer-events: none;
  background:     radial-gradient(ellipse 60% 50% at 50% 60%, rgba(166,43,43,0.08) 0%, transparent 70%);
}

.vehicle-showcase--audi .vs__media::after {
  content:        '';
  position:       absolute;
  inset:          0;
  pointer-events: none;
  background:     radial-gradient(ellipse 60% 50% at 50% 60%, rgba(190,185,175,0.06) 0%, transparent 70%);
}

/* ── MARQUE-PAGE / FICHE TECHNIQUE ── */
.vs__panel {
  width:           clamp(260px, 22vw, 310px);
  flex-shrink:     0;
  display:         flex;
  align-items:     center;
  justify-content: center;
  background:      rgba(4,4,5,0.97);
  position:        relative;
  overflow:        hidden;
  border-left:     1px solid rgba(255,255,255,0.06);
  box-shadow:      -8px 0 40px rgba(0,0,0,0.6);
}

/* Audi : panel à gauche → bordure droite */
.vehicle-showcase--audi .vs__panel {
  border-left:  none;
  border-right: 1px solid rgba(255,255,255,0.06);
  box-shadow:   8px 0 40px rgba(0,0,0,0.6);
}

/* Accent couleur en haut de la fiche (l'oreille du marque-page) */
.vs__panel::before {
  content:       '';
  position:      absolute;
  top:           0;
  left:          0;
  right:         0;
  height:        3px;
  background:    linear-gradient(90deg, var(--accent) 0%, rgba(166,43,43,0.3) 100%);
}

/* Lueur intérieure subtile */
.vs__panel::after {
  content:    '';
  position:   absolute;
  top:        3px;
  left:       0;
  right:      0;
  height:     120px;
  background: linear-gradient(to bottom, rgba(166,43,43,0.07), transparent);
  pointer-events: none;
}

.vs__panel-inner {
  width:    100%;
  padding:  2.5rem 1.8rem;
  position: relative;
  z-index:  1;
}

/* Numéro de véhicule — haut du panel, même style que glass-card__num */
.vs__num {
  position:       absolute;
  top:            0.6rem;
  right:          1.2rem;
  font-family:    var(--font-display);
  font-size:      3.5rem;
  font-weight:    200;
  color:          rgba(255,255,255,0.06);
  line-height:    1;
  pointer-events: none;
  user-select:    none;
  z-index:        0;
}

/* ── Contenu de la fiche ── */
.vs__badge {
  display:        inline-block;
  padding:        3px 10px;
  font-size:      0.55rem;
  font-weight:    600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background:     rgba(166,43,43,0.12);
  border:         1px solid rgba(166,43,43,0.4);
  color:          var(--accent-bright);
  margin-bottom:  1.1rem;
}

.vs__brand {
  font-family:    var(--font-display);
  font-size:      0.6rem;
  font-weight:    600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color:          var(--platinum);
  margin-bottom:  0.3rem;
}

.vs__model {
  font-family:   var(--font-serif);
  font-style:    italic;
  font-size:     clamp(1.5rem, 2vw, 1.9rem);
  font-weight:   400;
  line-height:   1.1;
  color:         var(--text-primary);
  margin-bottom: 1.6rem;
}

/* Tableau de specs */
.vs__specs {
  display:        flex;
  flex-direction: column;
  border-top:     1px solid rgba(255,255,255,0.07);
  margin-bottom:  1.6rem;
}

.vs__spec-row {
  display:        flex;
  flex-direction: column;
  gap:            2px;
  padding:        9px 0;
  border-bottom:  1px solid rgba(255,255,255,0.06);
  font-family:    var(--font-mono);
}

.vs__spec-label {
  font-size:      0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          rgba(255,255,255,0.25);
}

.vs__spec-value {
  font-size:   0.82rem;
  color:       rgba(255,255,255,0.85);
  font-weight: 500;
}

/* Prix */
.vs__price {
  font-family:          var(--font-mono);
  font-size:            1.05rem;
  font-weight:          500;
  color:                var(--accent-bright);
  margin-bottom:        1.6rem;
  font-variant-numeric: tabular-nums;
  line-height:          1.3;
}

/* Boutons */
.vs__actions {
  display:        flex;
  flex-direction: column;
  gap:            0.6rem;
}

.vs__actions .btn {
  width:       100%;
  text-align:  center;
  justify-content: center;
  font-size:   0.68rem;
  padding:     11px 16px;
  letter-spacing: 0.15em;
}

/* Séparateur entre les deux sections */
.vs__divider {
  height:     1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(166,43,43,0.2) 25%,
    rgba(166,43,43,0.4) 50%,
    rgba(166,43,43,0.2) 75%,
    transparent
  );
}

/* Bande CTA finale */
.vs__cta-band {
  height:          22vh;
  display:         flex;
  align-items:     center;
  justify-content: center;
  background:      var(--bg-obsidian);
}

/* ── Mobile : image au-dessus, fiche en dessous ── */
@media (max-width: 768px) {
  .vehicle-showcase,
  .vehicle-showcase--audi {
    flex-direction: column;
    min-height:     auto;
  }

  .vs__media {
    order:      -1;   /* toujours en premier, peu importe le DOM */
    height:     58vw;
    min-height: 240px;
    flex:       none;
  }

  .vs__panel {
    order:        1;  /* toujours après l'image */
    width:        100%;
    border-left:  none;
    border-right: none;
    border-top:   1px solid rgba(255,255,255,0.06);
    box-shadow:   none;
  }

  .vs__panel-inner { padding: 1.8rem 1.2rem; }

  .vs__actions { flex-direction: row; }
  .vs__actions .btn { width: auto; flex: 1; }

  .vs__model { font-size: 1.5rem; }
  .vs__specs .vs__spec-row { padding: 7px 0; }
}

@media (max-width: 480px) {
  .vs__media { height: 62vw; min-height: 200px; }
  .vs__panel-inner { padding: 1.4rem 1rem; }
  .vs__model { font-size: 1.35rem; }
  .vs__price { font-size: 0.95rem; }
  .vs__actions { flex-direction: column; }
  .vs__actions .btn { flex: none; width: 100%; }
  .glass-fleet__intro-title { font-size: clamp(1.6rem, 6vw, 2.5rem); padding: 0 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .vs__media img { transition: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GLASS STACKING CARDS (fleet.html)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.glass-fleet {
  background:   #030304;
  min-height:   100vh;
  padding-top:  var(--nav-height);
}

.glass-fleet__intro {
  height:        60vh;
  display:       grid;
  place-content: center;
  position:      relative;
  overflow:      hidden;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WALLET HERO MOBILE — carousel standard (compatible Chrome)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mobile-wallet-hero {
  display:        flex;
  flex-direction: column;
  padding-bottom: var(--space-sm);
}

/* Intro */
.mwh-intro {
  position:        relative;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  text-align:      center;
  padding:         var(--space-2xl) var(--container-pad) var(--space-xl);
  gap:             var(--space-xs);
  overflow:        hidden;
  margin:          var(--space-md) var(--space-sm) 0;
  border-radius:   16px;
  /* Bordures visibles */
  border-top:    1px solid rgba(255,255,255,0.22);
  border-left:   1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(166,43,43,0.65);
  border-right:  1px solid rgba(166,43,43,0.35);
  box-shadow:
    0 0 0 1px rgba(166,43,43,0.28),
    0 0 35px 8px rgba(166,43,43,0.2),
    0 24px 60px rgba(0,0,0,0.5);
}

/* Fond red glass — div dédiée pour éviter les conflits de z-index */
.mwh-intro__glass-bg {
  position:   absolute;
  inset:      0;
  z-index:    0;
  background: linear-gradient(
    135deg,
    rgba(140,14,14,0.72) 0%,
    rgba(100,8,8,0.62)   50%,
    rgba(60,5,5,0.55)    100%
  );
  /* Quadrillage par-dessus la teinte */
  background-image:
    linear-gradient(135deg, rgba(140,14,14,0.72), rgba(60,5,5,0.55)),
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
}

/* Tous les enfants texte au-dessus du fond */
.mwh-intro > *:not(.mwh-intro__glass-bg) {
  position: relative;
  z-index:  1;
}

/* Coin haut-gauche blanc */
.mwh-intro::before {
  content:  '';
  position: absolute;
  top:      0;
  left:     0;
  width:    32px;
  height:   32px;
  border-top:  2px solid rgba(255,255,255,0.6);
  border-left: 2px solid rgba(255,255,255,0.6);
  border-radius: 16px 0 0 0;
  z-index:  3;
  pointer-events: none;
}

/* Coin bas-droite rouge */
.mwh-intro::after {
  content:  '';
  position: absolute;
  bottom:   0;
  right:    0;
  width:    32px;
  height:   32px;
  border-bottom: 2px solid rgba(220,50,50,0.95);
  border-right:  2px solid rgba(220,50,50,0.95);
  border-radius: 0 0 16px 0;
  z-index:  3;
  pointer-events: none;
}

.mwh-eyebrow {
  font-family:    var(--font-mono);
  font-size:      var(--fs-caption);
  letter-spacing: 0.2em;
  color:          var(--accent-bright);
  text-transform: uppercase;
  position:       relative;
  z-index:        1;
}

.mwh-title {
  font-family:    var(--font-serif);
  font-style:     italic;
  font-size:      clamp(2.8rem, 13vw, 4.5rem);
  font-weight:    400;
  line-height:    1.1;
  letter-spacing: -0.01em;
  color:          var(--platinum);
  position:       relative;
  z-index:        1;
  margin:         var(--space-xs) 0;
}

.mwh-sub {
  font-family:  var(--font-serif);
  font-style:   italic;
  font-size:    var(--fs-small);
  color:        var(--text-muted);
  position:     relative;
  z-index:      1;
}

/* Wallet stack — conteneur */
.mwh-stack {
  overflow:  hidden;
  position:  relative;
  margin:    0 var(--space-sm);
  height:    480px;
}

/* Piste = contexte de positionnement pour les cartes absolues */
.mwh-track {
  position: relative;
  height:   100%;
  overflow: hidden;
}

/* Chaque carte = positionnée dans le stack */
.mwh-card {
  position:        absolute;
  inset:           0;
  border-radius:   24px;
  text-decoration: none;
  color:           inherit;
  overflow:        hidden;
  box-shadow:      0 24px 60px rgba(0,0,0,0.55);
  transition:      transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                   opacity   0.45s ease,
                   visibility 0s linear 0.45s;
}

/* ── États wallet (data-pos contrôlé par JS) ─────────── */

/* Carte active — devant, pleine taille */
.mwh-card[data-pos="0"] {
  transform:      scale(1) translateY(0);
  opacity:        1;
  visibility:     visible;
  z-index:        10;
  pointer-events: auto;
  transition:     transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                  opacity   0.45s ease,
                  visibility 0s linear 0s;
}
/* Deuxième carte — cachée derrière */
.mwh-card[data-pos="1"] {
  transform:      translateY(22px) scale(0.93);
  opacity:        0;
  visibility:     hidden;
  z-index:        9;
  pointer-events: none;
}
/* Troisième carte — cachée derrière */
.mwh-card[data-pos="2"] {
  transform:      translateY(44px) scale(0.86);
  opacity:        0;
  visibility:     hidden;
  z-index:        8;
  pointer-events: none;
}
/* Cartes cachées derrière */
.mwh-card[data-pos="3"],
.mwh-card[data-pos="4"],
.mwh-card[data-pos="5"] {
  transform:      translateY(66px) scale(0.79);
  opacity:        0;
  visibility:     hidden;
  z-index:        7;
  pointer-events: none;
}
/* Sortie vers la gauche (→ carte suivante) */
.mwh-card[data-pos="-1"] {
  transform:      translateX(-115%) rotate(-7deg) scale(0.88);
  opacity:        0;
  z-index:        11;
  pointer-events: none;
  transition:     transform 0.38s cubic-bezier(0.4, 0, 1, 1),
                  opacity   0.28s ease;
}
/* Sortie vers la droite (← carte précédente) */
.mwh-card[data-pos="-2"] {
  transform:      translateX(115%) rotate(7deg) scale(0.88);
  opacity:        0;
  z-index:        11;
  pointer-events: none;
  transition:     transform 0.38s cubic-bezier(0.4, 0, 1, 1),
                  opacity   0.28s ease;
}

/* Surface glassmorphism */
.mwh-card .glass-card__surface {
  display:          flex;
  flex-direction:   column;
  height:           100%;
  background:       rgba(18,18,20,0.85);
  border:           1px solid rgba(255,255,255,0.12);
  border-radius:    24px;
  overflow:         hidden;
}

.mwh-card .glass-card__img {
  width:            100%;
  height:           45%;
  max-height:       200px;
  object-fit:       contain;
  object-position:  center center;
  background:       #0a0a0b;
  flex-shrink:      0;
}

.mwh-card .glass-card__content {
  padding:         1.5rem;
  flex:            1;
  display:         flex;
  flex-direction:  column;
  gap:             0.35rem;
  justify-content: flex-end;
  overflow:        hidden;
  min-height:      0;
}

.mwh-card .glass-card__shine { display: none; }

/* Carte flotte */
.mwh-fleet-surface {
  justify-content: center;
  align-items:     center;
}

.mwh-fleet-bg {
  position:   absolute;
  inset:      0;
  background-image:
    linear-gradient(to right, rgba(166,43,43,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(166,43,43,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.mwh-fleet-bg::after {
  content:    '';
  position:   absolute;
  inset:      0;
  background: radial-gradient(ellipse at center, rgba(166,43,43,0.15) 0%, transparent 70%);
}

.mwh-fleet-content {
  position:        relative;
  z-index:         1;
  display:         flex;
  flex-direction:  column;
  gap:             var(--space-sm);
  padding:         var(--space-2xl) var(--space-xl);
  text-align:      center;
  align-items:     center;
}

.mwh-fleet-label {
  font-family:    var(--font-mono);
  font-size:      var(--fs-caption);
  letter-spacing: 0.2em;
  color:          var(--accent-bright);
  text-transform: uppercase;
}

.mwh-fleet-title {
  font-family:  var(--font-serif);
  font-style:   italic;
  font-size:    clamp(2.2rem, 10vw, 3rem);
  font-weight:  400;
  color:        var(--platinum);
  line-height:  1.1;
}

.mwh-fleet-sub {
  font-size:   var(--fs-small);
  color:       var(--text-muted);
  line-height: 1.7;
  margin-top:  var(--space-xs);
}

/* Navigation */
.mwh-nav {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             var(--space-xl);
  padding-top:     var(--space-lg);
  padding-bottom:  var(--space-sm);
}

/* Bouton START sous les dots */
.mwh-start-btn {
  display:         inline-flex;
  align-items:     center;
  gap:             0.7rem;
  padding:         14px 44px;
  background:      var(--accent);
  color:           var(--text-primary);
  font-family:     var(--font-display);
  font-size:       0.72rem;
  font-weight:     700;
  letter-spacing:  0.42em;
  text-transform:  uppercase;
  clip-path:       polygon(10px 0%, calc(100% - 10px) 0%, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0% 50%);
  transition:      background var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}
.mwh-start-btn:hover,
.mwh-start-btn:active {
  background:  var(--accent-bright);
  box-shadow:  0 0 28px rgba(166,43,43,0.5);
}

.mwh-arrow {
  width:           48px;
  height:          48px;
  border-radius:   50%;
  border:          1px solid rgba(255,255,255,0.15);
  background:      rgba(255,255,255,0.05);
  display:         flex;
  align-items:     center;
  justify-content: center;
  color:           var(--platinum);
  cursor:          pointer;
  transition:      background 0.2s, border-color 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.mwh-arrow:active {
  background:  rgba(166,43,43,0.2);
  border-color: var(--accent);
  transform:   scale(0.92);
}

.mwh-dots {
  display: flex;
  gap:     10px;
}

.mwh-dot {
  width:       8px;
  height:      8px;
  border-radius: 50%;
  background:  rgba(189,181,162,0.3);
  transition:  background 0.3s, transform 0.3s;
  cursor:      pointer;
}

.mwh-dot--active {
  background:  var(--platinum);
  transform:   scale(1.3);
}


.glass-fleet__grid-bg {
  position:   absolute;
  inset:      0;
  background-image:
    linear-gradient(to right, rgba(79,79,79,0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(79,79,79,0.15) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
}

.glass-fleet__intro-title {
  font-family:    var(--font-display);
  font-size:      clamp(2rem, 5vw, 3.5rem);
  font-weight:    200;
  letter-spacing: -0.02em;
  text-align:     center;
  color:          var(--text-primary);
  position:       relative;
  z-index:        1;
  line-height:    1.2;
  padding:        0 2rem;
}

.glass-fleet__intro-sub {
  font-family:  var(--font-serif);
  font-style:   italic;
  text-align:   center;
  color:        var(--text-muted);
  font-size:    var(--fs-small);
  margin-top:   1rem;
  position:     relative;
  z-index:      1;
}

/* Cards section */
.glass-cards-section {
  width: 100%;
  color: #fff;
}

/* Each card wrapper — sticky */
.glass-card-wrap {
  height:          100vh;
  display:         flex;
  align-items:     center;
  justify-content: center;
  position:        sticky;
  top:             0;
}

/* The card itself */
.glass-card {
  position:        relative;
  width:           min(72%, 960px);
  height:          460px;
  border-radius:   24px;
  isolation:       isolate;
  transform-origin: center top;
  cursor:          pointer;
  transition:      transform 0.3s ease;
}

.glass-card:hover { transform: translateY(-6px) !important; }

/* Animated electric border */
.glass-card__border {
  position:      absolute;
  inset:         -2px;
  border-radius: 26px;
  padding:       2px;
  z-index:       -1;
  animation:     rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
  from { --border-angle: 0deg; }
  to   { --border-angle: 360deg; }
}

/* Main glass surface */
.glass-card__surface {
  position:       relative;
  width:          100%;
  height:         100%;
  display:        flex;
  border-radius:  24px;
  background:     linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border:         1px solid rgba(255,255,255,0.15);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.45),
    0 2px 8px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(255,255,255,0.08);
  overflow:       hidden;
}

/* Glass reflections */
.glass-card__surface::before {
  content:        '';
  position:       absolute;
  top:            0; left: 0; right: 0;
  height:         55%;
  background:     linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.07) 50%, transparent 100%);
  border-radius:  24px 24px 0 0;
  pointer-events: none;
  z-index:        2;
}

.glass-card__surface::after {
  content:        '';
  position:       absolute;
  top:            8px; left: 8px; right: 8px;
  height:         1px;
  background:     linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  pointer-events: none;
  z-index:        2;
}

/* Left vertical shine */
.glass-card__shine {
  position:   absolute;
  top:        0; left: 0;
  width:      2px; height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent 50%);
  border-radius: 24px 0 0 24px;
  pointer-events: none;
  z-index:    2;
}

/* Vehicle image */
.glass-card__img {
  width:      50%;
  height:     100%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

.glass-card__img-placeholder {
  width:           50%;
  height:          100%;
  background:      linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
}

.glass-card__img-placeholder span {
  font-size:      var(--fs-caption);
  color:          rgba(255,255,255,0.25);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Card content */
.glass-card__content {
  flex:           1;
  display:        flex;
  flex-direction: column;
  justify-content: center;
  padding:        2.5rem 2.5rem 2.5rem 2rem;
  position:       relative;
  z-index:        1;
}

.glass-card__badge {
  display:        inline-block;
  padding:        4px 12px;
  font-size:      0.6rem;
  font-weight:    600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background:     rgba(166,43,43,0.2);
  border:         1px solid rgba(166,43,43,0.4);
  color:          #D63838;
  margin-bottom:  1rem;
  width:          fit-content;
}

.glass-card__brand {
  font-size:      var(--fs-caption);
  font-weight:    600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color:          rgba(255,255,255,0.45);
  margin-bottom:  0.3rem;
}

.glass-card__model {
  font-family:  var(--font-serif);
  font-style:   italic;
  font-size:    clamp(1.8rem, 3vw, 2.6rem);
  font-weight:  400;
  line-height:  1.1;
  color:        #fff;
  margin-bottom: 1rem;
}

.glass-card__specs {
  display:        flex;
  flex-direction: column;
  gap:            0.4rem;
  margin-bottom:  1.5rem;
}

.glass-card__spec {
  display:  flex;
  gap:      0.6rem;
  font-family: var(--font-mono);
  font-size:   0.75rem;
  color:       rgba(255,255,255,0.55);
}

.glass-card__spec-label {
  color:          rgba(255,255,255,0.3);
  min-width:      70px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size:      0.65rem;
}

.glass-card__price {
  font-family:         var(--font-mono);
  font-size:           1.2rem;
  font-weight:         500;
  color:               #D63838;
  font-variant-numeric: tabular-nums;
  margin-bottom:       1.5rem;
}

.glass-card__cta {
  display:        inline-flex;
  align-items:    center;
  gap:            0.5rem;
  padding:        12px 28px;
  background:     rgba(166,43,43,0.15);
  border:         1px solid rgba(166,43,43,0.5);
  color:          #fff;
  font-size:      var(--fs-caption);
  font-weight:    600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition:     all 0.2s ease;
  width:          fit-content;
}

.glass-card__cta:hover {
  background:  rgba(166,43,43,0.4);
  border-color: #D63838;
  box-shadow:   0 0 20px rgba(166,43,43,0.4);
}

.glass-card__arrow {
  transition: transform 0.2s ease;
}

.glass-card__cta:hover .glass-card__arrow {
  transform: translateX(5px);
}

/* Card number */
.glass-card__num {
  position:       absolute;
  bottom:         1.5rem;
  right:          2rem;
  font-family:    var(--font-display);
  font-size:      4rem;
  font-weight:    200;
  color:          rgba(255,255,255,0.05);
  line-height:    1;
  pointer-events: none;
  z-index:        0;
}

/* Mobile */
@media (max-width: 768px) {
  /* Scroll distance réduit */
  .glass-card-wrap {
    height: 72vh;
  }

  .glass-card {
    width:      94%;
    height:     auto;
    min-height: 480px;
  }

  .glass-card__surface {
    flex-direction: column;
  }

  /* Image brute — retirer l'overlay glass sur mobile */
  .glass-card__surface::before,
  .glass-card__surface::after {
    display: none;
  }

  .glass-card__shine { display: none; }

  .glass-card__img,
  .glass-card__img-placeholder {
    width:           100%;
    height:          240px;
    object-position: center 40%;
    border-radius:   24px 24px 0 0;
  }

  .glass-card__content { padding: 1.5rem; }
}
