/* ═══════════════════════════════════════════════════════
   ELECTRIC PREMIUM CARS — Design System
   Version 1.0 — Cabinet de courtage spécialisé
   Palette : Blanc · Bleu profond · Anthracite · Gris clair
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Instrument+Sans:wght@400;500;600&display=swap');

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

/* ─── TOKENS ─── */
:root {
  /* Palette */
  --white: #ffffff;
  --off-white: #f8f8f6;
  --grey-light: #f0f0ee;
  --grey-mid: #d4d4d0;
  --grey-text: #4b5563;
  --anthracite: #1e1e1e;
  --dark: #111111;
  --blue-deep: #785828;
  --blue: #96723F;
  --blue-elec: #B8935A;
  --blue-subtle: rgba(184, 147, 90, 0.08);
  --blue-border: rgba(184, 147, 90, 0.25);

  /* Typography */
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;

  /* Spacing */
  --nav-h: 140px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* ─── BASE ─── */
html {
  scroll-behavior: smooth;
  font-size: 17.5px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--anthracite);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── CONTAINER ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--anthracite);
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--grey-text);
}

p + p {
  margin-top: 20px;
}

.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-elec);
  margin-bottom: 16px;
  display: block;
}

.label--neutral {
  color: var(--grey-text);
}

/* ─── SECTIONS ─── */
.section {
  padding: 120px 0;
}

.section--sm {
  padding: 80px 0;
}

.section--grey {
  background: var(--off-white);
}

.section--dark {
  background: var(--dark);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark .label {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.14em;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.82);
}

.section__head {
  margin-bottom: 72px;
}

.section__head--center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 72px;
}

.section__title {
  margin-bottom: 20px;
}

.section__sub {
  font-size: 1.15rem;
  max-width: 620px;
  line-height: 1.85;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: all 0.24s var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--primary:hover {
  background: #B08D57;
  border-color: #B08D57;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(176, 141, 87, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--anthracite);
  border-color: rgba(30, 30, 30, 0.2);
}

.btn--outline:hover {
  background: #B08D57;
  border-color: #B08D57;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(176, 141, 87, 0.35);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn--outline-white:hover {
  background: #B08D57;
  border-color: #B08D57;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(176, 141, 87, 0.35);
}

.btn--blue {
  background: #B08D57;
  color: var(--white);
  border-color: #B08D57;
}

.btn--blue:hover {
  background: #8A6D3F;
  border-color: #8A6D3F;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(176, 141, 87, 0.35);
}

.btn--lg {
  padding: 17px 36px;
  font-size: 0.95rem;
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), padding 0.3s var(--ease);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 20, 29, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav.nav--scrolled {
  background: rgba(7, 20, 29, 0.96);
  border-bottom-color: rgba(167, 175, 178, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 10px 0 10px;
}

.nav__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto;
}

.nav__logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: all 0.35s var(--ease);
}

.nav.nav--scrolled .nav__logo-img {
  height: 48px;
}

/* Logo blanc visible sur le fond bleu nuit */
.nav__logo-dark {
  display: block !important;
  opacity: 1 !important;
}

.nav__logo-light {
  display: none !important;
  opacity: 0 !important;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.5vw, 48px);
  width: 100%;
  margin: 0 auto;
  padding: 4px 0 0;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(245, 243, 238, 0.9);
  transition: all 0.25s var(--ease);
  letter-spacing: 0.02em;
  padding: 4px 0;
  position: relative;
}

.nav__links a:hover,
.nav--scrolled .nav__links a:hover {
  color: #B08D57 !important;
}

.nav__links a.active,
.nav--scrolled .nav__links a.active {
  color: #ffffff !important;
  font-weight: 600;
  opacity: 1 !important;
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-glacier);
  border-radius: 2px;
}

.nav__cta {
  margin-left: 32px;
}

.nav__cta.btn--primary {
  background: var(--white);
  color: var(--anthracite);
  border-color: var(--white);
}

.nav__cta.btn--primary:hover {
  background: var(--off-white);
  border-color: var(--off-white);
  box-shadow: none;
}

.nav--scrolled .nav__cta.btn--primary {
  background: var(--anthracite);
  color: var(--white);
  border-color: var(--anthracite);
}

.nav--scrolled .nav__cta.btn--primary:hover {
  background: var(--dark);
  border-color: var(--dark);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.15);
}

/* Mobile burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}

.nav--scrolled .nav__burger span {
  background: var(--anthracite);
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px 40px 32px;
  border-bottom: 1px solid var(--grey-light);
  flex-direction: column;
  gap: 0;
  z-index: 999;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--anthracite);
  padding: 14px 0;
  border-bottom: 1px solid var(--grey-light);
  letter-spacing: 0.01em;
}

.nav__mobile a:last-child {
  border-bottom: none;
}

/* ─── HERO ─── */
.hero {
  min-height: 88svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

@media (max-width: 768px) {
  .hero { min-height: 100svh; }
}

.hero__bg-wrapper {
  position: absolute;
  inset: 0;
  transform-origin: center;
  will-change: transform;
  overflow: hidden;
}

.hero__bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(10, 10, 10, 0.5) 50%,
      rgba(10, 10, 10, 0.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 40px) 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px 14px 6px 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-elec);
}

.hero__badge span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero__title {
  color: var(--white);
  max-width: 100%;
  margin-bottom: 28px;
}

.hero__sub {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 850px;
  line-height: 1.5;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
}

.hero__trust-item svg {
  color: var(--blue-elec);
  flex-shrink: 0;
}

/* ─── Hero Proof Bar ─── */
.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero__proof-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.hero__proof-legend {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: none;
}

.hero__proof-sep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.hero__scroll-text {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* ─── INTRO ─── */
.intro {
  padding: 100px 0;
  background: var(--white);
}

.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 24px;
  max-width: 420px;
}

.intro__text p {
  font-size: 1rem;
  line-height: 1.85;
  max-width: 400px;
}

.intro__visuals {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  height: 380px;
}

.intro__card {
  flex: 1;
  min-width: 0;
  position: relative;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.intro__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.intro__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s var(--ease);
}

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

.intro__card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.35) 65%, transparent 100%);
}

.intro__card-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2px;
}

.intro__card-role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

/* ─── METHODE (4 CARDS) ─── */
.methode__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey-light);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.methode__card {
  background: var(--white);
  padding: 44px 36px;
  transition: background 0.2s var(--ease);
}

.methode__card:hover {
  background: var(--off-white);
}

.methode__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--blue-elec);
}

.methode__num {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--grey-mid);
  margin-bottom: 12px;
}

.methode__card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--anthracite);
}

.methode__card p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--grey-text);
}

/* ─── BENEFICES ─── */
.benefices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
}

.benefice__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--grey-light);
}

.benefice__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 300;
  color: var(--grey-mid);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  letter-spacing: -0.04em;
}

.benefice__text h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--anthracite);
}

.benefice__text p {
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ─── ACQUISITIONS ─── */
.acquisitions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.acq__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
}

.acq__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.acq__img {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: var(--grey-light);
}

.acq__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.acq__card:hover .acq__img img {
  transform: scale(1.03);
}

.acq__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(11, 18, 32, 0.88);
  border: 1px solid var(--blue-border);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue-elec);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.acq__body {
  padding: 24px 28px 28px;
}

.acq__model {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--anthracite);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.acq__meta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--grey-text);
  margin-top: -14px;
  margin-bottom: 20px;
}

.acq__prices {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.acq__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.acq__price-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--grey-text);
  letter-spacing: 0.02em;
}

.acq__price-val {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--anthracite);
}

.acq__price-val--strike {
  text-decoration: line-through;
  color: var(--grey-text);
  font-weight: 400;
}

.acq__divider {
  height: 1px;
  background: var(--grey-light);
  margin: 4px 0;
}

.acq__saving {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-subtle);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.acq__saving-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--grey-text);
}

.acq__saving-amount {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-elec);
  margin-left: auto;
}

.acq__delay {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--grey-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── TIMELINE ─── */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--grey-light);
}

.timeline__item {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  padding-bottom: 52px;
  position: relative;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__step {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey-text);
  transition: all 0.2s var(--ease);
}

.timeline__item:hover .timeline__step {
  border-color: var(--blue-elec);
  color: var(--blue-elec);
  background: var(--blue-subtle);
}

.timeline__content {
  padding-top: 8px;
  flex: 1;
}

.timeline__content h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--anthracite);
}

.timeline__content p {
  font-size: 0.875rem;
  line-height: 1.75;
}

/* ─── SECURITE ─── */
.securite__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.securite__item {
  text-align: center;
  padding: 40px 24px;
}

.securite__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--blue-elec);
}

.securite__item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--blue-elec);
}

.securite__item p {
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ─── EMOTION ─── */
.emotion {
  position: relative;
  height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emotion__bg {
  position: absolute;
  inset: -30px;
  background-image: url('emotion.jpg');
  background-size: cover;
  background-position: center 82%;
  transform: scale(1.1);
}

.emotion__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.52);
}

.emotion__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1050px;
  padding: 0 24px;
  width: 100%;
}

.emotion__content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 750px;
  margin: 0 auto;
}

.emotion__badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.emotion__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: rgba(11, 18, 32, 0.75);
  border: 1px solid rgba(176, 141, 87, 0.4);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.emotion__badge:hover {
  transform: translateY(-4px);
  background: rgba(11, 18, 32, 0.9);
  border-color: #D4AF37;
  box-shadow: 0 12px 32px rgba(176, 141, 87, 0.35);
}

.emotion__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: #D4AF37;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.emotion__badge span {
  font-size: 1rem;
  font-weight: 600;
  color: #F5E0B8;
  line-height: 1.35;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* ─── FORM ─── */
.form-section {
  background: var(--off-white);
}

.form__inner {
  max-width: 640px;
  margin: 0 auto;
}

.form__head {
  text-align: center;
  margin-bottom: 52px;
}

.form__head h2 {
  margin-bottom: 16px;
}

.form__head p {
  font-size: 0.95rem;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--anthracite);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form__input,
.form__select,
.form__textarea {
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--anthracite);
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--grey-mid);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--anthracite);
  box-shadow: 0 0 0 3px rgba(30, 30, 30, 0.06);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8a85' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form__submit {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.form__submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 0.9rem;
}

.form__notice {
  text-align: center;
  font-size: 0.78rem;
  color: var(--grey-text);
  margin-top: 16px;
  line-height: 1.6;
}

/* ─── FAQ ─── */
.faq__list {
  max-width: 680px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--grey-light);
}

.faq__question {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--anthracite);
  cursor: pointer;
  gap: 16px;
  background: none;
  border: none;
  transition: color 0.2s var(--ease);
}

.faq__question:hover {
  color: var(--blue-elec);
}

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--grey-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
  color: var(--grey-text);
}

.faq__item.open .faq__icon {
  background: var(--anthracite);
  border-color: var(--anthracite);
  color: var(--white);
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding: 0 0 24px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--grey-text);
  max-width: 640px;
}

.faq__item.open .faq__answer {
  display: block;
}

/* ─── IMPLANTATIONS ─── */
.implantations__wrapper {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.implantations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.implantations__map-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.france-map-img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.implantations__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.implantation-card {
  background: var(--off-white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.implantation-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.implantation-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.implantation-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-subtle);
  color: var(--blue-elec);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.implantation-card__header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--anthracite);
  margin-bottom: 2px;
}

.implantation-card__badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-elec);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.implantation-card__address {
  font-size: 0.95rem;
  color: var(--anthracite);
  margin-bottom: 10px;
  line-height: 1.5;
}

.implantation-card__desc {
  font-size: 0.9rem;
  color: var(--grey-text);
  line-height: 1.6;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--anthracite);
  color: var(--white);
  padding: 72px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__brand h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.footer__brand-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  display: block;
}

.footer__brand p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  max-width: 280px;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

.footer__col a,
.footer__col p {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s var(--ease);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer__col a:hover {
  color: var(--white);
}

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

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s var(--ease);
}

.footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE DESIGN (Grid & Flexbox)
   Téléphones, Tablettes et Ordinateurs
   ═══════════════════════════════════════════════════════ */

/* ─── ORDINATEURS LARGE (>= 1200px) ─── */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    padding: 0 40px;
  }
}

/* ─── TABLETTES LARGE & PETITS ORDINATEURS (max-width: 1024px) ─── */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  /* Grilles / CSS Grid & Flexbox */
  .methode__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .intro__visuals {
    height: 360px;
  }

  .acquisitions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefices__grid {
    gap: 24px 48px;
  }

  .securite__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  /* Page: Confier ma recherche */
  .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-page__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-page__sidebar {
    position: static;
  }

  /* Page: FAQ */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-sidebar {
    position: static;
  }

  .faq-sidebar__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .faq-sidebar__link {
    border: 1px solid var(--grey-mid);
    padding: 8px 16px;
    border-radius: 100px;
  }

  .faq-sidebar__link.active {
    background: var(--anthracite);
    color: var(--white);
    border-color: var(--anthracite);
  }
}

/* ─── TABLETTES STANDARD (max-width: 992px) ─── */
@media (max-width: 992px) {

  /* Page: Véhicules demandés */
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-card__img {
    height: 280px;
  }
}

/* ─── TABLETTES PORTRAIT & GRANDS TÉLÉPHONES (max-width: 768px) ─── */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
  }

  .section {
    padding: 80px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* Navbar avec Flexbox */
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .hero__content {
    padding: calc(var(--nav-h) + 20px) 20px 80px;
  }

  .hero__scroll {
    display: none;
  }

  /* Grilles 1 colonne (CSS Grid) */
  .methode__grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .acquisitions__grid {
    grid-template-columns: 1fr;
  }

  .implantations__wrapper {
    padding: 28px 20px;
  }

  .implantations__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .benefices__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .securite__grid {
    grid-template-columns: 1fr;
  }

  .emotion__badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
    margin-top: 32px;
  }

  .form__grid {
    grid-template-columns: 1fr;
  }

  .form__group--full {
    grid-column: 1;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
  }

  .footer__bottom-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .emotion {
    height: 420px;
  }

  .timeline::before {
    left: 17px;
  }

  .timeline__step {
    width: 34px;
    height: 34px;
    font-size: 0.72rem;
  }

  .timeline__item {
    gap: 24px;
  }

  /* Page: Confier ma recherche */
  .page-hero {
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 56px;
  }

  .form-card {
    padding: 28px 20px;
  }

  .form-card .form__grid {
    grid-template-columns: 1fr;
  }

  .form-card .form__group--full {
    grid-column: 1;
  }

  /* Page: FAQ & Véhicules & Guides */
  .faq-page-hero,
  .demandes-hero {
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 56px;
  }

  .vehicle-card__content {
    padding: 24px;
  }

  .guides__grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .guide-card {
    padding: 36px 28px;
  }
}

/* ─── TÉLÉPHONES (max-width: 640px / 480px) ─── */
@media (max-width: 640px) {

  /* Page: Article */
  .article-back__inner,
  .article-hero__inner,
  .article-body {
    padding-left: 24px;
    padding-right: 24px;
  }

  .article-cta {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {

  /* Composants Flexbox ajustés pour mobile */
  .hero__trust {
    gap: 16px;
  }

  .hero__proof {
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
    padding-top: 20px;
  }

  .hero__proof-sep {
    width: 40px;
    height: 1px;
  }

  .acq__card {
    border-radius: var(--radius);
  }
}