/* ========================================
   VROOM VTC — site public
   Design importe depuis Claude Design
   ======================================== */

:root {
  --bg: #FAFAF6;
  --bg-alt: #EFEFE7;
  --ink: #12140F;
  --ink-70: #44473F;
  --ink-55: #5B5E54;
  --ink-40: #6B6E62;
  --ink-30: #8C8F83;
  --green: #00A86B;
  --green-dark: #008152;
  --green-light: #5FE3AF;
  /* Orange chaud : prix, badges de rarete, elements a regarder en premier */
  --orange: #FF5A1F;
  --orange-dark: #D63F0A;
  --paper: #F7F7F2;
  --danger: #B3261E;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Archivo, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--ink); }
::selection { background: var(--green); color: #fff; }
input, select, textarea, button { font-family: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-dark);
}
.eyebrow.on-dark { color: var(--green-light); }
.eyebrow.on-green { color: inherit; opacity: 0.8; }
h1, h2, h3 { text-transform: uppercase; letter-spacing: -0.01em; margin: 0; }
h1 { font-weight: 900; }
h2 { font-weight: 900; font-size: clamp(34px, 5vw, 66px); line-height: 1; }
h3 { font-weight: 800; }
.accent { color: var(--green); }
.accent-light { color: var(--green-light); }
/* Dans le titre d'accueil, c'est le prix qu'on veut voir en premier */
.hero-title .accent { color: var(--orange); }

/* ---- Boutons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 999px; cursor: pointer;
  font-weight: 700; font-size: 15px; padding: 16px 28px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
/* Fond vert fonce : le blanc dessus reste lisible (contraste 4,9:1) */
.btn-primary { background: var(--green-dark); color: #fff; }
.btn-primary:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: none; border: 1px solid rgba(18, 20, 15, 0.25); color: var(--ink); font-weight: 600; }
.btn-ghost:hover { border-color: var(--ink); background: rgba(18, 20, 15, 0.05); color: var(--ink); }
.btn-block { width: 100%; padding: 17px 28px; font-size: 16px; font-weight: 800; }
.btn-lg { padding: 19px 34px; font-size: 16px; font-weight: 800; }
/* Vert de marque WhatsApp. Texte encre (11:1) : le blanc ne passerait pas le contraste AA. */
.btn-wa { background: #25D366; color: var(--ink); }
.btn-wa:hover { background: #1BAE51; color: var(--ink); }
.btn-wa[hidden] { display: none; }

/* ---- Header ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  backdrop-filter: blur(14px); background: rgba(250, 250, 246, 0.85);
  border-bottom: 1px solid rgba(18, 20, 15, 0.1);
}
.site-header .wrap {
  padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  color: var(--ink); font-weight: 900; text-transform: uppercase;
  font-size: 22px; letter-spacing: -0.01em; white-space: nowrap;
}
.brand span { color: var(--green); }
.site-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 500; }
.site-nav a { color: var(--ink-55); }
.site-nav a:hover { color: var(--ink); }
.site-nav .nav-cta {
  background: var(--green-dark); color: #fff; padding: 11px 20px; border-radius: 999px; font-weight: 700;
}
.site-nav .nav-cta:hover { background: var(--ink); color: #fff; }
.site-nav .nav-wa { color: #0C6157; font-weight: 700; }
.site-nav .nav-wa[hidden] { display: none; }

/* ---- Animations d'apparition ---- */
[data-hero] {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.h1-line > [data-hero] { display: block; transform: translateY(0.55em) rotate(2deg); }
[data-hero].shown { opacity: 1; transform: translateY(0) rotate(0deg); }
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.9, 0.2, 1);
}
[data-reveal].shown { opacity: 1; transform: translateY(0); }

/* ---- Hero ---- */
#top { position: relative; width: 100%; padding-top: 132px; }
.hero-place {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px; font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-40);
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none;
  animation: pulseDot 2s ease-in-out infinite;
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 48px; align-items: center;
}
.hero-title {
  font-size: clamp(42px, 5.4vw, 76px); line-height: 0.94;
  letter-spacing: -0.02em; margin: 22px 0 0;
}
/* La ligne de prix est la plus longue : elle doit tenir sur une seule ligne. */
.hero-title .accent { font-size: 0.74em; }
.h1-line { display: block; overflow: hidden; }
.hero-incl {
  margin: 26px 0 0; font-size: 17px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
}
.hero-incl i { color: var(--green-dark); font-style: normal; }
.hero-incl b { color: var(--green-dark); font-weight: 800; }
.hero-stock {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 16px;
  padding: 9px 15px; border-radius: 999px; background: rgba(0, 168, 107, 0.12);
  color: var(--green-dark); font-size: 14px; font-weight: 600;
}
.hero-stock[hidden] { display: none; }
.hero-stock b { font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-micro { margin-top: 16px; font-size: 13px; color: var(--ink-40); }
.hero-lede {
  margin: 44px 0 0; padding-top: 30px; border-top: 1px solid rgba(18, 20, 15, 0.14);
  max-width: 60ch; font-size: 17px; line-height: 1.6;
  color: var(--ink-70); text-wrap: pretty;
}
.hero-img {
  border-radius: 24px; overflow: hidden;
  height: min(58vh, 480px); position: relative;
}
.hero-tag {
  position: absolute; left: 18px; bottom: 18px; padding: 14px 20px;
  border-radius: 18px; background: rgba(250, 250, 246, 0.94);
  backdrop-filter: blur(8px); box-shadow: 0 8px 24px rgba(18, 20, 15, 0.14);
}
.hero-tag span {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-40);
}
.hero-tag div { display: flex; align-items: baseline; gap: 5px; margin-top: 2px; }
.hero-tag b {
  font-weight: 900; font-size: 46px; line-height: 1; letter-spacing: -0.02em; color: var(--orange);
}
.hero-tag div { font-weight: 900; font-size: 22px; color: var(--orange); }
.hero-tag i { font-style: normal; font-size: 13px; font-weight: 500; color: var(--ink-40); }

/* ---- Bandeau defilant ---- */
.marquee {
  margin-top: 64px; overflow: hidden; padding: 18px 0; background: var(--bg-alt);
  border-top: 1px solid rgba(18, 20, 15, 0.12);
  border-bottom: 1px solid rgba(18, 20, 15, 0.12);
}
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-row {
  display: flex; align-items: center; gap: 42px; padding-right: 42px; white-space: nowrap;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-40);
}
.marquee-row i { color: var(--green); font-style: normal; }

/* ---- Avantages ---- */
#avantages { background: var(--ink); color: var(--paper); }
#avantages .wrap { padding: 110px 24px; }
.section-head { margin-bottom: 52px; }
.section-head h2 { margin-top: 14px; max-width: 22ch; }
.services {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: rgba(247, 247, 242, 0.14); border-radius: 20px; overflow: hidden;
}
.service { background: var(--ink); padding: 40px 32px 46px; }
.service-num { font-family: var(--mono); font-size: 12px; color: var(--ink-30); }
.service h3 { margin: 20px 0 0; font-size: 26px; letter-spacing: 0; }
.service p { margin: 12px 0 0; font-size: 16px; line-height: 1.6; color: #B1B4A8; text-wrap: pretty; }

/* ---- Flotte ---- */
#flotte { max-width: 1240px; margin: 0 auto; padding: 110px 24px; }
.fleet-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 52px;
}
.fleet-head h2 { margin-top: 14px; }
.fleet-head p { margin: 0; max-width: 34ch; font-size: 16px; line-height: 1.6; color: var(--ink-55); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.car {
  cursor: pointer; background: #fff; border: 1px solid rgba(18, 20, 15, 0.09);
  border-radius: 20px; overflow: hidden; box-shadow: 0 1px 2px rgba(18, 20, 15, 0.04);
  transition: border-color 0.25s, box-shadow 0.25s, opacity 0.8s ease-out,
              transform 0.8s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.car:hover { border-color: rgba(0, 168, 107, 0.5); box-shadow: 0 18px 40px rgba(18, 20, 15, 0.12); }
.car-photo { aspect-ratio: 16 / 10; position: relative; background: var(--bg-alt); }
.car-body { padding: 22px 22px 24px; }
.car-top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.car-top h3 { margin: 0; font-size: 22px; letter-spacing: 0; }
.car-energy {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green-dark); white-space: nowrap;
}
.car-note { margin: 10px 0 0; font-size: 15px; line-height: 1.55; color: var(--ink-55); }
.car-foot { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.car-price { display: flex; align-items: baseline; gap: 5px; }
.car-price b { font-weight: 900; font-size: 26px; color: var(--orange); }
.car-price span { font-size: 12px; color: var(--ink-30); }
.car-cta {
  display: inline-flex; align-items: center; gap: 8px; color: var(--green-dark);
  font-weight: 700; font-size: 14px; white-space: nowrap;
}

/* ---- A propos ---- */
#apropos { background: var(--bg-alt); border-top: 1px solid rgba(18, 20, 15, 0.1); }
#apropos .wrap {
  padding: 110px 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px; align-items: center;
}
#apropos h2 { margin-top: 14px; }
#apropos p { margin: 22px 0 0; font-size: 17px; line-height: 1.7; color: var(--ink-70); text-wrap: pretty; }
#apropos p + p { margin-top: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chips span {
  background: #fff; border: 1px solid rgba(18, 20, 15, 0.12); border-radius: 999px;
  padding: 10px 18px; font-size: 14px; font-weight: 600;
}
.about-img { border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 5; position: relative; }

/* ---- Reservation ---- */
#reserver { background: var(--green-dark); color: #F1F7F0; }
#reserver .wrap {
  padding: 110px 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px; align-items: start;
}
#reserver h2 { font-size: clamp(38px, 5.6vw, 76px); line-height: 0.98; margin-top: 14px; max-width: 14ch; }
#reserver .lede { margin: 22px 0 0; font-size: 17px; line-height: 1.7; max-width: 42ch; opacity: 0.9; text-wrap: pretty; }
.tel-block { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.tel-big { color: #F1F7F0; font-weight: 900; font-size: clamp(28px, 3.6vw, 44px); letter-spacing: -0.01em; }
.tel-big:hover { color: var(--ink); }
.tel-note { font-size: 15px; opacity: 0.85; }
.form-card { background: var(--bg); color: var(--ink); border-radius: 24px; padding: 36px 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid label, .field {
  display: flex; flex-direction: column; gap: 7px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-70);
}
.form-grid .full { grid-column: 1 / -1; }
.field-choice { display: flex; flex-direction: column; gap: 7px; }
.field-legend {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--ink-70);
}
.choices { display: flex; gap: 10px; flex-wrap: wrap; }
.choice {
  flex: 1 1 140px; padding: 13px 16px; border-radius: 12px; cursor: pointer;
  border: 1px solid rgba(18, 20, 15, 0.22); background: #fff; color: var(--ink-70);
  font-size: 15px; font-weight: 600; font-family: inherit;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.choice:hover { border-color: var(--ink); }
.choice.on {
  border-color: var(--green-dark); background: var(--green-dark); color: #fff; font-weight: 700;
}
input, select, textarea {
  border: 1px solid rgba(18, 20, 15, 0.22); border-radius: 12px; padding: 13px 15px;
  font-size: 15px; background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--green); outline-offset: -1px; }
textarea { resize: vertical; }
.form-msg { grid-column: 1 / -1; color: var(--danger); font-size: 14px; font-weight: 600; }
.form-msg[hidden] { display: none; }
.form-ok {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 14px; padding: 30px 10px;
}
.form-ok[hidden] { display: none; }
.check {
  width: 56px; height: 56px; flex: none; border-radius: 50%; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.form-ok h3 { margin: 0; font-weight: 900; font-size: 26px; }
.form-ok p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-55); }

/* ---- Avis ---- */
#avis { max-width: 1240px; margin: 0 auto; padding: 110px 24px; }
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.review {
  margin: 0; background: #fff; border: 1px solid rgba(18, 20, 15, 0.09); border-radius: 20px;
  padding: 32px 30px 28px; display: flex; flex-direction: column; gap: 22px;
}
.stars { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--green-dark); }
.review blockquote {
  margin: 0; font-size: 20px; font-weight: 500; line-height: 1.45;
  letter-spacing: -0.01em; text-wrap: pretty;
}
.review figcaption { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: var(--green-dark);
}
.review-name { font-size: 15px; font-weight: 700; }
.review-meta { font-size: 13px; color: var(--ink-30); }

/* ---- Footer ---- */
.site-footer { border-top: 1px solid rgba(18, 20, 15, 0.1); }
.site-footer .wrap {
  padding: 36px 24px 54px; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 20px; font-size: 13px; color: var(--ink-30);
}
.site-footer .brand { font-size: 20px; }
.footer-legal { font-family: var(--mono); letter-spacing: 0.08em; }
.footer-legal a { color: inherit; opacity: 0.7; }

/* ---- Overlay reservation ---- */
#booking { position: fixed; inset: 0; z-index: 250; background: var(--bg); overflow: auto; }
#booking[hidden] { display: none; }
#booking .wrap { padding: 24px 24px 80px; }
.booking-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(18, 20, 15, 0.12);
}
.booking-bar .brand { font-size: 24px; }
.btn-back { padding: 11px 20px; font-size: 14px; font-weight: 600; }
.booking-cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px; margin-top: 40px; align-items: start;
}
.booking-cols[hidden], .booking-ok[hidden] { display: none; }
.booking-photo {
  border-radius: 20px; overflow: hidden; aspect-ratio: 16 / 11;
  position: relative; background: var(--bg-alt);
}
.car-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  background: #fff; color: var(--ink); border: 1px solid rgba(18, 20, 15, 0.18);
  padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: 13px; cursor: pointer;
}
.chip.on { background: var(--green-dark); color: #fff; }
.booking-title { font-size: clamp(34px, 5vw, 60px); line-height: 0.95; margin: 10px 0 0; }
.booking-note { margin: 14px 0 0; font-size: 16px; line-height: 1.6; color: var(--ink-55); text-wrap: pretty; }
.booking-price { display: flex; align-items: baseline; gap: 8px; margin-top: 18px; }
.booking-price b { font-weight: 900; font-size: 40px; }
.booking-price span { font-size: 14px; color: var(--ink-30); }
.tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.tags span { background: var(--bg-alt); border-radius: 999px; padding: 8px 14px; font-size: 13px; font-weight: 600; }
.block-label {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--ink-70);
}
.opts { display: flex; flex-direction: column; gap: 8px; margin-top: 10px; max-width: 460px; }
.opt {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff; color: var(--ink); border: 1px solid rgba(18, 20, 15, 0.2);
  padding: 12px 16px; border-radius: 12px; cursor: pointer; text-align: left;
}
.opt.on { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.opt-name { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; }
.opt-mark { width: 18px; text-align: center; }
.opt-price { font-family: var(--mono); font-size: 13px; white-space: nowrap; }
.rdv { margin-top: 32px; padding-top: 26px; border-top: 1px solid rgba(18, 20, 15, 0.12); }
.rdv h3 { margin: 0; font-size: 18px; letter-spacing: 0.02em; }
.rdv > p { margin: 8px 0 0; font-size: 14px; color: var(--ink-30); }
.rdv-form { margin-top: 18px; display: flex; flex-direction: column; gap: 16px; max-width: 460px; }
.rdv-form input, .rdv-form textarea { padding: 14px 16px; font-size: 16px; }
.rdv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.slots { display: flex; flex-wrap: wrap; gap: 8px; }
.slot {
  background: #fff; color: var(--ink); border: 1px solid rgba(18, 20, 15, 0.2);
  padding: 12px 18px; border-radius: 12px; font-weight: 700; font-size: 15px; cursor: pointer;
}
.slot.on { background: var(--green-dark); color: #fff; }
.rdv-error { color: var(--danger); font-size: 14px; font-weight: 600; }
.rdv-error[hidden] { display: none; }
.booking-ok {
  max-width: 620px; margin: 80px auto 0; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.booking-ok .check { width: 64px; height: 64px; font-size: 28px; }
.booking-ok h2 { font-size: clamp(30px, 4.5vw, 52px); }
.booking-ok p { margin: 0; font-size: 17px; line-height: 1.6; color: var(--ink-55); text-wrap: pretty; }
.booking-ok .opts-summary { font-size: 15px; color: var(--ink-70); }
.booking-ok .opts-summary[hidden] { display: none; }
.booking-ok .opts-summary b { font-weight: 700; }

/* ---- Bandeau promo ---- */
.promo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 95;
  background: var(--ink); color: var(--paper);
}
.promo-bar[hidden] { display: none; }
.promo-bar .wrap {
  padding: 12px 24px; display: flex; align-items: center; gap: 14px;
  font-size: 14px; line-height: 1.3;
}
.promo-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--orange-dark); color: #fff; padding: 5px 10px; border-radius: 999px; flex: none;
}
.promo-bar b { font-weight: 800; }
.promo-detail { color: #A9AC9F; font-size: 13px; }
.promo-cta { color: var(--orange); font-weight: 700; white-space: nowrap; margin-left: auto; }
.promo-cta:hover { color: #fff; }
.promo-close {
  background: none; border: none; color: #7E8175; font-size: 22px; line-height: 1;
  cursor: pointer; padding: 0 2px;
}
.promo-close:hover { color: var(--paper); }
body.has-promo .site-header { top: var(--promo-h, 45px); }
body.has-promo #top { padding-top: calc(131px + var(--promo-h, 45px)); }

/* ---- Hero : reassurance ---- */
.hero-live {
  font-family: inherit; color: var(--green-dark); font-weight: 700; letter-spacing: 0.1em;
}
.hero-micro { flex-basis: 100%; font-size: 13px; color: var(--ink-30); }
.trustbar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; margin-top: 34px; background: rgba(18, 20, 15, 0.12);
  border: 1px solid rgba(18, 20, 15, 0.12); border-radius: 18px; overflow: hidden;
}
.trust { background: var(--bg); padding: 20px 22px; }
.trust-val { display: flex; align-items: baseline; gap: 8px; font-weight: 900; font-size: 26px; }
.trust-lab {
  margin-top: 4px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-30);
}
.stars-sm { color: var(--green-dark); font-size: 14px; letter-spacing: 0.08em; }

/* ---- Etapes ---- */
#etapes .wrap { padding: 110px 24px 0; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.step {
  position: relative; background: #fff; border: 1px solid rgba(18, 20, 15, 0.09);
  border-radius: 20px; padding: 34px 28px 28px;
}
.step-num {
  width: 42px; height: 42px; border-radius: 50%; background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 18px;
}
.step h3 { margin: 20px 0 0; font-size: 22px; letter-spacing: 0; }
.step p { margin: 12px 0 0; font-size: 15px; line-height: 1.6; color: var(--ink-55); text-wrap: pretty; }
.step-time {
  margin-top: 18px; display: inline-block; background: var(--bg-alt); border-radius: 999px;
  padding: 7px 14px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-dark);
}

/* ---- Filtres flotte ---- */
.filters { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin: -20px 0 32px; }
.filter {
  background: #fff; border: 1px solid rgba(18, 20, 15, 0.16); border-radius: 999px;
  padding: 10px 18px; font-size: 14px; font-weight: 600; color: var(--ink-70); cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.on { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.filter-count { margin-left: auto; font-family: var(--mono); font-size: 12px; color: var(--ink-30); }
.fleet-empty { margin-top: 30px; text-align: center; color: var(--ink-30); font-size: 15px; }
.fleet-empty[hidden] { display: none; }

/* ---- Badges de disponibilite ---- */
.car-photo .badges, .booking-photo .badges { position: absolute; inset: 12px 12px auto 12px; }
.badge {
  display: inline-block; border-radius: 999px; padding: 7px 13px; margin: 0 6px 6px 0;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.badge-hot { background: var(--orange-dark); color: #fff; }
.badge-last { background: var(--orange-dark); color: #fff; }
.badge-full { background: rgba(18, 20, 15, 0.82); color: #C9CCC0; }
.badge-ok { background: rgba(250, 250, 246, 0.9); color: var(--ink-70); }
.car.complet { opacity: 0.72; }
.car.complet .car-cta { color: var(--ink-30); }
.stock-badge {
  position: absolute; top: 14px; left: 14px; background: var(--orange-dark); color: #fff;
  border-radius: 999px; padding: 8px 15px; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.stock-badge[hidden] { display: none; }
.car-week { font-family: var(--mono); font-size: 11px; color: var(--ink-30); margin-top: 3px; }
.booking-week { margin-top: 6px; font-family: var(--mono); font-size: 13px; color: var(--ink-40); }

/* ---- Rassurance sous les CTA ---- */
.reassure {
  display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 14px;
  font-size: 13px; font-weight: 600; color: var(--ink-40);
}

/* ---- Simulateur ---- */
#simulateur { background: var(--bg-alt); border-top: 1px solid rgba(18, 20, 15, 0.1); }
#simulateur .wrap { padding: 110px 24px; }
.simu {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 26px; align-items: stretch;
}
.simu-inputs {
  background: #fff; border: 1px solid rgba(18, 20, 15, 0.09); border-radius: 22px;
  padding: 34px 32px; display: flex; flex-direction: column; gap: 26px;
}
.simu-field { display: flex; flex-direction: column; gap: 10px; }
.simu-label {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-70);
}
.simu-label b { font-family: var(--mono); font-size: 17px; color: var(--green-dark); letter-spacing: 0; }
.simu-field input[type=range] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; padding: 0;
  border: none; border-radius: 999px; background: var(--bg-alt); cursor: pointer;
}
.simu-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); border: 4px solid #fff; box-shadow: 0 2px 8px rgba(18, 20, 15, 0.25);
}
.simu-field input[type=range]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%; border: 4px solid #fff;
  background: var(--green); box-shadow: 0 2px 8px rgba(18, 20, 15, 0.25);
}
.simu-help { margin: auto 0 0; font-size: 13px; color: var(--ink-30); }
.simu-out {
  background: var(--ink); color: var(--paper); border-radius: 22px; padding: 34px 32px;
  display: flex; flex-direction: column;
}
.simu-kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green-light);
}
.simu-net { display: flex; align-items: baseline; gap: 8px; margin-top: 10px; }
.simu-net b { font-weight: 900; font-size: clamp(46px, 6vw, 74px); line-height: 0.9; letter-spacing: -0.02em; color: var(--green-light); }
.simu-net span { font-size: 14px; color: #9EA195; }
.simu-month { margin-top: 8px; font-size: 15px; color: #B1B4A8; }
.simu-month b { color: var(--paper); font-weight: 800; }
.simu-detail { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 1px; }
.simu-detail li {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 13px 0; border-bottom: 1px solid rgba(247, 247, 242, 0.12); font-size: 14px;
}
.simu-detail li span { color: #9EA195; }
.simu-detail li i { font-style: normal; font-family: var(--mono); font-size: 12px; opacity: 0.7; }
.simu-detail li b { font-weight: 800; font-size: 16px; }
.simu-out .btn { margin-top: 26px; }
.simu-disclaimer { margin: 14px 0 0; font-size: 12px; line-height: 1.5; color: #7E8175; }

/* ---- Comparatif ---- */
#comparatif .wrap { padding: 110px 24px 0; }
.compare {
  background: #fff; border: 1px solid rgba(18, 20, 15, 0.09);
  border-radius: 22px; overflow: hidden;
}
.compare table { width: 100%; border-collapse: collapse; }
.compare th, .compare td { padding: 16px 22px; text-align: left; font-size: 15px; }
.compare thead th {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-30); border-bottom: 1px solid rgba(18, 20, 15, 0.12); font-weight: 500;
}
.compare thead th.col-us { color: var(--green-dark); }
.compare tbody tr + tr td { border-top: 1px solid rgba(18, 20, 15, 0.07); }
.compare tbody td:first-child { color: var(--ink-55); }
.compare tbody td:last-child { color: var(--ink-30); }
.compare .col-us { background: rgba(0, 168, 107, 0.05); color: var(--ink); }
.compare tbody .col-us b { font-weight: 800; }
.compare tbody .col-us b::before { content: '✓ '; color: var(--green-dark); }

/* ---- Avis : note globale ---- */
.avis-note { margin-top: 16px; font-size: 15px; color: var(--ink-55); }
.avis-note b { font-weight: 800; color: var(--ink); }

/* ---- Points de reassurance section reservation ---- */
.reserve-points { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.reserve-points li { position: relative; padding-left: 26px; font-size: 15px; opacity: 0.95; }
.reserve-points li::before { content: '✓'; position: absolute; left: 0; font-weight: 800; }

/* ---- FAQ ---- */
#faq { background: var(--bg-alt); border-top: 1px solid rgba(18, 20, 15, 0.1); }
#faq .wrap { padding: 110px 24px; }
.faq-list {
  max-width: 900px; background: #fff; border: 1px solid rgba(18, 20, 15, 0.09);
  border-radius: 22px; overflow: hidden;
}
.faq-item + .faq-item { border-top: 1px solid rgba(18, 20, 15, 0.08); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 26px; font-size: 17px; font-weight: 700; color: var(--ink);
}
.faq-q:hover { color: var(--green-dark); }
.faq-q .faq-sign { flex: none; color: var(--green-dark); font-size: 24px; font-weight: 400; transition: transform 0.25s; }
.faq-item.open .faq-sign { transform: rotate(45deg); }
.faq-r {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  font-size: 15px; line-height: 1.65; color: var(--ink-55);
}
.faq-r p { margin: 0; padding: 0 26px 24px; max-width: 70ch; text-wrap: pretty; }
.faq-item.open .faq-r { max-height: 340px; }
.faq-foot { margin-top: 26px; font-size: 15px; color: var(--ink-55); }
.faq-foot a { font-weight: 700; }

/* ---- Barre d'action mobile ---- */
.sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(250, 250, 246, 0.94); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(18, 20, 15, 0.12);
  transform: translateY(110%); transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.sticky-cta.on { transform: translateY(0); }
.sticky-cta .btn { flex: 1; padding: 14px 16px; font-size: 14px; }
.sticky-cta .btn-primary { flex: 1.5; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-img { height: min(46vh, 340px); }
}
@media (max-width: 900px) {
  .simu { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .site-nav { gap: 14px; font-size: 13px; }
  .site-nav a:not(.nav-cta):not(.nav-wa) { display: none; }
  #avantages .wrap, #apropos .wrap, #reserver .wrap, #flotte, #avis,
  #simulateur .wrap, #faq .wrap { padding: 72px 20px; }
  #etapes .wrap, #comparatif .wrap { padding: 72px 20px 0; }
  .form-grid, .rdv-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  /* Le tag et le detail sont sacrifies : sans ca la croix de fermeture sort de l'ecran. */
  .promo-detail, .promo-tag { display: none; }
  .promo-bar .wrap { padding: 10px 16px; font-size: 13px; gap: 10px; }
  .promo-cta { margin-left: auto; }
  body.has-promo #top { padding-top: calc(123px + var(--promo-h, 45px)); }
  .sticky-cta { display: flex; }
  body { padding-bottom: 0; }
  .site-footer .wrap { padding-bottom: 96px; }
  .hero-place { font-size: 10px; letter-spacing: 0.08em; gap: 8px; }
  .hero-incl { font-size: 15px; gap: 8px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-tag { padding: 11px 16px; }
  .hero-tag b { font-size: 34px; }
  .hero-tag div { font-size: 18px; }
  .trustbar { grid-template-columns: 1fr 1fr; }
  .compare th, .compare td { padding: 13px 14px; font-size: 14px; }
  .simu-inputs, .simu-out { padding: 26px 22px; }
}

/* ---- Keyframes ---- */
@keyframes pulseDot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.7); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; } }
