/* =========================================================
   cote-vehicule.fr — feuille de styles
   Reprend fidèlement la maquette Claude Design (DSFR-like).
   ========================================================= */

:root {
  --cta: #000091;      /* couleur du bouton d'action principal (bleu France) */
  --blue: #000091;
  --blue-dark: #00006b;
  --plate: #12308f;
  --ink: #141726;
  --muted: #5a6478;
  --line: #e2e5ee;
  --bg: #f4f5f8;
  --danger: #c8102e;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  font-family: 'Public Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--blue-dark); }
button { font-family: inherit; }
input { font-family: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 2px; }

/* ---- animations ---- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes scanX  { 0% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
@keyframes pop    { 0% { transform: scale(.5); opacity: 0; } 60% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }
@keyframes drawCheck { from { stroke-dashoffset: 60; } to { stroke-dashoffset: 0; } }
@keyframes pulseDot { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }

.fade-up { animation: fadeUp .4s ease both; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}

/* ---- utilities ---- */
.wrap { max-width: 1240px; margin: 0 auto; }
[hidden] { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* =========================================================
   BRAND / WORDMARK
   ========================================================= */
.brand { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.brand__name { font-size: 19px; font-weight: 900; letter-spacing: -.5px; line-height: 1; }
.brand__name .dot { color: var(--blue); }
.brand__flag {
  display: flex; width: 100%; height: 3px; border-radius: 2px; overflow: hidden;
  box-shadow: 0 0 0 .5px rgba(20, 23, 38, .08);
}
.brand__flag i { flex: 1; }
.brand__flag i:nth-child(1) { background: #000091; }
.brand__flag i:nth-child(2) { background: #fff; }
.brand__flag i:nth-child(3) { background: #e1000f; }
.brand__tag { font-size: 9px; font-weight: 600; letter-spacing: .3px; color: var(--muted); margin-top: 1px; }

.badge-free {
  font-size: 11px; font-weight: 700; letter-spacing: .4px; color: var(--blue);
  background: #eef0ff; border: 1px solid #dce0ff; padding: 5px 12px;
  border-radius: 20px; text-transform: uppercase;
}

/* ---- top bar ---- */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1240px; margin: 0 auto; padding: 18px 44px 0;
}

/* =========================================================
   HERO
   ========================================================= */
.hero { display: flex; align-items: center; justify-content: center; padding: 36px 44px 44px; }
.hero__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 52px; max-width: 1240px; width: 100%;
}
.hero__left { flex: 1 1 360px; max-width: 460px; display: flex; flex-direction: column; }
.hero__right { flex: 0 1 620px; width: 620px; max-width: 100%; }
.hero__aside { margin-top: 0; }
.usp-line { display: none; }

.hero__title { margin: 0 0 14px; font-size: 37px; line-height: 1.08; font-weight: 800; letter-spacing: -1px; }
.hero__lede { margin: 0 0 22px; font-size: 16px; color: var(--muted); max-width: 400px; }

.usp { display: flex; flex-direction: column; gap: 10px; }
.usp li { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 600; list-style: none; }
.usp li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex: 0 0 auto; }
.usp { margin: 0; padding: 0; }

.trust { margin-top: 24px; padding-top: 20px; border-top: 1px solid #e6e8f0; }
.trust__label { font-size: 11px; font-weight: 600; letter-spacing: .2px; color: #8a92a4; margin-bottom: 12px; }
.trust__logos { display: flex; align-items: center; justify-content: flex-start; gap: 22px; }
.trust__logos img { height: 34px; width: auto; display: block; }
.trust__logos img.rounded { border-radius: 4px; }

/* ---- step tracker (états 2-5) ---- */
.tracker__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.tracker__title { margin: 0 0 28px; font-size: 30px; line-height: 1.15; font-weight: 800; letter-spacing: -.6px; }
.tracker { display: flex; flex-direction: column; gap: 0; }
.tracker__row { display: flex; align-items: center; gap: 14px; padding: 6px 0; }
.tracker__num {
  width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 14px; font-weight: 800; flex: 0 0 auto;
}
.tracker__num.on { background: var(--blue); color: #fff; }
.tracker__num.off { background: #fff; border: 2px solid #cfd5e2; color: #9aa2b5; }
.tracker__label { font-size: 16px; font-weight: 700; color: var(--ink); }
.tracker__label.dim { color: #9aa2b5; }
.tracker__bar { width: 2px; height: 16px; background: #d3d8e4; margin-left: 15px; }
.tracker__note { margin: 28px 0 0; font-size: 13px; color: var(--muted); font-weight: 500; }

/* =========================================================
   FUNNEL CARD
   ========================================================= */
.card {
  background: #fff; border: 1px solid #e6e8f0; border-radius: 20px;
  box-shadow: 0 30px 64px -34px rgba(20, 23, 38, .26), 0 2px 6px rgba(20, 23, 38, .05);
  padding: 36px 40px;
}
.card__inner { max-width: 480px; margin: 0 auto; }

.field-label {
  display: block; font-size: 12px; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.field-label--sm { font-size: 13.5px; text-transform: none; letter-spacing: 0; color: var(--ink); margin: 18px 0 8px; }
.err { margin: 9px 2px 0; font-size: 13px; color: var(--danger); font-weight: 600; }

/* ---- signature plate input ---- */
.plate {
  display: flex; align-items: stretch; height: 84px; border: 2.5px solid #14171f;
  border-radius: 12px; overflow: hidden; background: #fff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, .16), inset 0 -2px 4px rgba(0, 0, 0, .10);
}
.plate__eu {
  width: 56px; background: linear-gradient(180deg, #1a3aa0, #12308f);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 9px 0;
}
.plate__eu .f { color: #fff; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 20px; letter-spacing: .5px; }
.plate__input {
  flex: 1; border: none; outline: none; text-align: center; font-family: 'Oswald', sans-serif;
  font-weight: 600; font-size: 42px; letter-spacing: 5px; color: #14171f; background: transparent; text-transform: uppercase;
}
.plate__value {
  flex: 1; display: flex; align-items: center; justify-content: center; font-family: 'Oswald', sans-serif;
  font-weight: 600; font-size: 42px; letter-spacing: 5px; color: #14171f; position: relative; overflow: hidden;
}
.plate__scan {
  position: absolute; top: 0; bottom: 0; width: 56px;
  background: linear-gradient(90deg, transparent, rgba(18, 48, 143, .28), transparent);
  animation: scanX 1.3s ease-in-out infinite;
}

/* small plate (vehicle confirmation) */
.plate--sm { display: inline-flex; height: 48px; border-width: 2px; border-radius: 7px; box-shadow: inset 0 1px 2px rgba(0,0,0,.14); }
.plate--sm .plate__eu { width: 34px; padding: 5px 0; }
.plate--sm .plate__eu .f { font-size: 12px; }
.plate--sm .plate__value { padding: 0 18px; font-size: 26px; letter-spacing: 3px; white-space: nowrap; }
.plate-center { display: flex; justify-content: center; margin: 0 0 18px; }

/* ---- type choice ---- */
.choices { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice {
  position: relative; text-align: left; background: #fff; border: 1.5px solid var(--line);
  border-radius: 12px; padding: 15px; display: flex; flex-direction: column; gap: 9px; cursor: pointer;
}
.choice__radio {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid #c2c8d6;
  display: flex; align-items: center; justify-content: center;
}
.choice > span:nth-child(2) { display: flex; flex-direction: column; }
.choice__radio i { width: 11px; height: 11px; border-radius: 50%; background: var(--blue); display: none; }
.choice__title { font-size: 15px; font-weight: 700; line-height: 1.25; }
.choice__sub { font-size: 12.5px; color: var(--muted); margin-top: 3px; line-height: 1.3; }
.choice__ring { position: absolute; inset: 0; border: 2px solid var(--blue); border-radius: 12px; pointer-events: none; display: none; }
.choice.selected .choice__radio i,
.choice.selected .choice__ring { display: block; }

/* ---- primary CTA ---- */
.btn-cta {
  margin-top: 24px; width: 100%; min-height: 58px; background: var(--cta); color: #fff; border: none;
  border-radius: 12px; font-size: 17px; font-weight: 700; cursor: pointer; box-shadow: 0 8px 18px -8px var(--cta);
}
.btn-cta:hover { filter: brightness(1.06); }
.btn-blue {
  min-width: 260px; min-height: 54px; background: var(--blue); color: #fff; border: none;
  border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer;
}
.btn-blue:hover { background: var(--blue-dark); }

/* =========================================================
   SCAN (état 2)
   ========================================================= */
.scan__title { margin: 0 0 26px; font-size: 22px; font-weight: 800; text-align: center; }
.scan__progress { height: 6px; border-radius: 4px; background: #e6e8f0; margin: 26px 0 22px; overflow: hidden; }
.scan__progress i { display: block; height: 100%; background: var(--blue); border-radius: 4px; width: 33%; transition: width .5s ease; }
.scan__steps { display: flex; flex-direction: column; gap: 14px; max-width: 360px; margin: 0 auto; }
.scan__step { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 600; }
.scan__step .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); animation: pulseDot 1.1s ease-in-out infinite; flex: 0 0 auto; }

/* =========================================================
   VEHICLE (état 3)
   ========================================================= */
.veh__title { margin: 0 0 14px; font-size: 20px; font-weight: 800; text-align: center; }
.veh__body { display: flex; gap: 18px; align-items: stretch; }
.veh__media-wrap { width: 170px; flex: 0 0 auto; display: flex; flex-direction: column; }
.veh__media {
  width: 100%; border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  background: repeating-linear-gradient(135deg, #f1f3f9, #f1f3f9 9px, #e9ecf5 9px, #e9ecf5 18px);
  display: flex; align-items: center; justify-content: center; min-height: 150px;
}
.veh__media-note { margin: 6px 2px 0; font-size: 10.5px; line-height: 1.3; color: #9aa2b5; text-align: center; }
.veh__media.has-photo {
  background-color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.veh__media span {
  font-family: 'Oswald', monospace; font-size: 10.5px; letter-spacing: .3px; color: #9aa2b5;
  background: rgba(255, 255, 255, .72); padding: 3px 8px; border-radius: 5px; text-align: center; max-width: 150px;
}
.veh__info { flex: 1; min-width: 0; }
.veh__chip {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .6px; color: var(--blue);
  border: 1px solid #dce0ff; background: #eef0ff; padding: 3px 9px; border-radius: 6px; margin-bottom: 8px;
}
.veh__logo { height: 26px; width: auto; max-width: 96px; object-fit: contain; display: block; margin-bottom: 9px; }
.veh__name { font-size: 18px; font-weight: 800; line-height: 1.2; }
.veh__version { font-size: 13.5px; color: var(--muted); margin-top: 2px; }
.veh__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 14px; margin-top: 14px; }
.veh__k { font-size: 10px; text-transform: uppercase; letter-spacing: .4px; color: var(--muted); font-weight: 700; }
.veh__v { font-size: 14px; font-weight: 600; margin-top: 2px; }

.details { margin-top: 16px; border-top: 1px solid var(--line); }
.details__toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: none; border: none; padding: 12px 0 10px; cursor: pointer; text-align: left;
}
.details__toggle span { font-size: 13px; font-weight: 700; color: var(--ink); }
.details__chevron { width: 8px; height: 8px; border-right: 2px solid #8a92a4; border-bottom: 2px solid #8a92a4; transform: rotate(45deg); display: inline-block; margin-top: -3px; flex: 0 0 auto; }
.details.open .details__chevron { border-color: var(--blue); transform: rotate(-135deg); margin-top: 3px; }
.details__list { display: none; }
.details.open .details__list { display: block; animation: fadeUp .28s ease both; }
.details__row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; padding: 9px 0; border-top: 1px solid #eef0f5; }
.details__row .k { font-size: 12.5px; color: var(--muted); flex: 0 0 auto; }
.details__row .v { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; justify-content: flex-end; min-width: 0; }
.mono { font-family: ui-monospace, Menlo, monospace; font-size: 12.5px; font-weight: 600; letter-spacing: .4px; color: var(--ink); }
.field-code { font-size: 10px; color: #9aa2b5; flex: 0 0 auto; }
.link-btn { font-size: 11px; color: var(--blue); background: none; border: none; padding: 0; cursor: pointer; text-decoration: underline; }

.veh__notmine { text-align: center; margin: 14px 0 4px; }
.veh__notmine a { font-size: 13px; color: var(--muted); text-decoration: underline; }

.km-field { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 12px; overflow: hidden; height: 58px; }
.km-field input { flex: 1; border: none; outline: none; padding: 0 16px; font-size: 18px; font-weight: 600; background: transparent; }
.km-field .unit { padding: 0 16px; color: var(--muted); font-size: 15px; font-weight: 600; border-left: 1px solid var(--line); align-self: stretch; display: flex; align-items: center; }

/* not found */
.notfound { text-align: center; padding: 16px 0; }
.notfound__ico {
  width: 56px; height: 56px; border-radius: 50%; background: #fdeaec; border: 1px solid #f6cdd3;
  margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; color: var(--danger);
  font-size: 28px; font-weight: 800;
}
.notfound h2 { margin: 0 0 6px; font-size: 20px; font-weight: 800; }
.notfound p { margin: 0 auto 20px; font-size: 14.5px; color: var(--muted); max-width: 340px; }

/* =========================================================
   PHONE (état 4)
   ========================================================= */
.phone__title { margin: 0 0 8px; font-size: 23px; font-weight: 800; text-align: center; }
.phone__lede { margin: 0 auto 24px; font-size: 15px; color: var(--muted); text-align: center; max-width: 400px; }
.phone-field { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 12px; overflow: hidden; height: 58px; }
.phone-field__cc {
  padding: 0 15px; font-size: 17px; font-weight: 700; color: var(--ink); background: #f4f5f9;
  border-right: 1px solid var(--line); align-self: stretch; display: flex; align-items: center; gap: 8px;
}
.phone-field__cc .fr { display: inline-flex; border-radius: 2px; overflow: hidden; border: 1px solid #d5d9e4; }
.phone-field__cc .fr i { width: 7px; height: 13px; }
.phone-field__cc .fr i:nth-child(1) { background: #0055a4; }
.phone-field__cc .fr i:nth-child(2) { background: #fff; }
.phone-field__cc .fr i:nth-child(3) { background: #ef4135; }
.phone-field input { flex: 1; border: none; outline: none; padding: 0 16px; font-size: 18px; font-weight: 600; letter-spacing: .5px; background: transparent; }

.consent { display: flex; align-items: flex-start; gap: 12px; margin-top: 22px; cursor: pointer; }
.consent input { width: 20px; height: 20px; margin: 1px 0 0; flex: 0 0 auto; accent-color: #000091; }
.consent span { font-size: 13px; color: #485061; line-height: 1.55; }
.consent .hint { color: #9aa2b5; font-style: italic; }

/* =========================================================
   DONE (état 5)
   ========================================================= */
.done { text-align: center; padding: 14px 0; }
.done__check { width: 82px; height: 82px; margin: 0 auto 22px; animation: pop .5s cubic-bezier(.2, .8, .3, 1.2) both; }
.done__check path { stroke-dasharray: 60; animation: drawCheck .55s .2s ease both; }
.done h2 { margin: 0 0 12px; font-size: 24px; font-weight: 800; }
.done p { margin: 0 0 6px; font-size: 15.5px; color: #3a4152; }
.done p.narrow { margin: 0 auto; max-width: 340px; }
.done__tags { margin-top: 24px; display: inline-flex; gap: 10px; justify-content: center; }
.done__tags span {
  font-size: 12px; font-weight: 600; color: var(--muted); background: #f4f5f9;
  border: 1px solid var(--line); border-radius: 20px; padding: 6px 14px;
}
.done__reset { margin-top: 20px; }
.done__reset a { font-size: 13px; color: var(--muted); }

/* =========================================================
   COMMENT ÇA MARCHE
   ========================================================= */
.how { background: #fff; border-top: 1px solid #e6e8f0; }
.how__inner { max-width: 1000px; margin: 0 auto; padding: 40px 44px; }
.how__title { margin: 0 0 28px; font-size: 15px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; color: var(--muted); text-align: center; }
.how__grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
.how__step { flex: 1 1 240px; max-width: 300px; text-align: center; }
.how__num {
  width: 44px; height: 44px; border-radius: 50%; background: #eef0ff; border: 1px solid #dce0ff;
  color: var(--blue); font-size: 17px; font-weight: 800; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 14px;
}
.how__step h3 { font-size: 16px; font-weight: 800; margin: 0 0 5px; }
.how__step p { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin: 0; }

/* =========================================================
   CONTENU SEO + FAQ
   ========================================================= */
.seo { background: var(--bg); border-top: 1px solid #e6e8f0; }
.seo__inner { max-width: 680px; margin: 0 auto; padding: 56px 40px 12px; color: #2f3646; }
.seo section { margin-bottom: 42px; }
.seo h2 { margin: 0 0 14px; font-size: 23px; font-weight: 800; letter-spacing: -.3px; color: var(--ink); }
.seo p { margin: 0 0 16px; font-size: 15.5px; line-height: 1.72; }
.seo p:last-child { margin-bottom: 0; }
.seo__cta {
  display: inline-flex; align-items: center; gap: 6px; font-size: 14.5px; font-weight: 700;
  color: var(--blue); text-decoration: none; white-space: nowrap;
}

.faq h2 { margin-bottom: 6px; }
.faq__item { border-top: 1px solid var(--line); padding: 18px 0; }
.faq__item:last-of-type { border-bottom: 1px solid var(--line); }
.faq__q { font-size: 15.5px; font-weight: 800; color: var(--ink); margin-bottom: 6px; }
.faq__a { margin: 0; font-size: 15px; line-height: 1.7; }
.seo__disclaimer { margin: 24px 0 0; font-size: 11.5px; font-style: italic; color: #9aa2b5; line-height: 1.6; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--bg); border-top: 1px solid #e6e8f0; }
.footer__inner { max-width: 1000px; margin: 0 auto; padding: 26px 40px; text-align: center; }
.footer__note { margin: 0 0 8px; font-size: 12px; color: #8a92a4; }
.footer__links { display: flex; gap: 12px; justify-content: center; font-size: 12px; }
.footer__links a { color: #8a92a4; text-decoration: none; }
.footer__links a:hover { color: var(--blue); }
.footer__sep { color: #c9cede; }

/* footer minimal réservé au mobile (masqué sur desktop) */
.footer-mobile { display: none; }

/* =========================================================
   PAGE MENTIONS LÉGALES
   ========================================================= */
.legal-topbar { background: #fff; border-bottom: 1px solid #e6e8f0; }
.legal-topbar__inner { max-width: 760px; margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.legal-back { font-size: 13px; font-weight: 600; color: var(--muted); text-decoration: none; }
.legal { max-width: 760px; margin: 0 auto; padding: 44px 32px 64px; color: #2f3646; }
.legal h1 { margin: 0 0 8px; font-size: 30px; font-weight: 800; letter-spacing: -.5px; color: var(--ink); }
.legal__lede { margin: 0 0 26px; font-size: 14.5px; color: var(--muted); }
.legal__nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.legal__nav a {
  font-size: 13px; font-weight: 600; color: var(--blue); background: #eef0ff; border: 1px solid #dce0ff;
  padding: 8px 14px; border-radius: 20px; text-decoration: none;
}
.legal__card { background: #fff; border: 1px solid #e6e8f0; border-radius: 16px; padding: 8px 34px 34px; }
.legal__card section { padding-top: 26px; }
.legal__card section + section { margin-top: 14px; border-top: 1px solid var(--line); }
.legal__card h2 { margin: 0 0 16px; font-size: 20px; font-weight: 800; color: var(--ink); }
.legal__card h3 { margin: 0 0 6px; font-size: 14px; font-weight: 800; color: var(--ink); }
.legal__card p { margin: 0 0 16px; font-size: 14.5px; line-height: 1.7; }
.legal__card p:last-child { margin-bottom: 0; }
.legal .todo { color: #9aa2b5; }
.legal__meta { margin: 22px 0 0; font-size: 12px; color: #9aa2b5; line-height: 1.6; font-style: italic; }
.legal__return { margin-top: 24px; text-align: center; }
.legal__return a { font-size: 13.5px; font-weight: 600; color: var(--blue); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
/* ---- MOBILE : composition dédiée (maquette « Cote Vehicule ») ----
   En dessous de 1080px, la mise en page desktop à deux colonnes ne tient plus :
   on bascule sur la composition mobile recomposée (colonne unique intégrée). */
@media (max-width: 1079px) {
  /* la maquette mobile est un « téléphone » blanc : tout le fond passe en blanc,
     ce qui met la plaque (bordure noire) en avant. */
  body { background: #fff; }
  .hero { background: #fff; }
  .seo { background: #fff; border-top-color: #eceef4; }
  .footer { background: #fff; border-top-color: #eceef4; }

  .topbar { padding: 16px 20px 0; gap: 12px; }
  /* badge réduit (dimensions maquette mobile) et jamais coupé sur deux lignes */
  .badge-free { font-size: 10.5px; padding: 3px 9px; white-space: nowrap; flex: 0 0 auto; }
  .hero { padding: 12px 20px 44px; }

  /* colonne unique centrée, réordonnée : intro → carte → réassurance */
  .hero__inner { flex-direction: column; align-items: stretch; gap: 0; max-width: 430px; margin: 0 auto; }
  .hero__left { display: contents; }
  #intro-home { order: 1; }
  #intro-tracker { display: none; }               /* pas de suivi d'étapes sur mobile */
  .hero__right { order: 2; width: 100%; flex-basis: auto; }
  #hero-aside { order: 3; margin-top: 14px; }

  /* titres */
  .hero__title { font-size: 24px; line-height: 1.18; letter-spacing: -.4px; margin: 6px 0 8px; }
  .hero__lede { font-size: 14.5px; margin: 0 0 20px; max-width: none; }

  /* la carte devient un simple conteneur intégré (sans ombre ni bordure) */
  .card { background: transparent; border: none; box-shadow: none; border-radius: 0; padding: 0; }
  .card__inner { max-width: none; }

  /* plaque — dimensions mobile */
  .plate { height: 66px; border-width: 2px; border-radius: 9px; }
  .plate__eu { width: 44px; }
  .plate__eu .f { font-size: 16px; }
  .plate__input, .plate__value { font-size: 31px; letter-spacing: 3px; }
  .field-label { font-size: 11px; margin-bottom: 7px; }

  /* choix propriétaire / acheteur en lignes (pastille à gauche) */
  .choices { display: flex; flex-direction: column; grid-template-columns: none; gap: 10px; margin-top: 18px; }
  .choice { flex-direction: row; align-items: center; gap: 12px; padding: 13px 14px; }
  .choice__title { font-size: 14.5px; }
  .choice__sub { font-size: 12px; }

  /* CTA + réassurance sous le bouton */
  .btn-cta { margin-top: 20px; min-height: 54px; border-radius: 11px; font-size: 16.5px; }
  .usp-list { display: none; }
  .usp-line { display: block; text-align: center; font-size: 12.5px; color: var(--muted); font-weight: 500; margin: 14px 0 0; }
  .trust { text-align: center; margin-top: 18px; padding-top: 16px; border-top-color: #eff1f6; }
  .trust__label { font-size: 10.5px; margin-bottom: 10px; }
  .trust__logos { justify-content: center; gap: 18px; }
  .trust__logos img { height: 30px; }

  /* « Comment ça marche » : absent de la maquette mobile */
  .how { display: none; }

  /* footer minimal entre le funnel et le SEO (comme la maquette) ;
     le footer bas est masqué sur mobile. */
  .footer-mobile { display: block; text-align: center; padding: 14px 20px 20px; border-top: 1px solid #eceef4; }
  .footer-mobile .footer__note { font-size: 11px; }
  .footer-mobile .footer__links { font-size: 11px; }
  .footer { display: none; }

  /* contenu SEO compacté */
  .seo__inner { padding: 22px 20px 24px; }
  .seo section { margin-bottom: 26px; }
  .seo h2 { font-size: 16.5px; letter-spacing: -.2px; margin-bottom: 10px; }
  .seo p { font-size: 13.5px; line-height: 1.7; margin-bottom: 12px; }
  .seo__cta { font-size: 13px; }
  .faq h2 { margin-bottom: 2px; }
  .faq__item { padding: 15px 0; }
  .faq__q { font-size: 14.5px; }
  .faq__a { font-size: 13.5px; }
  .seo__disclaimer { font-size: 11px; }
  .footer__inner { padding: 22px 20px; }
}

@media (max-width: 400px) {
  .hero__title { font-size: 23px; }
  .plate__input, .plate__value { font-size: 28px; letter-spacing: 2px; }
}

/* le parcours véhicule reste lisible sur très petit écran */
@media (max-width: 480px) {
  .veh__body { flex-direction: column; }
  .veh__media-wrap { width: 100%; }
  .veh__media { min-height: 120px; }
}
