/* ================================================================
   EllaCar — Design System v3.0
   Refonte complète · Mobile-First · Navy + Gold · Guadeloupe
   ================================================================

   INDEX
   1.  Variables & Reset
   2.  Typographie
   3.  Layout
   4.  Composants (Boutons, Badges, Formulaires)
   5.  Header
   6.  Hero Section
   7.  Trust Strip
   8.  Comment ça marche
   9.  Section Flotte
   10. Cartes Véhicules
   11. Pourquoi EllaCar
   12. Avis Clients
   13. Section SEO
   14. FAQ
   15. CTA Final
   16. Footer
   17. Page Véhicules (archive)
   18. Fiche Véhicule (single)
   19. Utilitaires
   20. Responsive (Mobile)

================================================================ */

/* ───────────────────────────────────────────────────────────────
   1. VARIABLES & RESET
─────────────────────────────────────────────────────────────── */
:root {
  /* Palette */
  --navy:      #0B1B3A;
  --navy-2:    #071429;
  --navy-3:    #162444;
  --gold:      #F5C533;
  --gold-2:    #E0AD18;
  --gold-glow: rgba(245,197,51,.28);
  --green:     #16A34A;
  --green-bg:  rgba(22,163,74,.10);
  --red-bg:    rgba(239,68,68,.10);

  /* Surfaces */
  --bg:        #F7F8FC;
  --surface:   #FFFFFF;
  --surface-2: #F0F2F8;

  /* Texte */
  --text:      #0F172A;
  --muted:     #64748B;
  --muted-2:   #94A3B8;

  /* Bordures */
  --line:      rgba(15,23,42,.09);
  --line-md:   rgba(15,23,42,.14);

  /* Radius */
  --r-xs:  8px;
  --r-sm:  12px;
  --r-md:  18px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-pill:999px;

  /* Ombres */
  --sh-sm:  0 2px 12px rgba(2,6,23,.07);
  --sh-md:  0 8px 32px rgba(2,6,23,.09);
  --sh-lg:  0 20px 60px rgba(2,6,23,.11);
  --sh-gold:0 12px 40px rgba(245,197,51,.22);

  /* Transitions */
  --ease: .18s cubic-bezier(.4,0,.2,1);

  /* Header */
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Ubuntu, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ───────────────────────────────────────────────────────────────
   2. TYPOGRAPHIE
─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  letter-spacing: -.025em;
  line-height: 1.12;
  font-weight: 800;
  color: var(--text);
}

.ed-h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
.ed-h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
.ed-h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.ed-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}
.ed-kicker::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* ───────────────────────────────────────────────────────────────
   3. LAYOUT
─────────────────────────────────────────────────────────────── */
.ed-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.ed-section {
  padding: 5rem 0;
}
.ed-section--sm {
  padding: 3rem 0;
}
.ed-section--dark {
  background: var(--navy);
  color: #fff;
}
.ed-section--soft {
  background: var(--surface);
}
.ed-section--bg {
  background: var(--bg);
}

/* ───────────────────────────────────────────────────────────────
   4. COMPOSANTS
─────────────────────────────────────────────────────────────── */

/* — Boutons — */
.ed-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.75rem;
  font-size: .95rem;
  font-weight: 800;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), filter var(--ease);
  text-decoration: none;
  white-space: nowrap;
  min-height: 52px;
}
.ed-btn:active { transform: translateY(1px); }

.ed-btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--sh-gold);
}
.ed-btn--primary:hover {
  filter: brightness(1.04);
  box-shadow: 0 16px 50px rgba(245,197,51,.35);
  transform: translateY(-1px);
}

.ed-btn--dark {
  background: var(--navy);
  color: #fff;
}
.ed-btn--dark:hover {
  background: var(--navy-3);
  transform: translateY(-1px);
}

.ed-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.ed-btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}

.ed-btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line-md);
}
.ed-btn--outline:hover {
  background: var(--surface);
  border-color: var(--navy);
}

.ed-btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  min-height: 58px;
}

.ed-btn--full { width: 100%; }

/* — Badges — */
.ed-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .85rem;
  font-size: .78rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}
.ed-badge--gold {
  border-color: rgba(245,197,51,.4);
  background: rgba(245,197,51,.1);
  color: #7a5a00;
}
.ed-badge--green {
  border-color: rgba(22,163,74,.3);
  background: var(--green-bg);
  color: #14532d;
}
.ed-badge--navy {
  border-color: rgba(11,27,58,.25);
  background: rgba(11,27,58,.07);
  color: var(--navy);
}
.ed-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ed-dot--green  { background: var(--green); box-shadow: 0 0 0 3px var(--green-bg); }
.ed-dot--gold   { background: var(--gold); }
.ed-dot--white  { background: #fff; }

/* — Étoiles — */
.ed-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 1rem;
}
.ed-stars svg { width: 16px; height: 16px; fill: currentColor; }

/* — Formulaires — */
.ed-label {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}
.ed-control {
  width: 100%;
  padding: .8rem 1rem;
  font-size: .95rem;
  background: var(--surface);
  border: 1.5px solid var(--line-md);
  border-radius: var(--r-sm);
  color: var(--text);
  transition: border-color var(--ease), box-shadow var(--ease);
  min-height: 48px;
  appearance: none;
  -webkit-appearance: none;
}
.ed-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
}
select.ed-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  padding-right: 2.5rem;
}

/* — Divider — */
.ed-divider {
  height: 1px;
  background: var(--line);
  border: none;
}

/* ───────────────────────────────────────────────────────────────
   5. HEADER & TOPSTRIP
─────────────────────────────────────────────────────────────── */
.ec-topstrip {
  background: var(--navy-2);
  height: 38px;
  font-size: .78rem;
}
.ec-topstrip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ec-topstrip__info {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.65);
}
.ec-topstrip__phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--gold);
  font-weight: 800;
  padding: .3rem .85rem;
  border: 1px solid rgba(245,197,51,.35);
  border-radius: var(--r-pill);
  transition: background var(--ease);
}
.ec-topstrip__phone:hover { background: rgba(245,197,51,.12); }

/* Header */
.ec-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow var(--ease);
}
.ec-header--scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.25); }
.ec-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Brand */
.ec-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: #fff;
  margin-right: auto;
  flex-shrink: 0;
}
.ec-brand__logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.ec-brand__mark svg { display: block; }
.ec-brand__name {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
  display: block;
  line-height: 1;
}
.ec-brand__sub {
  font-size: .65rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  letter-spacing: .02em;
  display: block;
  margin-top: 2px;
}

/* Nav */
.ec-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.ec-nav__list {
  display: flex;
  align-items: center;
  gap: .1rem;
}
.ec-nav__link {
  display: block;
  padding: .5rem .85rem;
  color: rgba(255,255,255,.78);
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.ec-nav__link:hover, .ec-nav__link--active {
  color: #fff;
  background: rgba(255,255,255,.09);
}
.ec-nav__client {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .85rem;
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.12);
}
.ec-nav__client:hover { color: #fff; background: rgba(255,255,255,.08); }

.ec-nav__call {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.1rem;
  background: var(--green);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  border-radius: var(--r-pill);
  border: none;
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap;
  min-height: 40px;
}
.ec-nav__call:hover { background: #15803d; transform: translateY(-1px); }

.ec-nav__cta {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .55rem 1.25rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .875rem;
  font-weight: 900;
  border-radius: var(--r-pill);
  white-space: nowrap;
  min-height: 40px;
  box-shadow: var(--sh-gold);
  transition: filter var(--ease), transform var(--ease);
}
.ec-nav__cta:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* Burger */
.ec-nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xs);
  flex-shrink: 0;
}
.ec-burger__bar {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
  transform-origin: center;
}
.ec-nav__burger[aria-expanded="true"] .ec-burger__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ec-nav__burger[aria-expanded="true"] .ec-burger__bar:nth-child(2) { opacity: 0; }
.ec-nav__burger[aria-expanded="true"] .ec-burger__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile CTA bar */
.ec-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -6px 30px rgba(0,0,0,.25);
}
.ec-mobile-cta__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: .2rem;
  font-size: .65rem;
  font-weight: 800;
  padding: .6rem .25rem;
  height: 62px;
}
.ec-mobile-cta__call { background: var(--green); color: #fff; flex: 1.3; }
.ec-mobile-cta__book { background: var(--gold); color: var(--navy); flex: 1.3; }
.ec-mobile-cta__fleet { color: rgba(255,255,255,.7); }

/* ───────────────────────────────────────────────────────────────
   6. HERO SECTION
─────────────────────────────────────────────────────────────── */
.ed-hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 4.5rem 0 5rem;
}

/* Fond dégradé tropical */
.ed-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 5% 100%, rgba(245,197,51,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 95% -10%, rgba(22,163,74,.10) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 50% 110%, rgba(7,20,41,.8) 0%, transparent 70%);
  pointer-events: none;
}

/* Motif de grille subtil */
.ed-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.ed-hero__inner {
  position: relative;
  z-index: 1;
}

.ed-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* — Contenu gauche — */
.ed-hero__content { color: #fff; }

.ed-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  background: rgba(245,197,51,.15);
  border: 1px solid rgba(245,197,51,.3);
  border-radius: var(--r-pill);
  font-size: .75rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.ed-hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 1rem;
}
.ed-hero__title strong { color: var(--gold); }

.ed-hero__lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 500px;
}

/* Rating dans le hero */
.ed-hero__rating {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.ed-hero__rating-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
}
.ed-hero__rating-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.ed-hero__rating-text {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  font-weight: 600;
}
.ed-hero__rating-text strong { color: #fff; }

.ed-hero__ctas {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
}

/* — Carte de recherche droite — */
.ed-search-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

.ed-search-card__head {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ed-search-card__title {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
}
.ed-search-card__sub {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin: .2rem 0 0;
}
.ed-search-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: rgba(245,197,51,.18);
  border: 1px solid rgba(245,197,51,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.ed-search-card__body { padding: 1.25rem 1.5rem; }

.ed-search-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
}
.ed-search-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

/* Swap button */
.ed-swap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: .5rem;
  align-items: end;
}
.ed-swap__btn {
  width: 44px;
  height: 48px;
  border: 1.5px solid var(--line-md);
  background: var(--surface);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .9rem;
  transition: all var(--ease);
  flex-shrink: 0;
}
.ed-swap__btn:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--surface-2);
}

.ed-search-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 54px;
  box-shadow: 0 8px 28px rgba(245,197,51,.3);
  transition: filter var(--ease), transform var(--ease), box-shadow var(--ease);
  margin-top: .25rem;
}
.ed-search-submit:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 14px 38px rgba(245,197,51,.38);
}

/* ───────────────────────────────────────────────────────────────
   7. TRUST STRIP
─────────────────────────────────────────────────────────────── */
.ed-trust {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.ed-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.ed-trust__item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}
.ed-trust__item svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}
.ed-trust__sep {
  width: 1px;
  height: 20px;
  background: var(--line-md);
  flex-shrink: 0;
}

/* ───────────────────────────────────────────────────────────────
   8. COMMENT ÇA MARCHE
─────────────────────────────────────────────────────────────── */
.ed-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

/* Ligne connectrice entre les étapes */
.ed-steps__grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(33.33% / 2 + 1.5rem);
  right: calc(33.33% / 2 + 1.5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold));
  background-size: 8px 2px;
  background-image: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 4px, transparent 4px, transparent 12px);
  z-index: 0;
}

.ed-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.ed-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px var(--surface), var(--sh-md);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.ed-step__icon {
  font-size: 1.5rem;
  margin-bottom: .75rem;
}
.ed-step__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .5rem;
}
.ed-step__desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ───────────────────────────────────────────────────────────────
   9. SECTION FLOTTE
─────────────────────────────────────────────────────────────── */
.ed-fleet__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}
.ed-fleet__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -.025em;
}
.ed-fleet__sub {
  font-size: .9rem;
  color: var(--muted);
  margin-top: .4rem;
}

.ed-fleet__filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.ed-filter {
  padding: .45rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  border: 1.5px solid var(--line-md);
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--ease);
}
.ed-filter:hover, .ed-filter--active {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(11,27,58,.05);
}

/* ───────────────────────────────────────────────────────────────
   10. CARTES VÉHICULES
─────────────────────────────────────────────────────────────── */
.ed-vehicles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ed-vcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.ed-vcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
/* Accent bar top */
.ed-vcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(245,197,51,.3));
}

/* Image */
.ed-vcard__img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-2);
}
.ed-vcard__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ed-vcard:hover .ed-vcard__img-wrap img { transform: scale(1.04); }

.ed-vcard__avail {
  position: absolute;
  top: .85rem;
  left: .85rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .8rem;
  font-size: .72rem;
  font-weight: 800;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(22,163,74,.25);
  border-radius: var(--r-pill);
  color: #14532d;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Body */
.ed-vcard__body {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.ed-vcard__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
}
.ed-vcard__name {
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -.015em;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}
.ed-vcard__cat {
  font-size: .78rem;
  color: var(--muted);
  margin: .2rem 0 0;
  font-weight: 600;
}
.ed-vcard__price {
  text-align: right;
  flex-shrink: 0;
}
.ed-vcard__price strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1;
}
.ed-vcard__price strong span {
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
}
.ed-vcard__price em {
  display: block;
  font-size: .75rem;
  color: var(--muted);
  font-style: normal;
  margin-top: .2rem;
}

/* Specs */
.ed-vcard__specs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.ed-vcard__spec {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: var(--muted);
  font-weight: 600;
}
.ed-vcard__spec svg { width: 13px; height: 13px; }

/* Deposit */
.ed-vcard__deposit {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .85rem;
  background: rgba(11,27,58,.05);
  border: 1px solid rgba(11,27,58,.10);
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 800;
  color: var(--navy);
  width: fit-content;
}

/* CTA card */
.ed-vcard__footer {
  padding: 0 1.1rem 1.1rem;
  margin-top: auto;
}
.ed-vcard__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: .75rem 1rem;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  border-radius: var(--r-md);
  transition: background var(--ease), transform var(--ease);
  gap: .5rem;
}
.ed-vcard__cta:hover {
  background: var(--navy-3);
  transform: translateY(-1px);
}
.ed-vcard__cta svg { width: 14px; height: 14px; }

/* "Voir tous" lien */
.ed-fleet__more {
  text-align: center;
  margin-top: 2.5rem;
}
.ed-fleet__more-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 800;
  color: var(--navy);
  font-size: .95rem;
  padding: .75rem 2rem;
  border: 2px solid var(--navy);
  border-radius: var(--r-pill);
  transition: all var(--ease);
}
.ed-fleet__more-link:hover {
  background: var(--navy);
  color: #fff;
}

/* ───────────────────────────────────────────────────────────────
   11. POURQUOI ELLACAR
─────────────────────────────────────────────────────────────── */
.ed-why {
  background: var(--navy);
  color: #fff;
}
.ed-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.ed-why__card {
  padding: 1.75rem 1.5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  text-align: center;
  transition: background var(--ease), transform var(--ease);
}
.ed-why__card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-3px);
}
.ed-why__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: rgba(245,197,51,.15);
  border: 1px solid rgba(245,197,51,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.1rem;
}
.ed-why__title {
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: .5rem;
}
.ed-why__desc {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
}
.ed-why__head .ed-kicker { color: var(--gold); }
.ed-why__head h2 { color: #fff; }
.ed-why__head p { color: rgba(255,255,255,.65); margin-top: .5rem; }

/* ───────────────────────────────────────────────────────────────
   12. AVIS CLIENTS
─────────────────────────────────────────────────────────────── */
.ed-reviews__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.ed-reviews__avg {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: .6rem 1.25rem;
  box-shadow: var(--sh-sm);
  margin-top: 1rem;
}
.ed-reviews__avg-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
}
.ed-reviews__avg-label {
  font-size: .8rem;
  color: var(--muted);
}

.ed-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ed-review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: box-shadow var(--ease);
}
.ed-review:hover { box-shadow: var(--sh-md); }

.ed-review__header {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.ed-review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--gold);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(245,197,51,.3);
}
.ed-review__name {
  font-weight: 800;
  font-size: .95rem;
  color: var(--text);
  margin: 0;
}
.ed-review__date {
  font-size: .78rem;
  color: var(--muted);
  margin: .15rem 0 0;
}
.ed-review__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}
.ed-review__stars svg { width: 15px; height: 15px; fill: currentColor; }
.ed-review__text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  font-style: italic;
}
.ed-review__text::before { content: '"'; }
.ed-review__text::after { content: '"'; }
.ed-review__via {
  font-size: .75rem;
  color: var(--muted-2);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* ───────────────────────────────────────────────────────────────
   13. SECTION SEO
─────────────────────────────────────────────────────────────── */
.ed-seo-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 2.5rem 3rem;
  box-shadow: var(--sh-sm);
}
.ed-seo-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.ed-seo-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.ed-seo-card p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: .85rem;
}
.ed-seo-card p:last-child { margin-bottom: 0; }
.ed-seo-card strong { color: var(--text); font-weight: 800; }

.ed-seo-zones {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.ed-seo-zone {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg);
  transition: border-color var(--ease), background var(--ease);
}
.ed-seo-zone:hover {
  border-color: rgba(11,27,58,.2);
  background: var(--surface);
}
.ed-seo-zone__ic {
  width: 36px;
  height: 36px;
  border-radius: var(--r-xs);
  background: rgba(245,197,51,.12);
  border: 1px solid rgba(245,197,51,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ed-seo-zone__name { font-weight: 800; font-size: .92rem; }
.ed-seo-zone__sub  { font-size: .78rem; color: var(--muted); margin-top: .15rem; }

/* ───────────────────────────────────────────────────────────────
   14. FAQ
─────────────────────────────────────────────────────────────── */
.ed-faq__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ed-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.ed-faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.ed-faq__item[open] {
  border-color: rgba(11,27,58,.2);
  box-shadow: var(--sh-sm);
}

.ed-faq__item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 800;
  font-size: .97rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  color: var(--text);
  transition: color var(--ease);
}
.ed-faq__item summary::-webkit-details-marker { display: none; }
.ed-faq__item summary::after {
  content: '+';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(11,27,58,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--ease), background var(--ease);
}
.ed-faq__item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
  background: var(--navy);
  color: var(--gold);
}
.ed-faq__item[open] summary { color: var(--navy); }

.ed-faq__body {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

/* ───────────────────────────────────────────────────────────────
   15. CTA FINAL
─────────────────────────────────────────────────────────────── */
.ed-cta-final {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 5rem 0;
}
.ed-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(245,197,51,.15), transparent),
    radial-gradient(ellipse 60% 80% at 10% 0%, rgba(22,163,74,.08), transparent);
  pointer-events: none;
}
.ed-cta-final__content { position: relative; z-index: 1; }
.ed-cta-final h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -.03em;
}
.ed-cta-final h2 strong { color: var(--gold); }
.ed-cta-final p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.ed-cta-final__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ed-cta-final__phone {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  margin-top: 1.25rem;
  justify-content: center;
}
.ed-cta-final__phone a {
  color: var(--gold);
  font-weight: 800;
}

/* ───────────────────────────────────────────────────────────────
   16. FOOTER
─────────────────────────────────────────────────────────────── */
.ed-footer {
  background: var(--navy-2);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.ed-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.ed-footer__brand { }
.ed-footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}
.ed-footer__brand-name {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: .25rem;
}
.ed-footer__tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.25rem;
}
.ed-footer__contacts { display: flex; flex-direction: column; gap: .6rem; }
.ed-footer__contact {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  transition: color var(--ease);
}
.ed-footer__contact:hover { color: var(--gold); }
.ed-footer__contact svg { width: 16px; height: 16px; flex-shrink: 0; }

.ed-footer__col-title {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.1rem;
}
.ed-footer__links { display: flex; flex-direction: column; gap: .55rem; }
.ed-footer__link {
  font-size: .87rem;
  color: rgba(255,255,255,.65);
  transition: color var(--ease), padding-left var(--ease);
}
.ed-footer__link:hover { color: #fff; padding-left: 4px; }

/* Zones */
.ed-footer__zones { display: flex; flex-direction: column; gap: .5rem; }
.ed-footer__zone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.ed-footer__zone::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .6;
  flex-shrink: 0;
}

/* Horaires */
.ed-footer__hours {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 1.1rem 1.25rem;
  margin-top: .5rem;
}
.ed-footer__hours-title {
  font-size: .78rem;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}
.ed-footer__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.ed-footer__hours-row:last-child { border-bottom: none; }
.ed-footer__hours-row span:last-child { color: rgba(255,255,255,.85); font-weight: 700; }

.ed-footer__avail {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .85rem;
  font-size: .8rem;
  color: rgba(22,163,74,.9);
  font-weight: 700;
}

/* Bottom bar */
.ed-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.ed-footer__copy { font-size: .8rem; color: rgba(255,255,255,.4); }
.ed-footer__legal {
  display: flex;
  gap: 1.5rem;
}
.ed-footer__legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  transition: color var(--ease);
}
.ed-footer__legal a:hover { color: rgba(255,255,255,.7); }

/* ───────────────────────────────────────────────────────────────
   17. PAGE VÉHICULES (archive)
─────────────────────────────────────────────────────────────── */
.ed-arc {
  padding: 3rem 0 5rem;
}
.ed-arc__hero {
  background: var(--navy);
  padding: 2.5rem 0;
  margin-bottom: 2.5rem;
}
.ed-arc__hero-inner { }
.ed-arc__kicker { margin-bottom: .75rem; }
.ed-arc__title { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .5rem; }
.ed-arc__sub { color: rgba(255,255,255,.6); font-size: .95rem; }

/* Formulaire filtre archive */
.ed-arc-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--sh-sm);
}
.ed-arc-form__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: .85rem;
  align-items: end;
}
.ed-arc-form__submit {
  height: 48px;
  padding: 0 1.5rem;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: background var(--ease);
  white-space: nowrap;
}
.ed-arc-form__submit:hover { background: var(--navy-3); }

.ed-arc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ed-arc__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--surface);
  border: 1px dashed var(--line-md);
  border-radius: var(--r-xl);
}
.ed-arc__empty h3 { margin-bottom: .5rem; }
.ed-arc__empty p { color: var(--muted); }

/* ───────────────────────────────────────────────────────────────
   18. FICHE VÉHICULE (single)
─────────────────────────────────────────────────────────────── */
.ed-single {
  padding: 2rem 0 5rem;
}
.ed-single__grid {
  display: grid;
  grid-template-columns: 1.2fr .85fr;
  gap: 2rem;
  align-items: start;
}

/* Colonne gauche */
.ed-single__img-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  position: relative;
}
.ed-single__img-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.ed-single__img-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.ed-single__status {
  position: absolute;
  top: 1rem; left: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(22,163,74,.25);
  border-radius: var(--r-pill);
  font-size: .78rem;
  font-weight: 800;
  color: #14532d;
  backdrop-filter: blur(6px);
}

/* Infos véhicule */
.ed-single__info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  margin-top: 1.25rem;
  box-shadow: var(--sh-sm);
}
.ed-single__title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -.025em;
  margin-bottom: .4rem;
}
.ed-single__sub {
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 1rem;
}
.ed-single__specs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.ed-single__spec {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .9rem;
  background: rgba(11,27,58,.05);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
}
.ed-single__spec svg { width: 14px; height: 14px; }
.ed-single__desc {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.7;
}
.ed-single__desc p { margin-bottom: .75rem; }
.ed-single__desc p:last-child { margin-bottom: 0; }

/* Colonne droite — panneau réservation */
.ed-single__panel {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

/* Override styles pour le panneau de réservation existant */
.ec-reservation {
  background: var(--surface) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--r-xl) !important;
  box-shadow: var(--sh-lg) !important;
  padding: 1.75rem !important;
}
.ec-reservation__head h2 {
  font-size: 1.4rem !important;
  letter-spacing: -.025em !important;
}

/* ───────────────────────────────────────────────────────────────
   19. UTILITAIRES
─────────────────────────────────────────────────────────────── */
.ed-section-header { margin-bottom: 3rem; }
.ed-section-header--center { text-align: center; }
.ed-section-header--center .ed-kicker { justify-content: center; }
.ed-section-header--center .ed-kicker::before { display: none; }
.ed-section-header--center .ed-kicker::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.ed-section-header p {
  color: var(--muted);
  font-size: .97rem;
  margin-top: .6rem;
  max-width: 600px;
}
.ed-section-header--center p {
  margin-left: auto;
  margin-right: auto;
}

/* Fil d'ariane */
.ed-breadcrumb {
  padding: .75rem 0;
  margin-bottom: 1.5rem;
}
.ed-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .25rem;
  font-size: .82rem;
}
.ed-breadcrumb__link {
  color: var(--muted);
  transition: color var(--ease);
  font-weight: 600;
}
.ed-breadcrumb__link:hover { color: var(--text); }
.ed-breadcrumb__sep { color: var(--muted-2); }
.ed-breadcrumb__current { color: var(--text); font-weight: 700; }

/* ───────────────────────────────────────────────────────────────
   20. RESPONSIVE
─────────────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .ed-why__grid { grid-template-columns: repeat(2, 1fr); }
  .ed-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .ed-arc-form__grid { grid-template-columns: 1fr 1fr; }
  .ed-arc-form__grid .ed-arc-form__submit { grid-column: 1 / -1; width: 100%; justify-content: center; }
}

@media (max-width: 767px) {
  :root { --header-h: 60px; }

  body { padding-bottom: 62px; }

  /* Header mobile */
  .ec-nav__list, .ec-nav__client, .ec-nav__call { display: none; }
  .ec-nav__burger { display: flex; }
  .ec-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 62px;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
    gap: .5rem;
    overflow-y: auto;
    z-index: 99;
  }
  .ec-nav.is-open { display: flex; }
  body.ec-nav-open { overflow: hidden; }
  .ec-nav__list { display: flex; flex-direction: column; gap: 0; }
  .ec-nav__list, .ec-nav__client { display: flex; }
  .ec-nav__link { font-size: .97rem; padding: .9rem 1rem; border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 0; }
  .ec-nav__client { padding: .9rem 1rem; border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 0; }
  .ec-nav__call, .ec-nav__cta { display: none; }

  /* Mobile CTA bar */
  .ec-mobile-cta { display: flex; }
  .ec-topstrip { display: none; }

  /* Hero */
  .ed-hero { padding: 2.5rem 0 3rem; }
  .ed-hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ed-hero__lead { display: none; }
  .ed-hero__ctas { display: none; }
  .ed-hero__title { font-size: 1.75rem; }

  /* Search card */
  .ed-search-dates { grid-template-columns: 1fr; }
  .ed-swap { grid-template-columns: 1fr; }
  .ed-swap__btn { display: none; }

  /* Steps */
  .ed-steps__grid { grid-template-columns: 1fr; }
  .ed-steps__grid::before { display: none; }

  /* Fleet */
  .ed-vehicles { grid-template-columns: 1fr; }
  .ed-fleet__head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .ed-fleet__filters { display: none; }

  /* Why */
  .ed-why__grid { grid-template-columns: 1fr; }

  /* Reviews */
  .ed-reviews__grid { grid-template-columns: 1fr; }

  /* SEO card */
  .ed-seo-card { padding: 1.5rem; }
  .ed-seo-card__grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Footer */
  .ed-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .ed-footer__bottom { flex-direction: column; text-align: center; }
  .ed-footer__legal { flex-wrap: wrap; justify-content: center; }

  /* Single */
  .ed-single__grid { grid-template-columns: 1fr; }
  .ed-single__panel { position: static; }

  /* Archive */
  .ed-arc__grid { grid-template-columns: 1fr; }
  .ed-arc-form__grid { grid-template-columns: 1fr; }

  /* Sections */
  .ed-section { padding: 3rem 0; }
  .ed-cta-final { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .ed-wrap { padding: 0 1rem; }
  .ed-trust__sep { display: none; }
  .ed-trust__inner { gap: .75rem; justify-content: flex-start; overflow-x: auto; padding: 0 1rem; flex-wrap: nowrap; }
  .ed-search-card__body { padding: 1rem; }
  .ed-search-card__head { padding: 1rem; }
}

/* ================================================================
   PATCH STABILISATION HEADER DESKTOP
   Objectif : empêcher les boutons téléphone/réservation mobile de
   prendre toute la largeur sur ordinateur quand le header installé
   utilise des classes hybrides.
================================================================ */
@media (min-width: 768px) {
  .ec-mobile-cta {
    display: none !important;
  }

  .ec-header .ec-nav,
  .ec-topbar .ec-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: .5rem !important;
    width: auto !important;
    max-width: none !important;
    flex: 0 1 auto !important;
  }

  .ec-header .ec-mobile-cta__item,
  .ec-topbar .ec-mobile-cta__item {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: .55rem 1rem !important;
    border-radius: 999px !important;
    flex-direction: row !important;
    gap: .35rem !important;
    font-size: .82rem !important;
    line-height: 1 !important;
  }

  .ec-header .ec-mobile-cta__fleet,
  .ec-topbar .ec-mobile-cta__fleet {
    display: none !important;
  }
}
