/* MÉCAREMAP — home.css */

/* ══ HERO PARALLAX ═══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #08080c;
  z-index: 1;
}
/* Fondu bas du hero vers les sections suivantes — évite la coupure nette */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, var(--black) 100%);
  z-index: 10;
  pointer-events: none;
}
/* Halo rouge signature (bas-gauche, sous le texte) — accent premium */
.hero::before {
  content: '';
  position: absolute;
  left: -8%; bottom: -12%;
  width: 62%; height: 75%;
  background: radial-gradient(circle at 28% 72%, rgba(227,6,19,0.20) 0%, rgba(227,6,19,0.05) 38%, transparent 66%);
  z-index: 2;
  pointer-events: none;
}

/* --- Vidéo fond --- */
.hero-video-wrap {
  position: absolute;
  inset: -8%;
  will-change: transform;
  transform-origin: center center;
  transform: scale(1.08);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- Image de fond Supra (parallax hero) --- */
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.06) saturate(1.08) brightness(0.9);
}

/* --- Couche parallax image depth 1 (demi-opaque, fondu sur vidéo) --- */
.hero-parallax-img {
  position: absolute;
  inset: -12%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform-origin: center center;
  transform: scale(1.12);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
}
/* activé uniquement en fallback si pas de vidéo */
@media (prefers-reduced-motion: reduce) {
  .hero-parallax-img { mix-blend-mode: normal; opacity: 0.15; }
  .hero-video { display: none; }
}

/* --- Grain cinématique --- */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* ══ FULL-PAGE BACKGROUND PARALLAX ═══════════════════════════
   UNE seule image par page, fond fixe parallax.
   L'overlay sombre est intégré en multi-background (pas de ::before fixed).
═══════════════════════════════════════════════════════════════ */
.page-content-wrap {
  position: relative;
  /* Overlay sombre intégré + image de fond, tous deux fixed */
  background-image:
    linear-gradient(rgba(6,6,8,0.72), rgba(6,6,8,0.72)),
    var(--page-bg, none);
  background-attachment: fixed, fixed;
  background-size: cover, cover;
  background-position: center 30%, center 30%;
  background-repeat: no-repeat, no-repeat;
  overflow-x: hidden;
}

/* Toutes les sections deviennent semi-transparentes */
.page-content-wrap .section,
.page-content-wrap .stats-section,
.page-content-wrap .faq-section,
.page-content-wrap .ticker-wrap {
  position: relative;
  z-index: 1;
  background: rgba(6, 6, 8, 0.70) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* CTA un peu plus opaque pour le contraste */
.page-content-wrap .cta-section {
  background: rgba(6, 6, 8, 0.88) !important;
}

/* Stats section — fond légèrement différent */
.page-content-wrap .stats-section {
  background: rgba(6, 6, 8, 0.60) !important;
}

/* Sections non-wrapper (fallback pages sans wrapper) */
.section {
  position: relative;
  z-index: 1;
  background: var(--black);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  /* PAS de overflow-x ici : casserait overflow:hidden sur les enfants (FAQ) */
}

/* Ticker au-dessus du bg */
.ticker-wrap {
  position: relative;
  z-index: 2;
}

/* Footer */
footer {
  position: relative;
  z-index: 10;
  background: var(--black-2) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}



/* Vignettes dégradées pour lisibilité du texte */
.hero-vignette-left {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 60%;
  background: linear-gradient(to right, rgba(4,4,8,0.85) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-vignette-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(4,4,8,0.9) 0%, rgba(4,4,8,0.35) 50%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-vignette-top {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 30%;
  background: linear-gradient(to bottom, rgba(4,4,8,0.7) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* ── OVERLAY PRINCIPAL ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(80px,10vh,120px) clamp(24px,5vw,80px) clamp(40px,7vh,80px);
  /* Visible par défaut : robuste mobile/SEO. (Avant : opacity:0 + révélation JS,
     ce qui rendait le hero invisible sur mobile à cause d'une race avec fx.js.)
     fx.js gère le fondu au scroll en partant de cette opacité 1. */
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.hero-overlay.visible { opacity: 1; transform: none; pointer-events: auto; }

/* Badge top */
.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-alt);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,240,238,0.55);
  align-self: flex-start;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Bottom content */
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

/* Left &#8212; texte principal */
.hero-left-content { max-width: 780px; }
.hero-eyebrow {
  font-family: var(--font-alt);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-tech);
  font-size: clamp(2.8rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-gradient {
  font-style: normal;
  background: linear-gradient(90deg, #e30613 0%, #ff6b35 55%, #e30613 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s linear infinite;
}
@keyframes gradientFlow { to { background-position: 200% center; } }

.hero-desc {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: rgba(240,240,238,0.6);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 420px;
}
.hero-desc strong { color: var(--white); }
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-tech);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,240,238,0.7);
  border: 1px solid rgba(240,240,238,0.15);
  border-radius: 6px;
  text-decoration: none;
  transition: all .25s;
  backdrop-filter: blur(8px);
}
.btn-ghost-hero:hover { color: var(--white); border-color: rgba(240,240,238,0.4); background: rgba(255,255,255,0.05); }

/* Right &#8212; specs */
.hero-specs {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(8,8,12,0.65);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  padding: 20px 0;
  flex-shrink: 0;
}
.hero-spec {
  text-align: center;
  padding: 0 28px;
}
.hero-spec-val {
  font-family: var(--font-tech);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-spec-unit {
  font-size: 0.9rem;
  color: var(--red);
  margin-left: 2px;
}
.hero-spec-label {
  font-family: var(--font-alt);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,240,238,0.4);
}
.hero-spec-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* Car model tag (bas droite) */
.hero-car-tag {
  position: absolute;
  bottom: clamp(40px,7vh,80px);
  right: clamp(24px,5vw,80px);
  text-align: right;
  z-index: 2;
}
.hero-car-name {
  font-family: var(--font-tech);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,240,238,0.4);
  margin-bottom: 3px;
}
.hero-car-sub {
  font-family: var(--font-alt);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,240,238,0.2);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: clamp(40px,7vh,80px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(240,240,238,0.3);
  font-family: var(--font-alt);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 6;
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* &#9472;&#9472; RESPONSIVE &#9472;&#9472; */
@media (max-width: 900px) {
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero-specs { align-self: stretch; justify-content: center; }
  .hero-car-tag { display: none; }
}
@media (max-width: 600px) {
  .hero-title { font-size: clamp(2.2rem, 12vw, 3.5rem); }
  .hero-spec-val { font-size: 1.6rem; }
  .hero-spec { padding: 0 18px; }

  /* ── Supprime l'espace vide au centre sur mobile ── */
  .hero-overlay {
    justify-content: flex-end;
    padding-top: clamp(80px, 12vh, 100px);
    gap: 18px;
  }
  /* Badge visible juste au-dessus du titre, plus flottant en haut */
  .hero-badge-top {
    align-self: flex-start;
    margin-bottom: 0;
  }
}


/* &#9472;&#9472; TICKER &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.ticker-wrap {
  overflow: hidden;
  background: var(--red);
  padding: 14px 0;
  position: relative;
  z-index: 3;
}
.ticker {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 28s linear infinite;
  align-items: center;
  will-change: transform;
}
.ticker span {
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--white);
}
.ticker-dot { color: rgba(255,255,255,0.5) !important; font-size: 0.5rem !important; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
/* Mobile : animation 2&#215; plus rapide */
@media (max-width: 768px) {
  .ticker { animation-duration: 14s; }
}

/* &#9472;&#9472; STATS SECTION &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.stats-section { padding: 80px clamp(20px,5vw,80px); position: relative; overflow: hidden; }
.stats-bg {
  position: absolute;
  inset: 0;
  background: var(--black-2);
}
.stats-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(227,6,19,0.08) 0%, transparent 70%);
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.stats-grid .counter-wrap {
  padding: 40px 16px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  min-width: 0;
  overflow: hidden;
}
.stats-grid .counter-number {
  font-size: clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}
@media (max-width:900px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:500px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap:12px; }
  .stats-grid .counter-wrap { padding: 24px 12px; }
  .stats-grid .counter-number { font-size: clamp(1.6rem, 7vw, 2.5rem); }
  .hero-stats { flex-direction:column; gap:16px; width:100%; max-width:100%; }
  .hero-stat-divider { width:100%;height:1px; }
  .hero-title { font-size: clamp(1.6rem, 9vw, 2.8rem); word-break: break-word; }
  .hero-content { max-width: 100%; width: 100%; }
  .hero-desc { max-width: 100%; font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* &#9472;&#9472; SERVICES GRID &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
@media (max-width:640px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  display: block;
  padding: 32px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: var(--transition);
  cursor: none;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(227,6,19,0.06), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(227,6,19,0.25); }
.service-card:hover::before { opacity: 1; }
.service-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.service-icon { font-size: 2rem; }
.service-title {
  font-family: var(--font-tech);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.service-desc { color: var(--white-dim); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.service-arrow {
  color: var(--red);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.service-card:hover .service-arrow { transform: translateX(8px); }

/* &#9472;&#9472; CARTE E85 HERO (pleine largeur, flex responsive) &#9472;&#9472; */
.e85-hero-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(227,6,19,0.12), rgba(201,168,76,0.05));
  border-color: rgba(227,6,19,0.3);
}
.e85-hero-body { flex: 1; min-width: 0; }
.e85-hero-price {
  text-align: center;
  flex-shrink: 0;
}
@media (max-width: 580px) {
  .e85-hero-card { flex-direction: column; align-items: flex-start; gap: 16px; }
  .e85-hero-price { align-self: flex-start; display: flex; align-items: center; gap: 16px; }
}

/* &#9472;&#9472; SLIDER FIX (desktop uniquement, visuel) &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.calc-slider {
  width: 100%;
  margin-top: 12px;
  -webkit-appearance: none;
  height: 3px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
}
@media (max-width: 600px) { .calc-slider { display: none; } }

/* &#9472;&#9472; STEPPER +/- &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.calc-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.calc-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white-dim);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.calc-btn:hover, .calc-btn:active {
  background: rgba(227,6,19,0.15);
  color: var(--white);
}
.calc-btn:active { background: rgba(227,6,19,0.3); }
.calc-stepper-val {
  flex: 1;
  text-align: center;
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  padding: 10px 8px;
}
.calc-stepper-val span {
  display: block;
  font-family: var(--font-tech);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.calc-stepper-val small {
  display: block;
  font-size: 0.65rem;
  color: var(--titanium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* &#9472;&#9472; TESTIMONIALS &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width:768px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  padding: 32px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(227,6,19,0.2); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { color: var(--white-dim); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { font-size: 0.8rem; color: var(--titanium); letter-spacing: 0.1em; }
.testi-author strong { color: var(--white); display: block; margin-bottom: 2px; }

/* &#9472;&#9472; CTA SECTION &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.cta-section { position: relative; overflow: hidden; }
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(227,6,19,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  padding: 80px 60px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  backdrop-filter: blur(30px);
  max-width: 800px;
}
@media (max-width:640px) {
  .cta-inner { padding: 32px 16px; }
  .cta-inner h2 { font-size: clamp(1.5rem, 7vw, 2.5rem); }
}

/* &#9472;&#9472; BANDEAU URGENCE E85 &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
#e85-urgency-bar {
  background: linear-gradient(90deg, #1a0002, #2d0005, #1a0002);
  border-bottom: 1px solid rgba(227,6,19,0.3);
  padding: 10px clamp(16px, 4vw, 40px);
  position: relative;
  z-index: 100;
}
.e85-urgency-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.e85-urgency-pill {
  background: rgba(227,6,19,0.2);
  border: 1px solid rgba(227,6,19,0.4);
  color: var(--red);
  font-family: var(--font-tech);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.e85-urgency-text {
  color: var(--white-dim);
  font-size: 0.85rem;
  text-align: center;
}
.e85-urgency-text strong { color: var(--white); }
.e85-highlight { color: var(--gold) !important; }
.e85-urgency-cta {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-tech);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.e85-urgency-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.e85-urgency-close {
  position: absolute;
  top: 50%;
  right: clamp(8px, 2.5vw, 20px);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white-dim);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.e85-urgency-close:hover { background: rgba(227,6,19,0.22); color: var(--white); }
.e85-urgency-close svg { width: 14px; height: 14px; }
@media (max-width: 600px) {
  .e85-urgency-pill { display: none; }
  .e85-urgency-text { font-size: 0.78rem; }
  .e85-urgency-inner { padding-right: 28px; }
  .e85-urgency-close { width: 34px; height: 34px; }
}

/* &#9472;&#9472; CALCULATEUR E85 &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.calc-e85-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 768px) { .calc-e85-grid { grid-template-columns: 1fr; } }
.calc-field { margin-bottom: 28px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-label {
  display: block;
  font-family: var(--font-alt);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--titanium);
  margin-bottom: 12px;
}
.calc-slider-wrap { display: flex; align-items: center; gap: 16px; }
.calc-slider {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 4px;
  background: var(--titanium-2);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
  cursor: pointer;
  transition: transform 0.2s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-value-display {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  min-width: 90px;
  text-align: right;
  white-space: nowrap;
}
.calc-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border);
}
.calc-result-label { color: var(--titanium); font-size: 0.88rem; }
.calc-result-val { font-family: var(--font-tech); font-weight: 700; font-size: 1.1rem; }
.calc-result-divider { height: 1px; background: var(--glass-border); margin: 20px 0; }
.calc-result-saving { text-align: center; }
.calc-saving-label {
  font-family: var(--font-alt);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--titanium);
  margin-bottom: 8px;
}
.calc-saving-amount {
  font-family: var(--font-tech);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  transition: all 0.3s ease;
}
.calc-saving-months { color: var(--titanium); font-size: 0.85rem; margin-top: 8px; }
.calc-saving-months strong { color: var(--gold); }

/* &#9472;&#9472; COMMENT CA MARCHE &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.how-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}
.how-step-num {
  font-family: var(--font-tech);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(227,6,19,0.15);
  line-height: 1;
  margin-bottom: 12px;
}
.how-step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.how-step-title {
  font-family: var(--font-tech);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 10px;
}
.how-step-desc { color: var(--titanium); font-size: 0.88rem; line-height: 1.6; }
.how-step-arrow {
  font-size: 1.5rem;
  color: var(--red);
  opacity: 0.4;
  align-self: center;
  flex-shrink: 0;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .how-steps { flex-direction: column; gap: 32px; }
  .how-step-arrow { display: none; }
  .how-step { padding: 0; }
}

/* &#9472;&#9472; SECTION AVIS GOOGLE &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.google-badge-link { text-decoration: none; flex-shrink: 0; }
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: var(--glass);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  transition: border-color 0.25s, background 0.25s;
  cursor: pointer;
}
.google-badge-link:hover .google-rating-badge {
  border-color: rgba(66,133,244,0.5);
  background: rgba(66,133,244,0.06);
}
.google-rating-info { display: flex; flex-direction: column; gap: 3px; }
.google-rating-stars {
  font-size: 1rem;
  color: #FBBC05;
  letter-spacing: 2px;
}
.google-rating-text {
  font-family: var(--font-alt);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(240,240,238,0.6);
  text-transform: uppercase;
}
.google-map-embed {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  background: var(--black-2);
}
.google-map-embed iframe { display: block; }
@media (max-width: 768px) {
  .reviews-header { flex-direction: column; align-items: flex-start; }
  .google-rating-badge { width: 100%; box-sizing: border-box; }
}

/* &#9472;&#9472; GRID 2 COLONNES &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* &#9472;&#9472; ZONE D'INTERVENTION TAGS &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
.zone-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  background: rgba(227,6,19,0.12);
  border: 1px solid rgba(227,6,19,0.25);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
a.zone-tag:hover {
  background: rgba(227,6,19,0.25);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}
.zone-tag-dim {
  color: var(--titanium);
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  cursor: default;
}


/* &#9472;&#9472; STICKY CTA MOBILE &#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472;&#9472; */
#sticky-mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  display: flex;
  background: rgba(8,8,14,0.95);
  border-top: 1px solid rgba(227,6,19,0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 16px;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}
#sticky-mobile-cta.visible { transform: translateY(0); }
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: var(--font-tech, 'Rajdhani', sans-serif);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.sticky-btn:active { transform: scale(0.96); opacity: 0.85; }
.sticky-call {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}
.sticky-rdv {
  background: linear-gradient(135deg, #e30613 0%, #b00010 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(227,6,19,0.35);
}
@media (min-width: 769px) { #sticky-mobile-cta { display: none !important; } }


/* ══════════════════════════════════════════════════════════
   PARALLAX PREMIUM SECTIONS
   ══════════════════════════════════════════════════════════ */

/* ── IMAGE SPLIT SECTION ─────────────────────────────────── */
.img-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.img-split-visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.img-split-photo {
  position: absolute;
  inset: -18%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.img-split-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--black) 100%);
  z-index: 2;
  pointer-events: none;
}
.img-split-content {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 120px) clamp(40px, 6vw, 100px);
  z-index: 2;
}
.img-split-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--glass-border);
}
.img-split-stat { display: flex; flex-direction: column; gap: 6px; }
.img-split-num {
  font-family: var(--font-tech);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.img-split-num span { color: var(--red); font-size: 0.55em; vertical-align: super; }
.img-split-slabel {
  font-family: var(--font-alt);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--titanium);
}
@media (max-width: 900px) {
  .img-split-section { grid-template-columns: 1fr; }
  .img-split-visual { min-height: 400px; }
  .img-split-glow { background: linear-gradient(to bottom, transparent 55%, var(--black) 100%); }
  .img-split-content { padding: 48px 24px; }
}

/* ── PARALLAX SHOWCASE CENTRAL ───────────────────────────── */
.parallax-showcase {
  position: relative;
  height: 78vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.parallax-showcase-img {
  position: absolute;
  inset: -22%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.parallax-showcase-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,6,8,0.6) 0%, rgba(6,6,8,0.25) 40%, rgba(6,6,8,0.25) 60%, rgba(6,6,8,0.8) 100%),
    linear-gradient(135deg, rgba(227,6,19,0.12) 0%, transparent 60%);
  z-index: 1;
}
.parallax-showcase-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
  max-width: 900px;
}
.parallax-showcase-eyebrow {
  font-family: var(--font-alt);
  font-size: 0.7rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}
.parallax-showcase-title {
  font-family: var(--font-tech);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: var(--white);
  text-shadow: 0 8px 80px rgba(0,0,0,0.6);
  margin-bottom: 32px;
}
.parallax-showcase-title span {
  color: transparent;
  -webkit-text-stroke: 2px rgba(240,240,238,0.9);
}
.parallax-showcase-sub {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(240,240,238,0.55);
  letter-spacing: 0.06em;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── PARALLAX BAND STATS ─────────────────────────────────── */
.parallax-band {
  position: relative;
  height: 52vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.parallax-band-img {
  position: absolute;
  inset: -22%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  filter: brightness(0.45) saturate(1.3);
}
.parallax-band-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,6,8,0.85) 0%, rgba(6,6,8,0.2) 50%, rgba(6,6,8,0.85) 100%),
    linear-gradient(to bottom, rgba(6,6,8,0.5) 0%, transparent 30%, transparent 70%, rgba(6,6,8,0.5) 100%);
  z-index: 1;
}
.parallax-band-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 24px;
}
.parallax-band-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.parallax-band-num {
  font-family: var(--font-tech);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.parallax-band-plus {
  font-size: 0.45em;
  color: var(--red);
  vertical-align: super;
}
.parallax-band-label {
  font-family: var(--font-alt);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,240,238,0.45);
}
.parallax-band-sep {
  width: 1px;
  height: 90px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.18), transparent);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .parallax-band-sep { display: none; }
  .parallax-band-content { gap: 36px; }
  .parallax-band { height: auto; min-height: 300px; padding: 60px 0; }
}

/* ── HORIZONTAL IMAGE STRIP (Realizations teaser) ─────────── */
.img-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 380px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.img-strip-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.img-strip-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1), filter 0.7s ease;
  filter: brightness(0.6) saturate(1.1);
  transform: scale(1.05);
}
.img-strip-item:hover .img-strip-photo {
  transform: scale(1.12);
  filter: brightness(0.45) saturate(1.4);
}
.img-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,8,0.85) 0%, transparent 55%);
  z-index: 2;
}
.img-strip-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  font-family: var(--font-tech);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,240,238,0.7);
  transition: color 0.3s;
}
.img-strip-item:hover .img-strip-label { color: var(--white); }
@media (max-width: 768px) {
  .img-strip { grid-template-columns: 1fr; height: auto; }
  .img-strip-item { height: 240px; }
}

/* ── Hero FX : canvas braises/énergie (Phase 2) ───────────── */
.hero-fx-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;            /* au-dessus du fond, sous le texte (overlay = 5) */
  pointer-events: none;
  mix-blend-mode: screen; /* les braises ajoutent de la lumière sur le fond sombre */
}
@media (prefers-reduced-motion: reduce) {
  .hero-fx-canvas { opacity: 0.55; }
}

/* ── Section DYNO : courbe puissance avant/après (Phase 2) ── */
.dyno-section { background: var(--black-2); }
.dyno-wrap { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center; }
@media (min-width: 900px) { .dyno-wrap { grid-template-columns: 2.2fr 0.9fr; } }
.dyno-chart { width: 100%; height: auto; display: block; }
.dyno-grid-l { stroke: rgba(255,255,255,.07); stroke-width: 1; }
.dyno-tick { fill: var(--titanium-2); font-size: 11px; font-family: var(--font-tech); }
.dyno-tick-y { text-anchor: end; }
.dyno-tick-x { text-anchor: middle; }
.dyno-axis-title { fill: rgba(255,255,255,.4); font-size: 11px; text-anchor: middle; letter-spacing: .05em; text-transform: uppercase; }
.dyno-stock { stroke: rgba(255,255,255,.38); stroke-width: 2; stroke-dasharray: 5 5; fill: none; }
.dyno-tuned { stroke: var(--red); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; fill: none; transition: stroke-dashoffset 1.8s cubic-bezier(.22,1,.36,1); }
.dyno-area { opacity: 0; transition: opacity 1.1s ease .5s; }
.dyno-chart.dyno-play .dyno-area { opacity: 1; }
.dyno-peak { fill: #fff; opacity: 0; transition: opacity .4s ease 1.4s; }
.dyno-chart.dyno-play .dyno-peak { opacity: 1; }
.dyno-peak-badge { opacity: 0; transition: opacity .45s ease 1.55s; }
.dyno-chart.dyno-play .dyno-peak-badge { opacity: 1; }
.dyno-peak-badge rect { fill: var(--red); }
.dyno-peak-badge text { fill: #fff; font-family: var(--font-tech); font-weight: 800; font-size: 12px; text-anchor: middle; }
.dyno-stats { display: flex; flex-direction: row; flex-wrap: wrap; gap: 16px; justify-content: center; }
@media (min-width: 900px) { .dyno-stats { flex-direction: column; } }
.dyno-stat { background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-md); padding: 18px 22px; text-align: center; min-width: 116px; flex: 1; }
.dyno-stat-val { display: block; font-family: var(--font-tech); font-weight: 900; font-size: 2rem; color: var(--red); line-height: 1; }
.dyno-stat-lbl { display: block; margin-top: 6px; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--titanium); }
.dyno-legend { margin-top: 24px; font-size: .82rem; color: var(--titanium); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dyno-key { display: inline-block; width: 22px; height: 3px; border-radius: 2px; }
.dyno-key-stock { background: rgba(255,255,255,.38); }
.dyno-key-tuned { background: var(--red); }

/* ══ CAS CLIENTS — Transformations chiffrées ════════════════════ */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .case-grid { grid-template-columns: 1fr; gap: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
  /* Pas de scale/translate sur la card mise en avant en mobile : évite tout chevauchement */
  .case-card-featured { transform: none !important; }
}

.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 6, 19, 0.3);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.case-card-featured {
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.15), 0 18px 50px rgba(201, 168, 76, 0.08);
}
@media (min-width: 901px) {
  .case-card-featured { transform: translateY(-8px) scale(1.02); }
  .case-card-featured:hover { transform: translateY(-14px) scale(1.02); }
}
.case-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 13px;
  background: rgba(201, 168, 76, 0.14);
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 999px;
  color: var(--gold);
  font-family: var(--font-tech);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(201, 168, 76, 0.12);
}
.case-badge::before {
  content: '★';
  font-size: 0.7rem;
  line-height: 1;
}
.case-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.case-stage {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: rgba(227, 6, 19, 0.1);
  border: 1px solid rgba(227, 6, 19, 0.3);
  border-radius: 999px;
  font-family: var(--font-tech);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--red);
}
.case-stage-gold {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.35);
  color: var(--gold);
}
.case-stage-white {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}
.case-rating {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}
.case-rating svg {
  width: 13px;
  height: 13px;
}
.case-title {
  font-family: var(--font-tech);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 0 0 4px;
}
.case-meta {
  font-size: 0.75rem;
  color: var(--titanium-2);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.case-gains {
  margin-bottom: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px dashed var(--glass-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.case-gain {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
  font-family: var(--font-tech);
  font-size: 0.78rem;
}
.case-gain-from {
  color: var(--titanium);
  text-align: right;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.case-arrow {
  width: 14px;
  height: 14px;
  color: var(--red);
  opacity: 0.65;
}
.case-gain-to {
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.case-gain-delta {
  background: rgba(227, 6, 19, 0.12);
  color: var(--red);
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-align: center;
  min-width: 64px;
}
.case-quote {
  margin-top: auto;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--white-dim);
  font-style: italic;
  padding-top: 12px;
  border-top: 1px solid var(--glass-border);
}
.case-quote::before {
  content: '«\00a0';
  color: var(--red);
  font-weight: 800;
  font-style: normal;
}
.case-quote::after {
  content: '\00a0»';
  color: var(--red);
  font-weight: 800;
  font-style: normal;
}
@media (max-width: 520px) {
  .case-card { padding: 22px 20px; }
  .case-card-featured { transform: none; box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.2), 0 14px 40px rgba(201, 168, 76, 0.1); }
  .case-gain { font-size: 0.72rem; }
}

/* ══ TRUST BAND (sous-hero) ══════════════════════════════════════ */
.trust-band {
  position: relative;
  z-index: 5;
  padding: 18px 5vw 22px;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%);
  border-bottom: 1px solid var(--glass-border);
}
.trust-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(227, 6, 19, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 720px) {
  .trust-band { padding: 14px 12px 18px; }
}



