/* =====================================================
   ELECTRONIQUE AUTOMOBILE — style.css
   Charte : #FFD100 | #231F20 | #FFFFFF
   ===================================================== */

/* ── RESET & BASE ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:      #FFD100;
  --yellow-dark: #e6bc00;
  --black:       #231F20;
  --black-soft:  #1a1718;
  --black-card:  #2a2628;
  --gray-800:    #3d393a;
  --gray-600:    #6b6668;
  --white:       #ffffff;

  --font: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.18);
  --shadow-md: 0 8px 32px rgba(0,0,0,.28);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.4);

  --transition: .25s ease;
  --trust-h:   40px;
  --nav-h:     130px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--black-soft);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-yellow { color: var(--yellow); }

/* ── ANIMATIONS ────────────────────────────────────── */
@keyframes fadeUp    { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse-ring{ 0%{transform:scale(1);opacity:.6} 100%{transform:scale(2.2);opacity:0} }
@keyframes glow-drift{
  0%,100%{transform:translate(0,0) scale(1)}
  33%{transform:translate(30px,-20px) scale(1.1)}
  66%{transform:translate(-20px,15px) scale(.9)}
}
@keyframes scroll-line{
  0%{transform:scaleY(0);transform-origin:top}
  50%{transform:scaleY(1);transform-origin:top}
  51%{transform:scaleY(1);transform-origin:bottom}
  100%{transform:scaleY(0);transform-origin:bottom}
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}
@keyframes btn-pulse {
  0%,100%{ box-shadow: 0 4px 20px rgba(255,209,0,.3); }
  50%    { box-shadow: 0 4px 32px rgba(255,209,0,.65), 0 0 0 8px rgba(255,209,0,.08); }
}
@keyframes ripple {
  0%   { transform:translate(-50%,-50%) scale(1);   opacity:.7; }
  100% { transform:translate(-50%,-50%) scale(2.8); opacity:0;  }
}
@keyframes popupIn {
  from { transform:scale(.8) translateY(20px); opacity:0; }
  to   { transform:scale(1)  translateY(0);    opacity:1; }
}
@keyframes tw-cursor { 0%,100%{opacity:1} 50%{opacity:0} }

/* Particles */
@keyframes p-float-1{ 0%{transform:translate(0,0);opacity:0}    15%{opacity:.9} 85%{opacity:.5} 100%{transform:translate(-70px,-180px);opacity:0} }
@keyframes p-float-2{ 0%{transform:translate(0,0);opacity:0}    20%{opacity:.7} 80%{opacity:.4} 100%{transform:translate(90px,-220px);opacity:0} }
@keyframes p-float-3{ 0%{transform:translate(0,0) scale(1);opacity:0} 25%{opacity:.8} 75%{opacity:.3} 100%{transform:translate(-110px,-140px) scale(.4);opacity:0} }
@keyframes p-float-4{ 0%{transform:translate(0,0);opacity:0}    10%{opacity:.9} 90%{opacity:.4} 100%{transform:translate(60px,-190px);opacity:0} }
@keyframes p-float-5{ 0%{transform:translate(0,0);opacity:0}    20%{opacity:.6} 80%{opacity:.2} 100%{transform:translate(-40px,-150px);opacity:0} }
@keyframes p-float-6{ 0%{transform:translate(0,0) rotate(0deg);opacity:0} 15%{opacity:.8} 85%{opacity:.3} 100%{transform:translate(120px,-160px) rotate(180deg);opacity:0} }
@keyframes p-spark  { 0%,100%{transform:scale(1);opacity:.6} 50%{transform:scale(1.8);opacity:1} }

/* Timeline progress */
@keyframes timeline-fill { from{width:0} to{width:100%} }

/* ── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(255,209,0,.3);
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s ease infinite;
  pointer-events: none;
}
.btn--primary:hover { background: var(--yellow-dark); box-shadow: 0 8px 32px rgba(255,209,0,.5); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.25);
}
.btn--outline:hover { border-color: var(--yellow); color: var(--yellow); }

.btn--lg   { padding: 16px 36px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }
.btn--pulse { animation: btn-pulse 2.5s ease infinite; }
.btn--pulse:hover { animation: none; }

/* ── TRUST BAR ─────────────────────────────────────── */
.trust-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--trust-h);
  background: var(--black);
  border-bottom: 1px solid rgba(255,209,0,.12);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}
.trust-bar__star  { color: var(--yellow); }
.trust-bar__sep   { color: rgba(255,255,255,.2); }
.trust-bar__item--yellow { color: var(--yellow); font-weight: 700; }
.trust-bar__phone {
  background: var(--yellow);
  color: var(--black);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 12px;
  transition: background var(--transition);
  margin-left: 4px;
}
.trust-bar__phone:hover { background: var(--yellow-dark); }

/* ── NAVIGATION ────────────────────────────────────── */
.header {
  position: fixed;
  top: var(--trust-h);
  left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(26,23,24,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo-img { height: 120px; width: auto; object-fit: contain; }
.nav__logo-fallback { display: flex; align-items: center; gap: 8px; }

.logo-ea {
  background: var(--yellow);
  color: var(--black);
  font-size: 18px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: .05em;
}
.logo-full { font-weight: 600; font-size: 15px; }

.nav__menu { display: flex; align-items: center; gap: 2px; }

.nav__link {
  padding: 8px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--black);
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  margin-left: 6px;
  transition: background var(--transition), transform var(--transition);
}
.nav__cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black-soft);
}

/* Video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .25;
  pointer-events: none;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,23,24,.75) 0%,
    rgba(26,23,24,.45) 40%,
    rgba(26,23,24,.85) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,209,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,209,0,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: glow-drift 12s ease-in-out infinite;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,209,0,.12) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,209,0,.08) 0%, transparent 70%);
  bottom: -50px; left: 10%;
  animation-delay: -6s;
}

/* Particles */
.hero__particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--yellow);
  pointer-events: none;
}
.particle--1  { animation: p-float-1 var(--dur,4s) linear var(--delay,0s) infinite; }
.particle--2  { animation: p-float-2 var(--dur,5s) linear var(--delay,0s) infinite; }
.particle--3  { animation: p-float-3 var(--dur,6s) linear var(--delay,0s) infinite; }
.particle--4  { animation: p-float-4 var(--dur,4.5s) linear var(--delay,0s) infinite; }
.particle--5  { animation: p-float-5 var(--dur,5.5s) linear var(--delay,0s) infinite; }
.particle--6  { animation: p-float-6 var(--dur,3.8s) linear var(--delay,0s) infinite; }
.particle--spark { width:2px; height:8px; border-radius:1px; animation: p-spark var(--dur,2s) ease var(--delay,0s) infinite; }

.hero__content {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--trust-h) + var(--nav-h) + 40px);
  padding-bottom: 80px;
  max-width: 820px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,209,0,.1);
  border: 1px solid rgba(255,209,0,.25);
  color: var(--yellow);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: .02em;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-ring 2s ease infinite;
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

/* Typewriter */
#tw-target { color: var(--white); }
.tw-cursor {
  color: var(--yellow);
  font-weight: 300;
  animation: tw-cursor .8s step-end infinite;
  margin-left: 2px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.62);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat__number { font-size: 2.4rem; font-weight: 700; color: var(--yellow); line-height: 1; }
.stat__plus   { font-size: 1.8rem; font-weight: 700; color: var(--yellow); }
.stat__label  { display: block; font-size: 13px; color: rgba(255,255,255,.5); margin-top: 4px; }
.stat__divider { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3;
}
.hero__scroll-indicator span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.scroll-line {
  width: 1px; height: 40px;
  background: var(--yellow);
  animation: scroll-line 2s ease infinite;
  border-radius: 1px;
}

.animate-fade-up { opacity: 0; }
.animate-fade-up.in-view { animation: fadeUp .7s ease forwards; }
.delay-1 { animation-delay: .1s !important; }
.delay-2 { animation-delay: .22s !important; }
.delay-3 { animation-delay: .34s !important; }
.delay-4 { animation-delay: .46s !important; }

/* ── URGENCY BAR ───────────────────────────────────── */
.urgency-bar { background: var(--yellow); color: var(--black); padding: 14px 0; }
.urgency-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  font-size: 14px; font-weight: 600; text-align: center;
}
.urgency-bar__tel {
  background: var(--black); color: var(--yellow);
  padding: 4px 14px; border-radius: var(--radius-full);
  font-weight: 700; font-size: 14px;
  transition: transform var(--transition);
}
.urgency-bar__tel:hover { transform: scale(1.04); }

/* ── SECTION SHARED ────────────────────────────────── */
.section { padding: 100px 0; }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section__tag {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 14px;
}
.section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -.02em; margin-bottom: 16px;
}
.section__subtitle { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ── SERVICES ──────────────────────────────────────── */
.services { background: var(--black-soft); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.service-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition: border-color var(--transition), box-shadow var(--transition);
  transform-style: preserve-3d;
}
.service-card:hover {
  border-color: rgba(255,209,0,.3);
  box-shadow: 0 16px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(255,209,0,.15);
}

/* Per-card gradient accent */
.service-card__accent {
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}
.service-card:hover .service-card__accent { opacity: 1; }
.service-card[data-index="0"] .service-card__accent { background: linear-gradient(135deg, rgba(79,172,254,.1) 0%, transparent 55%); }
.service-card[data-index="1"] .service-card__accent { background: linear-gradient(135deg, rgba(67,233,123,.09) 0%, transparent 55%); }
.service-card[data-index="2"] .service-card__accent { background: linear-gradient(135deg, rgba(255,140,50,.09) 0%, transparent 55%); }
.service-card[data-index="3"] .service-card__accent { background: linear-gradient(135deg, rgba(161,140,209,.09) 0%, transparent 55%); }
.service-card[data-index="4"] .service-card__accent { background: linear-gradient(135deg, rgba(255,209,0,.12)  0%, transparent 55%); }
.service-card[data-index="5"] .service-card__accent { background: linear-gradient(135deg, rgba(240,147,251,.08) 0%, transparent 55%); }
.service-card[data-index="6"] .service-card__accent { background: linear-gradient(135deg, rgba(79,172,254,.09) 0%, transparent 55%); }

.service-card--wide {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 28px;
}
.service-card--wide .service-card__icon  { flex-shrink: 0; margin-bottom: 0; }
.service-card--wide .service-card__body  { flex: 1; }

.service-card__icon {
  width: 54px; height: 54px;
  background: rgba(255,209,0,.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  margin-bottom: 20px;
  transition: background var(--transition), transform var(--transition);
  position: relative; z-index: 1;
}
.service-card:hover .service-card__icon { background: rgba(255,209,0,.2); transform: scale(1.08); }
.service-card__icon svg { width: 28px; height: 28px; }

.service-card__title { font-size: 17px; font-weight: 600; margin-bottom: 10px; position: relative; z-index: 1; }
.service-card__desc  { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 16px; position: relative; z-index: 1; }
.service-card__tag {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255,209,0,.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  position: relative; z-index: 1;
}

/* ── AVANT / APRÈS ─────────────────────────────────── */
.avant-apres { background: var(--black); }

.ba-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.ba-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
  border: 1px solid transparent;
  transition: all var(--transition);
}
.ba-tab:hover      { color: var(--white); background: rgba(255,255,255,.1); }
.ba-tab--active    { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

.ba-panels { max-width: 900px; margin: 0 auto; }
.ba-panel  { display: none; }
.ba-panel--active { display: block; }

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 380px;
  cursor: col-resize;
  user-select: none;
  border: 1px solid rgba(255,255,255,.08);
}
.ba-before,
.ba-after  { position: absolute; inset: 0; }
.ba-after  { clip-path: inset(0 calc(100% - var(--handle, 50%)) 0 0); }
.ba-svg-before,
.ba-svg-after { width: 100%; height: 100%; }
.ba-svg-before svg,
.ba-svg-after  svg { width: 100%; height: 100%; display: block; }

.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--handle, 50%);
  transform: translateX(-50%);
  width: 3px;
  background: var(--yellow);
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 12px rgba(255,209,0,.5);
}
.ba-handle-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(255,209,0,.45);
  transition: transform var(--transition);
}
.ba-slider:hover .ba-handle-btn { transform: translate(-50%, -50%) scale(1.1); }
.ba-handle-btn svg { width: 18px; height: 18px; }

.ba-range {
  position: absolute; inset: 0;
  opacity: 0;
  width: 100%; height: 100%;
  cursor: col-resize;
  z-index: 5;
  margin: 0;
  padding: 0;
}
/* Override default range styles */
.ba-range::-webkit-slider-thumb { width: 46px; height: 100%; }

.ba-label {
  position: absolute; top: 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--radius-full);
  z-index: 2; pointer-events: none;
}
.ba-label--before { left: 16px; background: rgba(255,60,60,.2); color: #ff7777; border: 1px solid rgba(255,60,60,.3); }
.ba-label--after  { right: 16px; background: rgba(60,220,60,.2); color: #77ff77; border: 1px solid rgba(60,220,60,.3); }

/* ── EXPERTISE + TIMELINE ──────────────────────────── */
.expertise { background: var(--black-soft); }

.timeline {
  display: flex;
  position: relative;
  margin-bottom: 80px;
  padding: 20px 0 60px;
  gap: 0;
}
.timeline__track {
  position: absolute;
  top: 44px;
  left: calc(100% / 10);
  right: calc(100% / 10);
  height: 2px;
  background: rgba(255,209,0,.15);
  overflow: hidden;
}
.timeline__track::after {
  content: '';
  display: block;
  height: 100%;
  background: var(--yellow);
  width: 0;
  transition: width 1.2s ease;
}
.timeline__track.animated::after { width: 100%; }

.timeline__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.timeline__step.visible { opacity: 1; transform: none; }

.timeline__dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--black-card);
  border: 2px solid rgba(255,209,0,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: rgba(255,255,255,.4);
  z-index: 1;
  transition: all .4s ease;
  margin-bottom: 16px;
}
.timeline__step.visible .timeline__dot {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: 0 0 24px rgba(255,209,0,.4);
}
.timeline__content { text-align: center; padding: 0 8px; max-width: 160px; }
.timeline__icon { font-size: 24px; margin-bottom: 8px; }
.timeline__content h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.timeline__content p  { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* Counters */
.expertise__counters {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--black-card);
  border: 1px solid rgba(255,209,0,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
}
.expertise-counter {
  flex: 1;
  text-align: center;
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition);
}
.expertise-counter:last-child { border-right: none; }
.expertise-counter:hover { background: rgba(255,209,0,.04); }

.expertise-counter__num  { font-size: 2.8rem; font-weight: 700; color: var(--yellow); line-height: 1; }
.expertise-counter__unit { font-size: 1.6rem; font-weight: 700; color: var(--yellow); }
.expertise-counter__label { display: block; font-size: 13px; color: rgba(255,255,255,.5); margin-top: 6px; }

/* Trust badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14px; font-weight: 500;
  transition: border-color var(--transition), background var(--transition);
}
.trust-badge:hover { border-color: rgba(255,209,0,.3); background: rgba(255,209,0,.06); }
.trust-badge__icon { font-size: 18px; }

/* ── RÉALISATIONS ──────────────────────────────────── */
.realisations { background: var(--black); }

.gallery__filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px; justify-content: center;
}
.filter-btn {
  padding: 9px 20px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06);
  border: 1px solid transparent;
  transition: all var(--transition);
}
.filter-btn:hover   { color: var(--white); background: rgba(255,255,255,.1); }
.filter-btn--active { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }

.gallery__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #1e1c1c 0%, #2a2828 100%);
}
.gallery__placeholder svg   { width: 80px; height: 60px; opacity: .7; }
.gallery__placeholder span  { font-size: 12px; color: rgba(255,255,255,.4); text-align: center; padding: 0 16px; }

.gallery__overlay { display: none; }

/* ── VIDEO SECTION ─────────────────────────────────── */
.video-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--black-soft);
  text-align: center;
}
.video-section__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(255,209,0,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,209,0,.04) 0%, transparent 60%);
  pointer-events: none;
}
.video-section__content {
  position: relative; z-index: 1;
}
.video-section .section__title { margin-bottom: 12px; }
.video-section__sub {
  font-size: 16px; color: rgba(255,255,255,.55);
  max-width: 500px; margin: 0 auto 40px;
  line-height: 1.7;
}
.video-placeholder {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-placeholder:hover { transform: translateY(-4px); box-shadow: 0 24px 80px rgba(0,0,0,.5); }
.video-placeholder__thumb { position: relative; }
.video-placeholder__thumb svg { width: 100%; height: auto; display: block; }

.play-btn-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 32px rgba(255,209,0,.4);
}
.video-placeholder:hover .play-btn-circle {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 12px 48px rgba(255,209,0,.6);
}
.play-ripple {
  position: absolute;
  top: 50%; left: 50%;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255,209,0,.4);
  animation: ripple 2.2s ease-out infinite;
  pointer-events: none;
  z-index: 2;
}
.play-ripple--2 { animation-delay: 1.1s; }

/* ── AVIS CLIENTS ──────────────────────────────────── */
.avis { background: var(--black-soft); }
.avis__global { display: flex; justify-content: center; margin-bottom: 48px; }
.avis__score {
  text-align: center;
  background: var(--black-card);
  border: 1px solid rgba(255,209,0,.2);
  padding: 24px 48px;
  border-radius: var(--radius-lg);
}
.score__number { display: block; font-size: 3rem; font-weight: 700; color: var(--yellow); line-height: 1; }
.score__stars  { font-size: 20px; color: var(--yellow); margin: 6px 0; letter-spacing: 2px; }
.score__count  { font-size: 13px; color: rgba(255,255,255,.5); }

.testimonials__track  { overflow: hidden; margin-bottom: 32px; }
.testimonials__slider { display: flex; gap: 20px; transition: transform .4s ease; }

.testimonial {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition);
}
.testimonial:hover { border-color: rgba(255,209,0,.25); }
.testimonial__header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.testimonial__avatar {
  width: 42px; height: 42px;
  background: var(--yellow); color: var(--black);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.testimonial__name  { font-size: 15px; font-weight: 600; }
.testimonial__stars { color: var(--yellow); font-size: 13px; }
.testimonial__date  { margin-left: auto; font-size: 12px; color: rgba(255,255,255,.35); }
.testimonial__text  { font-size: 14px; color: rgba(255,255,255,.68); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial__vehicle {
  font-size: 12px; font-weight: 600; color: var(--yellow);
  background: rgba(255,209,0,.08); padding: 4px 10px; border-radius: var(--radius-full);
}

.testimonials__controls { display: flex; align-items: center; justify-content: center; gap: 20px; }
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.slider-btn:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: all var(--transition); cursor: pointer;
}
.slider-dot.active { background: var(--yellow); width: 20px; border-radius: 3px; }

/* ── WHY US ────────────────────────────────────────── */
.why-us { background: var(--black); }
.why-us__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-us__text p { font-size: 16px; color: rgba(255,255,255,.6); margin-bottom: 32px; line-height: 1.75; }
.why-us__text .section__title { margin-bottom: 20px; }
.why-us__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover { border-color: rgba(255,209,0,.25); transform: translateY(-2px); }
.why-card__icon { font-size: 28px; margin-bottom: 12px; }
.why-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.why-card p  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ── CONTACT ───────────────────────────────────────── */
.contact { background: var(--black-soft); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact__info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item__icon {
  width: 44px; height: 44px;
  background: rgba(255,209,0,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); flex-shrink: 0;
}
.contact-item__icon svg  { width: 20px; height: 20px; }
.contact-item__label {
  display: block; font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 2px;
}
.contact-item__value { display: block; font-size: 16px; font-weight: 600; transition: color var(--transition); }
a.contact-item__value:hover { color: var(--yellow); }
.contact-item__sub { display: block; font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }
.contact__cta-box {
  background: var(--black-card);
  border: 1px solid rgba(255,209,0,.15);
  border-radius: var(--radius-lg); padding: 24px; margin-top: 8px;
}
.contact__cta-box p { font-size: 15px; font-weight: 500; margin-bottom: 16px; color: rgba(255,255,255,.8); }

/* Form */
.contact__form {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg); padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
}
.form__row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.6); }
.form__input {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 13px 16px;
  font-size: 14px; color: var(--white); font-family: var(--font);
  transition: border-color var(--transition), background var(--transition);
  width: 100%; outline: none;
}
.form__input::placeholder { color: rgba(255,255,255,.25); }
.form__input:focus { border-color: var(--yellow); background: rgba(255,209,0,.04); }
.form__input.error { border-color: #ff4d4d; }
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
.form__select option { background: var(--black-card); }
.form__textarea  { resize: vertical; min-height: 100px; }
.form__error     { font-size: 12px; color: #ff4d4d; min-height: 16px; }
.btn--submit     { margin-top: 4px; }
.form__success {
  display: flex; align-items: center; gap: 10px;
  background: rgba(0,200,80,.1);
  border: 1px solid rgba(0,200,80,.25);
  color: #4ade80;
  padding: 14px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
}

/* ── FOOTER ────────────────────────────────────────── */
.footer { background: var(--black-soft); border-top: 1px solid rgba(255,255,255,.06); }
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px; padding: 64px 24px 48px;
}
.footer__logo  { height: 48px; width: auto; object-fit: contain; margin-bottom: 16px; }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,.5); font-style: italic; margin-bottom: 6px; }
.footer__zone    { font-size: 13px; color: rgba(255,255,255,.3); }
.footer__links h4, .footer__services h4, .footer__contact h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 20px;
}
.footer__links ul li, .footer__services ul li {
  margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,.55);
}
.footer__links ul li a:hover { color: var(--yellow); }
.footer__tel   { display: block; font-size: 18px; font-weight: 700; color: var(--yellow); margin-bottom: 8px; transition: color var(--transition); }
.footer__tel:hover { color: var(--yellow-dark); }
.footer__email { display: block; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 10px; word-break: break-all; }
.footer__email:hover { color: var(--yellow); }
.footer__contact p { font-size: 13px; color: rgba(255,255,255,.35); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 24px; }
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: rgba(255,255,255,.3);
}

/* ── WHATSAPP BUTTON ───────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 96px; right: 24px;
  z-index: 90;
  display: flex; align-items: center; gap: 0;
  background: #25D366;
  color: var(--white);
  padding: 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  transition: all .3s ease;
  overflow: hidden;
}
.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
  padding: 14px 20px;
  gap: 8px;
}
.whatsapp-btn__label {
  font-size: 14px; font-weight: 600;
  white-space: nowrap;
  max-width: 0; overflow: hidden;
  transition: max-width .3s ease;
}
.whatsapp-btn:hover .whatsapp-btn__label { max-width: 90px; }

/* ── FLOATING CTA ──────────────────────────────────── */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 89;
  width: 56px; height: 56px;
  background: var(--yellow); color: var(--black);
  border-radius: 50%;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(255,209,0,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-cta:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(255,209,0,.55); }

/* ── EXIT POPUP ────────────────────────────────────── */
.exit-popup {
  position: fixed; inset: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
}
.exit-popup[hidden] { display: none; }
.exit-popup__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.exit-popup__box {
  position: relative;
  background: var(--black-card);
  border: 1px solid rgba(255,209,0,.25);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 460px; width: 90%;
  text-align: center;
  animation: popupIn .4s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,209,0,.08);
}
.exit-popup__close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.55);
  font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.exit-popup__close:hover { background: rgba(255,255,255,.16); color: var(--white); }
.exit-popup__icon  { font-size: 44px; margin-bottom: 16px; }
.exit-popup__title { font-size: 1.6rem; font-weight: 700; margin-bottom: 12px; }
.exit-popup__text  { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: 24px; }
.exit-popup__stats {
  display: flex; justify-content: center; gap: 32px; margin-bottom: 28px;
}
.exit-popup__stats div  { text-align: center; }
.exit-popup__stats strong { display: block; font-size: 1.5rem; color: var(--yellow); font-weight: 700; }
.exit-popup__stats span   { font-size: 11px; color: rgba(255,255,255,.45); }
.exit-popup__cta   { font-size: 16px; }
.exit-popup__skip  {
  display: block; width: 100%; margin-top: 14px;
  font-size: 12px; color: rgba(255,255,255,.28);
  text-align: center; transition: color var(--transition);
}
.exit-popup__skip:hover { color: rgba(255,255,255,.55); }

/* ── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── HERO CAR VISUAL ───────────────────────────────── */
@keyframes car-float    { 0%,100%{transform:translateY(0)} 40%{transform:translateY(-11px) rotate(.25deg)} 70%{transform:translateY(-5px) rotate(-.15deg)} }
@keyframes scan-pass    { 0%{top:12%;opacity:0} 6%{opacity:1} 94%{opacity:.5} 100%{top:86%;opacity:0} }
@keyframes hud-blink    { 0%,88%,100%{opacity:1} 92%,96%{opacity:.25} }
@keyframes dot-pulse    { 0%,100%{transform:scale(1)} 50%{transform:scale(1.5)} }
@keyframes ground-breathe { 0%,100%{transform:scaleX(1);opacity:.45} 50%{transform:scaleX(1.12);opacity:.65} }
@keyframes car-fade-in  { from{opacity:0} to{opacity:.82} }
@keyframes mouse-glow   { from{opacity:0} to{opacity:1} }

.hero__visual {
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(calc(-50% + var(--car-y,0px)));
  width: 48%;
  max-width: 660px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  animation: car-fade-in 1.4s ease .6s forwards;
}
.hero__car-wrap {
  position: relative;
  animation: car-float 7s ease-in-out infinite;
}
.car-scan {
  position: absolute;
  left: 4%; right: 4%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,209,0,.9), transparent);
  top: 20%;
  z-index: 10;
  animation: scan-pass 3.8s ease-in-out infinite;
  filter: blur(.5px);
  pointer-events: none;
}
.car-ground-glow {
  position: absolute;
  bottom: -6px;
  left: 8%; right: 8%;
  height: 18px;
  background: radial-gradient(ellipse, rgba(255,209,0,.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: ground-breathe 3.5s ease-in-out infinite;
}
.car-svg {
  width: 100%; height: auto;
  display: block;
  filter: drop-shadow(0 0 24px rgba(255,209,0,.12));
}

/* HUD labels */
.hud-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
  background: rgba(20,18,18,.78);
  border: 1px solid rgba(255,209,0,.22);
  border-radius: 6px;
  padding: 5px 8px 5px 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
}
.hud-label--1 { top: 30%; left: 12%; animation: hud-blink 5.5s ease infinite; }
.hud-label--2 { top:  8%; left: 44%; animation: hud-blink 5.5s ease .8s infinite; }
.hud-label--3 { bottom: 20%; right:  9%; animation: hud-blink 5.5s ease 1.7s infinite; }

.hud-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #44ff88;
  border-radius: 50%;
  flex-shrink: 0;
  animation: dot-pulse 2s ease infinite;
}
.hud-dot--warn { background: #FFD100; animation-delay: .4s; }
.hud-dot--err  { background: #ff4d4d; }

.hud-value {
  font-family: 'Space Grotesk', monospace;
  font-size: 9.5px; font-weight: 700;
  padding: 2px 6px; border-radius: 4px;
  letter-spacing: .04em;
}
.hud-value.ok   { background: rgba(68,255,136,.12); color: #44ff88; border: 1px solid rgba(68,255,136,.28); }
.hud-value.warn { background: rgba(255,209,0,.1);  color: #FFD100; border: 1px solid rgba(255,209,0,.28); }
.hud-value.err  { background: rgba(255,77,77,.1);  color: #ff7777; border: 1px solid rgba(255,77,77,.28); }

/* Hero mouse glow */
.hero__mouse-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity .4s ease;
}
.hero__mouse-glow.active { opacity: 1; }

/* ── BRAND MARQUEE ─────────────────────────────────── */
@keyframes marquee-fwd { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes marquee-rev { from{transform:translateX(-50%)} to{transform:translateX(0)} }

.marquee-section {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.marquee-row {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.marquee-track {
  display: inline-flex;
  flex-shrink: 0;
  animation: marquee-fwd 30s linear infinite;
  will-change: transform;
}
.marquee-row--reverse .marquee-track { animation: marquee-rev 26s linear infinite; }
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 24px;
  white-space: nowrap;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  border-right: 1px solid rgba(255,255,255,.06);
  transition: color .2s ease;
  cursor: default;
}
.marquee-item:hover { color: rgba(255,209,0,.75); }
.marquee-item--brand {
  font-size: 12.5px; font-weight: 700;
  color: rgba(255,255,255,.18);
  letter-spacing: .08em;
}
.marquee-item--brand:hover { color: rgba(255,255,255,.5); }
.brand-logo { height: 26px; width: auto; display: block; flex-shrink: 0; opacity: .75; transition: opacity .2s; }
.marquee-item--brand:hover .brand-logo { opacity: 1; }
.brand-badge {
  display: inline-flex; align-items: center;
  padding: 3px 9px; border: 1px solid #FFD100; border-radius: 4px;
  color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .6px;
  background: #111; white-space: nowrap; flex-shrink: 0;
  opacity: .75; transition: opacity .2s;
}
.marquee-item--brand:hover .brand-badge { opacity: 1; }
.marquee-sep {
  color: rgba(255,209,0,.4);
  margin: 0 2px;
}

/* ── MID-PAGE CTA ──────────────────────────────────── */
.mid-cta {
  background: linear-gradient(135deg, #141214 0%, #1c1a0e 50%, #141214 100%);
  border-top: 1px solid rgba(255,209,0,.12);
  border-bottom: 1px solid rgba(255,209,0,.12);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 90% at 50% 50%, rgba(255,209,0,.05) 0%, transparent 65%);
  pointer-events: none;
}
.mid-cta::after {
  content: '';
  position: absolute;
  top: -1px; left: 50%; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform: translateX(-50%);
  width: 200px;
}
.mid-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}
.mid-cta__eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,209,0,.65);
  margin-bottom: 8px;
}
.mid-cta__title {
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  font-weight: 700; line-height: 1.2;
}
.mid-cta__right {
  display: flex; gap: 12px; align-items: center; flex-shrink: 0;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__visual { width: 46%; opacity: 0; animation: car-fade-in 1.4s ease .8s forwards; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: span 2; }
  .why-us__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .timeline { gap: 0; }
  .timeline__content { max-width: 130px; }
  .timeline__content p { display: none; }
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial { flex: 0 0 calc(50% - 10px); }
  .expertise__counters { flex-wrap: wrap; }
  .expertise-counter { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,.06); }
}

@media (max-width: 768px) {
  :root { --trust-h: 36px; --nav-h: 100px; }

  .trust-bar__inner { gap: 8px; font-size: 11px; }
  .trust-bar__sep   { display: none; }
  .trust-bar__item:nth-child(n+4) { display: none; }

  .nav__menu {
    position: fixed;
    top: calc(var(--trust-h) + var(--nav-h));
    left: 0; right: 0;
    background: rgba(26,23,24,.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px 24px 32px; gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: none; z-index: 99;
  }
  .nav__menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: 12px 16px; font-size: 16px; width: 100%; }
  .nav__cta  { margin: 8px 0 0; width: 100%; justify-content: center; }
  .nav__burger { display: flex; }

  .hero__visual  { display: none; }
  .hero__mouse-glow { display: none; }
  .hero__content { max-width: 100%; }
  .hero__stats   { gap: 20px; }
  .stat__number  { font-size: 2rem; }
  .marquee-section { gap: 6px; }
  .mid-cta__inner { flex-direction: column; text-align: center; gap: 24px; }
  .mid-cta__right { justify-content: center; flex-wrap: wrap; }

  .section { padding: 72px 0; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: span 1; flex-direction: column; }
  .service-card--wide .service-card__icon { margin-bottom: 16px; }

  .ba-slider { height: 260px; }

  .timeline { flex-direction: column; gap: 20px; padding: 20px 0; }
  .timeline__track { display: none; }
  .timeline__step { flex-direction: row; align-items: flex-start; gap: 16px; }
  .timeline__dot  { flex-shrink: 0; margin-bottom: 0; }
  .timeline__content { text-align: left; max-width: none; padding: 0; }
  .timeline__content p { display: block; }

  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item--tall { grid-row: span 1; }
  .testimonial { flex: 0 0 100%; }

  .why-us__cards { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 20px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .floating-cta { display: flex; }

  .exit-popup__box { padding: 36px 24px; }
  .exit-popup__stats { gap: 16px; }

  .whatsapp-btn { bottom: 88px; }
}

@media (max-width: 480px) {
  .gallery__grid  { grid-template-columns: 1fr; }
  .hero__actions  { flex-direction: column; }
  .btn--lg        { width: 100%; justify-content: center; }
  .hero__stats    { flex-direction: column; gap: 16px; }
  .stat__divider  { width: 40px; height: 1px; }
  .trust-badges   { gap: 8px; }
  .trust-badge    { font-size: 12px; padding: 8px 14px; }
  .expertise__counters { flex-direction: column; }
  .expertise-counter   { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
}

/* ── REEL (défilement photos) ───────────────────────── */
.reel {
  overflow: hidden;
  padding: 8px 0 48px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image:         linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.reel__track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: reel-scroll 36s linear infinite;
}
.reel__track:hover { animation-play-state: paused; }
@keyframes reel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.reel__photo {
  height: 260px;
  width: auto;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .reel__photo { height: 180px; }
}

/* ── GALLERY v2 — vraies photos ─────────────────────── */
.gallery__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery__item:hover .gallery__img { transform: scale(1.06); }

/* ── LIGHTBOX ────────────────────────────────────────── */
.gallery__lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.93);
  align-items: center; justify-content: center;
}
.gallery__lightbox[hidden]      { display: none; }
.gallery__lightbox:not([hidden]) { display: flex; animation: lb-in .18s ease; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }

.lightbox__figure {
  display: flex; flex-direction: column; align-items: center;
  max-width: 90vw; max-height: 90dvh; gap: 14px;
}
.lightbox__img {
  max-width: 88vw; max-height: 78dvh;
  object-fit: contain; border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6); display: block;
}
.lightbox__caption {
  font-size: 13px; color: rgba(255,255,255,.55);
  text-align: center; max-width: 600px; line-height: 1.5;
}
.lightbox__close,
.lightbox__nav {
  position: fixed; background: rgba(255,255,255,.08); border: none;
  color: #fff; cursor: pointer; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox__close:hover,
.lightbox__nav:hover       { background: rgba(255,255,255,.22); }
.lightbox__close           { top: 18px; right: 22px; width: 44px; height: 44px; font-size: 20px; }
.lightbox__nav             { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 22px; }
.lightbox__nav--prev       { left: 16px; }
.lightbox__nav--next       { right: 16px; }
.lightbox__nav:disabled    { opacity: .2; pointer-events: none; }
.lightbox__counter {
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-size: 12px; color: rgba(255,255,255,.35); letter-spacing: .05em;
}
@media (max-width: 600px) {
  .lightbox__nav { display: none; }
  .lightbox__img { max-width: 94vw; max-height: 70dvh; }
}
