/* ════════════════════════════════════════════════════════════════
   ANYM AUTOS — CSS principal
   Palette : #131B27 (fond) · #FFFFFF (texte) · #2F6BFF (accent)
   Badges   : #E0533D (vendu) · #F2A93B (réservé) · #007A3D (export)
   ════════════════════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────────────────── */
:root {
  --bg:          #131B27;
  --bg-dark:     #0d1320;
  --bg-card:     #192436;
  --bg-card-alt: #1e2d47;
  --white:       #FFFFFF;
  --blue:        #2F6BFF;
  --blue-hover:  #1a56e8;
  --blue-dim:    rgba(47,107,255,.12);
  --text:        #e8edf8;
  --text-muted:  #8899bb;
  --border:      #1e2d47;
  --vendu:       #E0533D;
  --reserve:     #F2A93B;
  --green:       #007A3D;
  --green-light: #00c060;
  --radius:      10px;
  --shadow:      0 4px 24px rgba(0,0,0,.35);
  --transition:  .2s ease;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-hover); }

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

ul, ol { list-style: none; }

h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--white);
}

address { font-style: normal; }

details summary { cursor: pointer; }

/* ── Container ───────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Utility ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  color: var(--white);
}
.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 1.75rem;
}
.section-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: 7px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary  { background: var(--blue);  color: var(--white); }
.btn-primary:hover  { background: var(--blue-hover); color: var(--white); }

.btn-outline  { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--blue); color: var(--white); }

.btn-green    { background: var(--green); color: var(--white); }
.btn-green:hover    { background: #005e2e; color: var(--white); }

.btn-outline-green { background: transparent; color: var(--green-light); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--white); }

.btn-wa       { background: #25D366; color: var(--white); }
.btn-wa:hover { background: #128C7E; color: var(--white); }

.btn-wa-small { background: #25D366; color: var(--white); padding: .4rem .9rem; font-size: .8rem; border-radius: 5px; display: inline-flex; align-items: center; gap: .35rem; margin-top: .5rem; }
.btn-wa-small:hover { background: #128C7E; color: var(--white); }

.btn-ghost    { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--text); }

.btn-disabled { background: var(--bg-card-alt); color: var(--text-muted); cursor: not-allowed; border-color: var(--border); }
.btn-disabled:hover { transform: none; }

.btn-lg  { padding: .85rem 1.8rem; font-size: 1rem; }
.btn-sm  { padding: .45rem 1rem;   font-size: .82rem; }
.btn-block { width: 100%; justify-content: center; }

/* ════════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 64px;
}

/* Logo */
.site-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-text  {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.5px;
}
.logo-accent { color: var(--blue); }
.site-logo img { max-height: 40px; width: auto; }

/* Nav */
.site-nav  { margin-left: auto; }
.nav-menu  { display: flex; align-items: center; gap: .25rem; }
.nav-menu li a {
  display: block;
  padding: .45rem .85rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a { color: var(--white); background: var(--blue-dim); }

/* Lang switcher */
.lang-switcher { display: flex; gap: .25rem; }
.lang-switcher a {
  font-size: .8rem;
  font-weight: 700;
  padding: .3rem .6rem;
  border-radius: 5px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all var(--transition);
}
.lang-switcher a:hover,
.lang-switcher .current-lang a { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ════════════════════════════════════════════════════════════════
   HERO (page d'accueil)
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(47,107,255,.15) 0%, transparent 70%),
    linear-gradient(135deg, var(--bg-dark) 0%, var(--bg) 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(47,107,255,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,122,61,.06) 0%, transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 1.25rem;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════════════════ */
.stats-bar { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 1.5rem 1.25rem;
}
.stat-item { text-align: center; padding: .75rem 2rem; }
.stat-number { display: block; font-size: 1.4rem; font-weight: 800; color: var(--white); }
.stat-label  { font-size: .8rem; color: var(--text-muted); margin-top: .2rem; }
.stat-divider { width: 1px; height: 48px; background: var(--border); }

/* ════════════════════════════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════════════════════════════ */
.section-featured,
.section-cta-contact,
.section-export-teaser,
.export-cta-section { padding: 4rem 0; }

.section-dark,
.section-steps,
.section-testimonials,
.section-similaires,
.how-engagements,
.export-faq {
  background: var(--bg-card);
  padding: 4rem 0;
}

/* ════════════════════════════════════════════════════════════════
   VEHICLE CARDS
   ════════════════════════════════════════════════════════════════ */
.vehicles-grid {
  display: grid;
  gap: 1.5rem;
}
.vehicles-grid--3 { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.vehicle-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover { transform: translateY(-4px); border-color: var(--blue-dim); box-shadow: var(--shadow); }
.vehicle-card.vendu  { opacity: .85; }
.vehicle-card.reserve { opacity: .9; }

/* Image */
.card-img-link { display: block; text-decoration: none; }
.card-img-wrap {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--bg-card-alt);
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.vehicle-card:hover .card-img-wrap img { transform: scale(1.04); }
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--border);
}

/* ── Bandeau VENDU / RÉSERVÉ ── */
.ribbon {
  position: absolute;
  top: 18px;
  left: -28px;
  width: 110px;
  padding: 5px 0;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: var(--white);
  transform: rotate(-35deg);
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
  pointer-events: none;
  user-select: none;
}
.ribbon-vendu   { background: var(--vendu); }
.ribbon-reserve { background: var(--reserve); color: #1a1200; }

/* Grandes versions (fiche détaillée) */
.ribbon-lg { top: 26px; left: -36px; width: 150px; font-size: 13px; }

/* ── Badge Export Algérie ── */
.badge-export {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--green);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 0 0 0 7px;
  letter-spacing: .5px;
  pointer-events: none;
  user-select: none;
}
.badge-export-lg { font-size: 11px; padding: 6px 12px; }

/* Card body */
.card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.card-title { font-size: 1rem; font-weight: 700; line-height: 1.3; }
.card-title a { color: var(--white); text-decoration: none; }
.card-title a:hover { color: var(--blue); }
.card-year { color: var(--text-muted); font-weight: 400; font-size: .9rem; margin-left: .3rem; }

.card-specs { display: flex; gap: .75rem; flex-wrap: wrap; }
.spec-item { font-size: .82rem; color: var(--text-muted); display: flex; align-items: center; gap: .3rem; }
.spec-icon { font-size: .9rem; }

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.card-price { font-size: 1.2rem; font-weight: 800; color: var(--white); }
.card-price .currency { font-size: .9rem; font-weight: 500; color: var(--text-muted); }

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 3rem;
  font-size: 1.1rem;
}
.no-results a { color: var(--blue); }

/* Loading */
.loading-spinner {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}
.spinner-circle {
  width: 20px; height: 20px;
  border: 2px solid var(--border);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════════════════════════════
   FILTRES CATALOGUE
   ════════════════════════════════════════════════════════════════ */
.filters-bar {
  position: sticky;
  top: 64px;
  z-index: 50;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: .85rem 0;
}
.filters-inner {
  display: flex;
  align-items: flex-end;
  gap: .75rem;
  flex-wrap: wrap;
}
.filter-group { display: flex; flex-direction: column; gap: .25rem; }
.filter-label { font-size: .72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .8px; }
.filter-select {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .45rem .75rem;
  font-size: .875rem;
  cursor: pointer;
  transition: border-color var(--transition);
  min-width: 130px;
}
.filter-select:focus { outline: none; border-color: var(--blue); }
.filter-select option { background: var(--bg); color: var(--text); }

.filter-group--check { justify-content: flex-end; padding-bottom: .1rem; }
.filter-check-label {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
}
.filter-check-label input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--blue);
}

/* ════════════════════════════════════════════════════════════════
   PAGE CATALOGUE — en-tête
   ════════════════════════════════════════════════════════════════ */
.page-header { padding: 2.5rem 0 1.5rem; }
.page-title  { font-size: clamp(1.6rem, 4vw, 2.25rem); }
.page-subtitle { color: var(--text-muted); margin-top: .5rem; font-size: .95rem; }

/* ════════════════════════════════════════════════════════════════
   FICHE VÉHICULE (single)
   ════════════════════════════════════════════════════════════════ */
.breadcrumb {
  padding: 1rem 0;
  font-size: .82rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--white); }

.single-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

/* Galerie */
.main-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-card-alt);
  border-radius: var(--radius);
  overflow: hidden;
}
.main-img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

.gallery-thumbs {
  display: flex;
  gap: .6rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}
.thumb-btn {
  background: none;
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: border-color var(--transition);
  width: 72px;
  height: 48px;
}
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.thumb-btn.active,
.thumb-btn:hover { border-color: var(--blue); }

/* Info col */
.single-header { padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.single-title  { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: .5rem; }
.single-price  { font-size: 2rem; font-weight: 800; color: var(--white); margin: .5rem 0; }
.single-price span { font-size: 1.2rem; font-weight: 500; color: var(--text-muted); }

/* Statut badge (inline) */
.statut-badge {
  display: inline-block;
  padding: .3rem .8rem;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.statut-dispo   { background: rgba(0,192,96,.15); color: #4dbb6d; border: 1px solid rgba(0,192,96,.3); }
.statut-reserve { background: rgba(242,169,59,.15); color: var(--reserve); border: 1px solid rgba(242,169,59,.3); }
.statut-vendu   { background: rgba(224,83,61,.15);  color: var(--vendu);   border: 1px solid rgba(224,83,61,.3); }

.badge-export-inline {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .7rem;
  border-radius: 4px;
  margin-bottom: .6rem;
}

/* Specs */
.single-specs  { padding: 1.25rem 0; }
.specs-title   { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: .75rem; }
.specs-dl      { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1rem; }
.spec-row      { display: contents; }
.spec-row dt   { font-size: .82rem; color: var(--text-muted); align-self: center; }
.spec-row dd   { font-size: .9rem; font-weight: 600; color: var(--text); align-self: center; }

/* CTAs */
.single-ctas { display: flex; flex-direction: column; gap: .75rem; padding-top: 1rem; }
.sold-notice {
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: .9rem;
  line-height: 1.6;
}
.notice-vendu   { background: rgba(224,83,61,.1); border: 1px solid rgba(224,83,61,.3); color: var(--text-muted); }
.notice-reserve { background: rgba(242,169,59,.1); border: 1px solid rgba(242,169,59,.3); color: var(--text-muted); }
.sold-notice strong { color: var(--white); display: block; margin-bottom: .25rem; }

/* Description */
.single-description { padding: 2rem 0 3rem; max-width: 720px; }
.single-description h2 { margin-bottom: 1rem; font-size: 1.2rem; }
.description-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.description-content ul,
.description-content ol { padding-left: 1.5rem; color: var(--text-muted); }
.description-content li { margin-bottom: .4rem; }

/* Formulaire contact (sur fiche) */
.single-contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1rem;
}
.single-contact-form h3 { margin-bottom: 1rem; font-size: 1rem; }

/* ════════════════════════════════════════════════════════════════
   STEPS (comment ça marche)
   ════════════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.step-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.step-icon { font-size: 2rem; margin-bottom: .75rem; }
.step-num {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(47,107,255,.12);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.step-title { font-size: 1.05rem; margin-bottom: .6rem; }
.step-desc  { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

/* ════════════════════════════════════════════════════════════════
   EXPORT PAGE
   ════════════════════════════════════════════════════════════════ */
.export-hero {
  background:
    radial-gradient(ellipse 80% 70% at 30% 50%, rgba(0,122,61,.18) 0%, transparent 70%),
    linear-gradient(135deg, var(--bg-dark) 0%, var(--bg) 100%);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.export-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.export-title    { font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.2; margin: .75rem 0 1rem; }
.export-subtitle { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin-bottom: 1.75rem; }
.export-eyebrow  { font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); }
.export-hero-flag { font-size: 7rem; flex-shrink: 0; opacity: .7; user-select: none; }
.export-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.export-stats {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.export-stats-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.estat { text-align: center; }
.estat strong { display: block; font-size: 1.6rem; font-weight: 800; color: var(--green-light); }
.estat span   { font-size: .82rem; color: var(--text-muted); margin-top: .25rem; display: block; }

.export-process { padding: 4rem 1.25rem; }
.process-steps  { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.process-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-bottom: none; }
.process-step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--blue);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step-body h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.process-step-body p  { color: var(--text-muted); font-size: .9rem; line-height: 1.75; margin-bottom: .75rem; }
.step-note {
  background: rgba(47,107,255,.08);
  border-left: 3px solid var(--blue);
  border-radius: 0 6px 6px 0;
  padding: .75rem 1rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.step-note strong { color: var(--white); }
.process-docs-list { list-style: none; padding: .5rem 0; }
.process-docs-list li { font-size: .88rem; color: var(--text-muted); padding: .3rem 0; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
.faq-item {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  list-style: none;
  padding: 1.1rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question::after { content: '▾'; flex-shrink: 0; color: var(--text-muted); transition: transform var(--transition); }
.faq-item[open] .faq-question { background: var(--blue-dim); }
.faq-item[open] .faq-question::after { transform: rotate(180deg); }
.faq-answer { padding: 0 1.5rem 1.25rem; }
.faq-answer p { color: var(--text-muted); font-size: .9rem; line-height: 1.75; }

/* ════════════════════════════════════════════════════════════════
   EXPORT TEASER (home)
   ════════════════════════════════════════════════════════════════ */
.export-teaser-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.export-teaser-text { flex: 1; min-width: 280px; }
.export-desc { color: var(--text-muted); font-size: .95rem; line-height: 1.75; margin: 1rem 0; }
.export-checklist { margin: 1rem 0 1.5rem; }
.export-checklist li { font-size: .9rem; color: var(--text-muted); padding: .3rem 0; }
.export-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.export-teaser-flag { font-size: 8rem; flex-shrink: 0; opacity: .6; user-select: none; }

/* ════════════════════════════════════════════════════════════════
   TÉMOIGNAGES
   ════════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-initials {
  width: 38px; height: 38px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .875rem; color: var(--white); }
.testimonial-author span   { font-size: .78rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════════
   HOW IT WORKS page
   ════════════════════════════════════════════════════════════════ */
.how-steps { padding: 3rem 1.25rem; }
.how-step-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 1.5rem; }
.how-step {
  display: flex;
  gap: 1.75rem;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.how-step-icon { font-size: 2.5rem; flex-shrink: 0; }
.how-step-body h2 { font-size: 1.1rem; margin-bottom: .6rem; }
.how-step-body p  { color: var(--text-muted); font-size: .9rem; line-height: 1.75; }

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.engagement-card {
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.engagement-icon { font-size: 2rem; margin-bottom: .75rem; }
.engagement-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.engagement-card p  { font-size: .85rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════════ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  padding: 2rem 0 4rem;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
}
.contact-card--wa { border-color: rgba(37,211,102,.3); background: rgba(37,211,102,.06); }
.contact-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-card strong { display: block; font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .25rem; }
.contact-card p, .contact-card a { font-size: .875rem; color: var(--text-muted); }
.contact-form-col h2 { font-size: 1.3rem; margin-bottom: .5rem; }

/* CF7 styling */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: .65rem .9rem;
  font-size: .9rem;
  font-family: inherit;
  transition: border-color var(--transition);
  margin-bottom: .75rem;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus { outline: none; border-color: var(--blue); }
.wpcf7-form textarea { min-height: 130px; resize: vertical; }
.wpcf7-submit {
  background: var(--blue) !important;
  color: var(--white) !important;
  border: none !important;
  padding: .7rem 1.75rem !important;
  border-radius: 7px !important;
  font-size: .9rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
}
.wpcf7-submit:hover { background: var(--blue-hover) !important; }
.wpcf7-not-valid-tip { color: var(--vendu); font-size: .8rem; }
.wpcf7-mail-sent-ok  { background: rgba(0,192,96,.1); border: 1px solid rgba(0,192,96,.3); color: #4dbb6d; border-radius: 7px; padding: .75rem 1rem; font-size: .9rem; }
.wpcf7-mail-sent-ng  { background: rgba(224,83,61,.1); border: 1px solid rgba(224,83,61,.3); color: var(--vendu); border-radius: 7px; padding: .75rem 1rem; font-size: .9rem; }

/* ════════════════════════════════════════════════════════════════
   À PROPOS
   ════════════════════════════════════════════════════════════════ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  padding: 2rem 0 4rem;
}
.about-text h2 { font-size: 1.2rem; margin: 1.5rem 0 .6rem; }
.about-text h2:first-child { margin-top: 0; }
.about-text p  { color: var(--text-muted); font-size: .9rem; line-height: 1.8; margin-bottom: 1rem; }
.about-values  { list-style: none; }
.about-values li { font-size: .9rem; color: var(--text-muted); padding: .3rem 0; line-height: 1.6; }
.about-values strong { color: var(--white); }

.about-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}
.about-info-card h3 { font-size: 1rem; margin-bottom: 1rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; font-size: .8rem; }
.about-dl { display: grid; grid-template-columns: auto 1fr; gap: .5rem .75rem; }
.about-dl dt { font-size: .8rem; color: var(--text-muted); }
.about-dl dd { font-size: .875rem; font-weight: 600; color: var(--white); }

/* ════════════════════════════════════════════════════════════════
   MENTIONS LÉGALES
   ════════════════════════════════════════════════════════════════ */
.legal-content { max-width: 720px; padding-bottom: 4rem; }
.legal-content h2 { font-size: 1.15rem; margin: 2rem 0 .6rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content p  { color: var(--text-muted); font-size: .9rem; line-height: 1.8; margin-bottom: .75rem; }
.legal-content a  { color: var(--blue); }

/* ════════════════════════════════════════════════════════════════
   PAGE DEFAULT
   ════════════════════════════════════════════════════════════════ */
.page-default { padding-bottom: 4rem; }
.page-content { max-width: 720px; color: var(--text-muted); font-size: .9rem; line-height: 1.8; }
.page-content p { margin-bottom: 1rem; }
.page-content h2, .page-content h3 { color: var(--white); margin: 1.5rem 0 .6rem; }

/* ════════════════════════════════════════════════════════════════
   CTA CONTACT SECTION
   ════════════════════════════════════════════════════════════════ */
.section-cta-contact { padding: 4rem 0; }
.cta-desc    { color: var(--text-muted); margin: .75rem 0 0; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  padding: 3.5rem 1.25rem 2.5rem;
}
.footer-brand .footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: .75rem;
}
.footer-tagline { font-size: .85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.footer-address { font-size: .82rem; color: var(--text-muted); line-height: 1.7; }
.footer-address a { color: var(--text-muted); }
.footer-address a:hover { color: var(--white); }

.footer-heading { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.btn-wa-footer {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #25D366;
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .75rem;
  text-decoration: none;
}
.btn-wa-footer:hover { background: #128C7E; color: var(--white); }
.footer-legal-link { margin-top: .4rem; }
.footer-legal-link a { font-size: .82rem; color: var(--text-muted); }
.footer-legal-link a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-bottom p { font-size: .78rem; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ════════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), background var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { background: #128C7E; transform: scale(1.1); color: var(--white); }
.whatsapp-float-label {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: var(--bg-dark);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .7rem;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-float-label { opacity: 1; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-info-card { position: static; }
}

@media (max-width: 768px) {
  /* Header */
  .site-nav    { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg-dark); border-bottom: 1px solid var(--border); padding: 1rem; z-index: 99; }
  .site-nav.open { display: block; }
  .nav-menu    { flex-direction: column; gap: .25rem; }
  .nav-menu li a { font-size: .95rem; padding: .6rem 1rem; }
  .lang-switcher { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { flex-wrap: wrap; position: relative; }

  /* Hero */
  .hero { min-height: 70vh; }
  .hero-content { padding: 3rem 1.25rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }

  /* Stats */
  .stat-divider { display: none; }
  .stats-inner  { gap: 0; }
  .stat-item    { padding: .6rem 1rem; }

  /* Filters */
  .filters-bar  { position: static; }
  .filters-inner { gap: .5rem; }
  .filter-group { width: calc(50% - .25rem); }
  .filter-group--check { width: 100%; }
  .filter-submit, .filter-reset { flex: 1; }

  /* Vehicles grid */
  .vehicles-grid--3 { grid-template-columns: 1fr; }
  @media (min-width: 480px) {
    .vehicles-grid--3 { grid-template-columns: repeat(2, 1fr); }
  }

  /* Single */
  .single-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .specs-dl { grid-template-columns: 1fr 1fr; }

  /* Export hero */
  .export-hero-flag { display: none; }
  .export-hero-inner { flex-direction: column; }
  .export-hero-ctas { flex-direction: column; }

  /* Export teaser */
  .export-teaser-flag { display: none; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-step { flex-direction: column; gap: 1rem; }
  .process-step-num { align-self: flex-start; }

  /* How */
  .how-step { flex-direction: column; gap: 1rem; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .footer-brand { grid-column: 1 / -1; }

  /* WhatsApp float */
  .whatsapp-float { width: 52px; height: 52px; bottom: 1.25rem; right: 1.25rem; }
  .whatsapp-float-label { display: none; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .filter-group { width: 100%; }
  .hero-title { font-size: 1.75rem; }
}

/* ════════════════════════════════════════════════════════════════
   SCROLLBAR
   ════════════════════════════════════════════════════════════════ */
::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ════════════════════════════════════════════════════════════════
   FOCUS (accessibilité)
   ════════════════════════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}
