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

:root {
  /* Nuancier Noir Profond & Luxe (Anti-IA) */
  --black:   #060708; /* Noir obsidienne profond */
  --dark:    #0b0c0e; /* Noir riche de fonderie */
  --dark2:   #121316; /* Anthracite très sombre */
  --card:    #1a1b1f; /* Gris graphite solide pour les cartes */
  --border:  rgba(255, 255, 255, .05);
  --border-active: rgba(59, 130, 246, 0.35); /* Bordure champagne actif */
  
  /* Palette de luxe métallique */
  --gold:    #b39257; /* Or profond poli */
  --gold-light: #c5a880; /* Or champagne doux */
  --blue:    #1d4ed8; /* Bleu logo — boutons */
  --blue-light: #3b82f6; /* Bleu logo clair — dégradé boutons */
  --cyan:    var(--blue-light);
  --silver:  #f8fafc;
  --silver2: #cbd5e1;
  --white:   #ffffff;
  --muted:   rgba(255, 255, 255, .55);
  --accent:  rgba(59, 130, 246, 0.05); /* Fond champagne doré ultra-luxe */
  --green:   #10b981;
  
  /* Effets & Dimensions */
  --radius:  12px; /* Coins plus nets et professionnels (style éditorial/luxe) */
  --shadow:  0 30px 60px rgba(0, 0, 0, .8), 0 0 50px rgba(59, 130, 246, 0.03);
  --glow:    0 0 35px rgba(29, 78, 216, 0.45);
  --nav-h:   230px; /* Hauteur de navbar généreuse pour un logo très visible et prestigieux */
  --font:    'Inter', sans-serif;
  --header:  'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { 
  font-family: var(--header); 
  line-height: 1.2; 
  font-weight: 700; 
  letter-spacing: -0.01em; 
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }

em { 
  font-style: normal; 
  color: var(--cyan); 
  background: linear-gradient(135deg, var(--white) 30%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.label {
  font-family: var(--header);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  display: block;
}
.label--light { color: var(--white); opacity: 0.9; }

.section { padding: 100px 0; }
.section--dark { background: var(--dark); }
.section--accent { 
  background: linear-gradient(135deg, var(--dark2) 0%, rgba(59, 130, 246, 0.04) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__title {
  margin-bottom: 16px;
}
.section__sub {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 56px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  font-family: var(--header);
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn--lg { padding: 18px 36px; font-size: 1rem; }

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(29, 78, 216, 0.28);
}
.btn--primary:hover { 
  transform: translateY(-2px); 
  box-shadow: var(--glow);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: var(--white);
}
.btn--outline:hover { 
  border-color: var(--cyan); 
  color: var(--cyan);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--black);
  font-weight: 700;
}
.btn--white:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 12px 30px rgba(255, 255, 255, .15); 
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(29, 78, 216, 0.08);
  border: 1px solid rgba(29, 78, 216, 0.28);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: .88rem;
  font-weight: 600;
  font-family: var(--header);
  color: var(--blue-light);
  margin-top: 20px;
}

.link {
  color: var(--cyan);
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
}
.link:hover { 
  color: var(--white);
  text-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all .3s ease;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav.scrolled {
  background: rgba(3, 4, 6, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 135px; /* Hauteur ajustée lors du scroll */
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  height: 200px; /* Logo très grand et prestigieux pour marquer immédiatement l'esprit du client */
  width: auto;
  transition: height .3s ease; /* Transition fluide */
}
.nav.scrolled .nav__logo {
  height: 115px; /* Se réduit élégamment lors du scroll tout en restant parfaitement visible */
}
.nav__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 40px;
}
.nav__links a {
  font-family: var(--header);
  font-size: .9rem;
  color: var(--muted);
  transition: color .2s;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--cyan);
  transition: width .22s ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: rgba(3, 4, 6, .98);
  border-top: 1px solid var(--border);
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 99;
  transition: top .3s ease;
}
.nav.scrolled .nav__mobile {
  top: 135px;
}
.nav__mobile a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
  font-family: var(--header);
  font-size: .95rem;
}
.nav__mobile a:last-child { border-bottom: none; margin-top: 8px; }
.nav__mobile.open { display: flex; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    url('https://images.unsplash.com/photo-1672644087841-7c28b3e501ee?w=1800&q=80') center/cover no-repeat;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 4, 6, .96) 0%,
    rgba(3, 4, 6, .8) 60%,
    rgba(3, 4, 6, .5) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--header);
  letter-spacing: .06em;
  color: var(--cyan);
  margin-bottom: 28px;
}
.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(59, 130, 246, .4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(59, 130, 246, .4); }
  70%  { box-shadow: 0 0 0 8px rgba(59, 130, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}
.hero__title {
  margin-bottom: 24px;
  letter-spacing: -.02em;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  line-height: 1.2;
  width: 100%;
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 40px;
  text-align: center;
}

.hero__brands {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  font-family: var(--header);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__brands span {
  color: var(--white);
}
.hero__brands-sep {
  color: var(--muted) !important;
  font-weight: 300 !important;
  font-size: 1.5rem !important;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  backdrop-filter: blur(10px);
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 20px 32px;
}
.stat__num {
  font-family: var(--header);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.stat__label {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat__sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero__scroll {
  position: absolute;
  bottom: 40px; right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero__scroll span {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  font-family: var(--header);
  font-weight: 600;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}

/* ─── PROMISE ─── */
.promise__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}
.promise__text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-top: 8px;
  line-height: 1.4;
}
.promise__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.promise__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
}
.promise__card:hover { 
  border-color: var(--border-active); 
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.05);
}
.promise__icon { 
  font-size: 1.6rem; 
  flex-shrink: 0; 
  margin-top: 2px;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.2));
}
.promise__card h3 { font-size: 1rem; margin-bottom: 4px; }
.promise__card p { color: var(--muted); font-size: .9rem; }

/* ─── STEPS ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.steps--4 {
  grid-template-columns: repeat(4, 1fr);
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
}
.step:hover { 
  border-color: var(--border-active); 
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step__num {
  font-family: var(--header);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(59, 130, 246, 0.12);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.step h3 { margin-bottom: 10px; font-size: 1rem; }
.step p { color: var(--muted); font-size: .88rem; line-height: 1.6; }

/* ─── VEHICLES ─── */
.cars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}
.car__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.car__card:hover {
  border-color: var(--border-active);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.car__img {
  height: 220px;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.car__card:hover .car__img {
  transform: scale(1.03);
}
.car__img--macan { background-image: url('macan.jpg'); }
.car__img--ix3   { background-image: url('ix3.jpg'); }
.car__img--glc   { background-image: url('glc.jpg'); }
.car__img--glb   { background-image: url('glb.jpg'); }
.car__img--i4    { background-image: url('i4.png?v=1'); }
.car__img--taycan{ background-image: url('taycan.png?v=1'); }
.car__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 4, 6, .75) 0%, transparent 60%);
}
.car__badge {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 1;
  background: rgba(16, 185, 129, .15);
  border: 1px solid rgba(16, 185, 129, .4);
  color: var(--green);
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--header);
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.car__info { padding: 24px 28px; position: relative; z-index: 2; background: var(--card); }
.car__info h3 { margin-bottom: 6px; font-size: 1.1rem; }
.car__info p { color: var(--muted); font-size: .88rem; margin-bottom: 16px; }
.vehicles__note {
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  font-style: italic;
}

/* ─── WHY ─── */
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
}
.why__item:hover { 
  border-color: var(--border-active); 
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.05);
}
.why__icon { 
  font-size: 2rem; 
  margin-bottom: 16px; 
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.2));
}
.why__item h3 { font-size: .95rem; margin-bottom: 10px; }
.why__item p { color: var(--muted); font-size: .86rem; line-height: 1.6; }

/* ─── PROCESS ─── */
.process__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}
.process__item {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
}
.process__item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: -32px;
  width: 2px;
  background: var(--border);
}
.process__dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  font-family: var(--header);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(29, 78, 216, .12);
}
.process__content {
  padding-bottom: 48px;
  flex: 1;
}
.process__content h3 { margin-bottom: 8px; font-size: 1.05rem; }
.process__content p { color: var(--muted); font-size: .9rem; }

/* ─── FEES ─── */
.fees__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.fees__inner h2 { margin-bottom: 16px; }
.fees__inner p { color: rgba(255, 255, 255, .75); max-width: 480px; font-size: .95rem; }
.fees__cta { flex-shrink: 0; }

/* ─── CTA FINAL ─── */
.cta-final__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-final__inner h2 { margin-bottom: 16px; }
.cta-final__inner p { color: var(--muted); margin-bottom: 36px; font-size: 1.05rem; }

/* ─── FOOTER ─── */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__brand .nav__logo {
  height: 260px; /* Format très grand et qualitatif dans le footer */
  width: auto;
}
.footer__brand .nav__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.footer__brand p {
  color: var(--muted);
  font-size: .88rem;
  max-width: 220px;
  line-height: 1.6;
}
.footer__links, .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links h4, .footer__contact h4 {
  font-family: var(--header);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
  font-weight: 700;
}
.footer__links a, .footer__contact a {
  color: var(--muted);
  font-size: .88rem;
  transition: color .2s;
}
.footer__links a:hover, .footer__contact a:hover { color: var(--white); }
.footer__contact p { color: var(--muted); font-size: .8rem; margin-top: 4px; font-style: italic; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}
.footer__bottom p { color: var(--muted); font-size: .8rem; }

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 270px 0 90px; /* Ajusté pour correspondre à la nouvelle hauteur du logo et de la navigation */
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header--services {
  background: linear-gradient(
    to bottom,
    rgba(3, 4, 6, 0.75) 0%,
    rgba(3, 4, 6, 0.9) 100%
  ), url('services-bg.png?v=3') center 60%/cover no-repeat;
}
.page-header--about {
  background: linear-gradient(
    to bottom,
    rgba(3, 4, 6, 0.75) 0%,
    rgba(3, 4, 6, 0.9) 100%
  ), url('about-bg.png?v=3') center 60%/cover no-repeat;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 2px;
  background: linear-gradient(to right, transparent, var(--cyan), transparent);
}
.page-header h1 { margin-bottom: 16px; }
.page-header p { color: var(--muted); font-size: 1.1rem; margin: 0 auto; }

/* ─── ABOUT ─── */
.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro__img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  border: 1px solid var(--border);
}
.about-intro__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-intro__text .label { margin-bottom: 12px; }
.about-intro__text h2 { margin-bottom: 20px; }
.about-intro__text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: .97rem;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .25s ease;
}
.value__card:hover {
  border-color: var(--border-active);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.04);
}
.value__card .icon { 
  font-size: 2rem; 
  margin-bottom: 16px; 
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.2));
}
.value__card h3 { margin-bottom: 10px; font-size: 1rem; }
.value__card p { color: var(--muted); font-size: .88rem; line-height: 1.6; }

/* ─── SERVICES ─── */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block--reverse { direction: rtl; }
.service-block--reverse > * { direction: ltr; }
.service-block__text .label { margin-bottom: 12px; }
.service-block__text h2 { margin-bottom: 16px; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.service-block__text p { color: var(--muted); margin-bottom: 20px; font-size: .97rem; }
.checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: rgba(255, 255, 255, 0.85);
}
.checklist li::before {
  content: '✓';
  color: var(--cyan);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-block__visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-block__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: transform .5s ease;
}
.service-block:hover .service-block__visual img {
  transform: scale(1.02);
}

/* ─── IMMAT ─── */
.immat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.immat__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
}
.immat__card:hover { 
  border-color: var(--border-active); 
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.05);
}
.immat__card .icon { 
  font-size: 2rem; 
  margin-bottom: 16px; 
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.2));
}
.immat__card h3 { margin-bottom: 10px; font-size: 1rem; }
.immat__card p { color: var(--muted); font-size: .88rem; line-height: 1.6; }

/* ─── CONTACT ─── */
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact__form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
}
.contact__form h2 { margin-bottom: 8px; }
.contact__form > p { color: var(--muted); margin-bottom: 36px; font-size: .95rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form__group label { font-size: .82rem; font-weight: 600; color: rgba(255, 255, 255, 0.7); letter-spacing: .04em; }
.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: .92rem;
  color: var(--white);
  font-family: var(--font);
  transition: all .2s ease;
  outline: none;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { 
  border-color: var(--cyan); 
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.15);
}
.form__group textarea { resize: vertical; min-height: 100px; }
.form__group select option { background: var(--dark2); }
.form__submit { width: 100%; justify-content: center; margin-top: 8px; }
.contact__info { display: flex; flex-direction: column; gap: 20px; }
.contact__info h2 { margin-bottom: 8px; }
.contact__info > p { color: var(--muted); margin-bottom: 20px; font-size: .95rem; }
.info__card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .25s;
}
.info__card:hover { border-color: var(--border-active); }
.info__icon { font-size: 1.5rem; flex-shrink: 0; filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.25)); }
.info__card h3 { font-size: .95rem; margin-bottom: 4px; }
.info__card p, .info__card a { color: var(--muted); font-size: .88rem; }
.info__card a:hover { color: var(--cyan); }
.contact__note {
  background: rgba(59, 130, 246, .04);
  border: 1px solid rgba(59, 130, 246, .15);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
}

/* ─── FORM SUCCESS ─── */
.form__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form__success .icon { font-size: 3rem; margin-bottom: 16px; filter: drop-shadow(0 0 8px var(--cyan)); }
.form__success h3 { margin-bottom: 8px; }
.form__success p { color: var(--muted); font-size: .92rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps--4 { grid-template-columns: repeat(2, 1fr); }
  .cars__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-intro__grid { grid-template-columns: 1fr; }
  .about-intro__img { max-width: 500px; }
}

@media (max-width: 768px) {
  .nav__links, .nav .nav__inner > .btn { display: none; }
  .nav__burger { display: flex; }
  .nav__inner { gap: 16px; }
  .promise__grid { grid-template-columns: 1fr; gap: 40px; }
  .cars__grid { grid-template-columns: 1fr; }
  .steps, .steps--4 { grid-template-columns: 1fr; }
  .fees__inner { flex-direction: column; gap: 32px; }
  .hero__scroll { display: none; }
  .hero__stats {
    flex-direction: column;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .stat__sep {
    display: none;
  }
  .stat {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
  }
  .stat:last-child {
    border-bottom: none;
  }
  .contact__grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block--reverse { direction: ltr; }
  .immat__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .contact__form { padding: 32px 24px; }
  .footer__inner { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

/* ─── CARROUSEL VÉHICULES LIVRÉS ─── */
.delivered {
  overflow: hidden;
  background: linear-gradient(180deg, var(--black) 0%, var(--dark2) 50%, var(--black) 100%);
  position: relative;
}
.delivered::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 2px;
  background: linear-gradient(to right, transparent, rgba(59,130,246,.5), transparent);
}

.delivered__wrapper {
  display: flex;
  align-items: center;
  margin-top: 56px;
  position: relative;
}

.delivered__viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  border-radius: 16px;
}

.delivered__track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 12px 6px 24px;
}

/* ── Carte véhicule livré ── */
.deliv__card {
  flex: 0 0 calc(50% - 14px);
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s ease, border-color .35s ease;
  position: relative;
}
.deliv__card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 40px rgba(59,130,246,.1);
  border-color: rgba(59,130,246,.35);
}

/* Photo */
.deliv__img-wrap {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #0d0e10;
}
.deliv__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,27,31,.95) 0%, rgba(26,27,31,.2) 50%, transparent 100%);
  z-index: 1;
}
.deliv__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}
.deliv__card:hover .deliv__img { transform: scale(1.08); }

/* Nom positionné sur la photo */
.deliv__name-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 20px 28px 0;
}
.deliv__name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0;
  letter-spacing: -0.01em;
  color: var(--white);
}

/* Badge "✓ Livré" */
.deliv__badge {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
  background: rgba(16,185,129,.18);
  border: 1px solid rgba(16,185,129,.55);
  color: #34d399;
  font-size: .72rem;
  font-weight: 800;
  font-family: var(--header);
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 50px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 16px rgba(16,185,129,.15);
}

/* Corps */
.deliv__body { padding: 22px 28px 28px; }

/* Bloc prix */
.deliv__prices {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}
.deliv__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}
.deliv__price-row--fr {
  opacity: .7;
}
.deliv__price-row--epc {
  background: linear-gradient(135deg, rgba(29,78,216,.12) 0%, rgba(59,130,246,.08) 100%);
  border-top: 1px solid rgba(59,130,246,.15);
  padding: 16px 20px;
}
.deliv__price-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.deliv__price-row--epc .deliv__price-label {
  color: var(--blue-light);
  opacity: .8;
}
.deliv__price-val {
  font-size: 1rem;
  font-weight: 700;
  color: var(--silver2);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,.25);
}
.deliv__price-val--epc {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  text-shadow: 0 0 20px rgba(59,130,246,.4);
}
.deliv__divider { height: 1px; background: rgba(255,255,255,.05); }

/* Économie — badge pleine largeur premium */
.deliv__saving {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, rgba(16,185,129,.12) 0%, rgba(16,185,129,.06) 100%);
  border: 1px solid rgba(16,185,129,.3);
  border-radius: 12px;
  padding: 13px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: #a7f3d0;
  letter-spacing: .01em;
}
.deliv__saving svg { stroke: #34d399; flex-shrink: 0; }
.deliv__saving strong {
  color: #4ade80;
  font-size: 1.05rem;
  font-weight: 800;
  margin-left: auto;
  letter-spacing: -0.01em;
}

/* ── Flèches ── */
.delivered__arrow {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}
.delivered__arrow:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-color: transparent;
  box-shadow: 0 0 24px rgba(29,78,216,.5), 0 8px 20px rgba(0,0,0,.4);
  transform: scale(1.08);
}
.delivered__arrow--prev { margin: 0 20px 0 0; }
.delivered__arrow--next { margin: 0 0 0 20px; }

/* ── Dots ── */
.delivered__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
.delivered__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: none;
  cursor: pointer;
  transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}
.delivered__dot.active {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  width: 32px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(59,130,246,.6);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .deliv__card { flex: 0 0 calc(60% - 14px); }
  .deliv__img-wrap { height: 260px; }
}
@media (max-width: 768px) {
  .deliv__card { flex: 0 0 calc(80% - 14px); }
  .deliv__img-wrap { height: 240px; }
  .delivered__arrow--prev { margin-right: 12px; }
  .delivered__arrow--next { margin-left: 12px; }
}
@media (max-width: 480px) {
  .deliv__card { flex: 0 0 88%; }
  .deliv__img-wrap { height: 200px; }
  .delivered__arrow { width: 42px; height: 42px; }
}

