/* =========================================================
   ECO ASSISTANCE — Dépannage auto/moto & transport de véhicules
   Feuille de style unique, mobile-first, sans JS.
   Marque : bleu marine + bleu électrique + ambre (gyrophares).
   ========================================================= */

:root {
  --navy:        #13315c;
  --navy-900:    #0b1f3d;
  --navy-800:    #0f2950;
  --blue:        #1c8ed6;
  --blue-600:    #1577b3;
  --cyan:        #36b5e8;
  --amber:       #ffb02e;
  --amber-600:   #f59300;
  --ink:         #0f1b2d;
  --muted:       #586a80;
  --line:        #e2e9f1;
  --bg:          #ffffff;
  --bg-soft:     #f4f7fb;
  --bg-navy-soft:#eef3fa;
  --white:       #ffffff;
  --success:     #1ca06a;

  --radius:      14px;
  --radius-sm:   10px;
  --shadow:      0 10px 30px rgba(15,40,80,.10);
  --shadow-sm:   0 4px 14px rgba(15,40,80,.08);
  --maxw:        1140px;
  --callbar-h:   62px;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* ---------- Reset léger ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-600); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.2; color: var(--navy); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(1.85rem, 4.6vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 3.3vw, 2.15rem); font-weight: 800; }
h3 { font-size: 1.18rem; font-weight: 700; }
p  { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.15rem; }
strong { color: var(--navy); }

/* ---------- Accessibilité ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--navy); color: #fff; padding: .7rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
.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; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }
.section { padding: 56px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #dbe6f4; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section__head { max-width: 720px; margin: 0 auto 34px; text-align: center; }
.section__head p { color: var(--muted); font-size: 1.06rem; }
.section--navy .section__head p { color: #b9cae0; }
.eyebrow {
  display: inline-block; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  font-size: .76rem; color: var(--blue-600); margin-bottom: .5rem;
}
.section--navy .eyebrow { color: var(--cyan); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 800; font-size: 1.02rem; line-height: 1; cursor: pointer;
  padding: 15px 22px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--call { background: var(--amber); color: #2a1c00; box-shadow: 0 8px 20px rgba(245,147,0,.35); }
.btn--call:hover { background: var(--amber-600); color: #1a1100; }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(28,142,214,.3); }
.btn--primary:hover { background: var(--blue-600); color:#fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color:#fff; }
.btn--lg { padding: 17px 28px; font-size: 1.08rem; }
.btn--block { width: 100%; }
.btn .ico { width: 20px; height: 20px; }

/* ---------- Bandeau annonce ---------- */
.topbar {
  background: var(--navy-900); color: #cfe0f3; font-size: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__row { display: flex; align-items: center; justify-content: center; gap: 8px 18px; flex-wrap: wrap; padding: 8px 18px; text-align: center; }
.topbar strong { color: #fff; }
.topbar .dot { color: var(--amber); }
.topbar a { color: #fff; font-weight: 700; }

/* ---------- Header / nav ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--line); }
.header__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 0; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav a {
  color: var(--navy); font-weight: 700; font-size: .98rem; padding: 8px 12px; border-radius: 8px;
}
.nav a:hover { background: var(--bg-navy-soft); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--navy); background: var(--bg-navy-soft); box-shadow: inset 0 -2px 0 var(--blue); }
.header__cta { display: inline-flex; align-items: center; gap: 10px; }
.header__phone { display: inline-flex; flex-direction: column; line-height: 1.1; text-align: right; }
.header__phone small { color: var(--muted); font-size: .72rem; font-weight: 600; }
.header__phone b { color: var(--navy); font-size: 1.12rem; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; background: var(--navy-900); }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,22,45,.62) 0%, rgba(8,22,45,.72) 55%, rgba(8,22,45,.9) 100%),
              linear-gradient(90deg, rgba(8,22,45,.78) 0%, rgba(8,22,45,.25) 70%);
}
.hero__inner { position: relative; padding: 64px 0 72px; max-width: 720px; }
.hero h1 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero p.lead { font-size: 1.16rem; color: #e7eefb; margin-bottom: 26px; }
.hero .badge-247 {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,176,46,.16);
  border: 1px solid rgba(255,176,46,.5); color: #ffd587; font-weight: 800; letter-spacing: .04em;
  padding: 7px 14px; border-radius: 999px; font-size: .82rem; margin-bottom: 18px; text-transform: uppercase;
}
.hero .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0 rgba(255,176,46,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,176,46,.6)} 70%{box-shadow:0 0 0 12px rgba(255,176,46,0)} 100%{box-shadow:0 0 0 0 rgba(255,176,46,0)} }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Bandeau confiance ---------- */
.trust { background: var(--navy); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.trust__item { display: flex; align-items: center; gap: 10px; color: #dce7f6; padding: 16px 10px; justify-content: center; text-align: center; font-weight: 700; font-size: .96rem; }
.trust__item .ico { width: 26px; height: 26px; color: var(--cyan); flex: none; }

/* ---------- Cartes / silos ---------- */
.cards { display: grid; gap: 22px; grid-template-columns: 1fr 1fr; }
.silo {
  position: relative; border-radius: var(--radius); overflow: hidden; background: #fff;
  box-shadow: var(--shadow); border: 1px solid var(--line); display: flex; flex-direction: column;
}
.silo__media { aspect-ratio: 16/9; overflow: hidden; }
.silo__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.silo:hover .silo__media img { transform: scale(1.04); }
.silo__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.silo__tag { font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--blue-600); margin-bottom: 6px; }
.silo__body p { color: var(--muted); }
.silo ul.ticks { list-style: none; padding: 0; margin: 4px 0 18px; }
.silo ul.ticks li { padding-left: 26px; position: relative; margin-bottom: 7px; color: var(--ink); }
.silo ul.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 900; }
.silo .btn { margin-top: auto; }

/* ---------- Grille services ---------- */
.features { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow-sm); }
.feature .fico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--bg-navy-soft); color: var(--blue-600); margin-bottom: 14px;
}
.feature .fico svg { width: 24px; height: 24px; }
.feature h3 { margin-bottom: .35rem; }
.feature p { color: var(--muted); margin: 0; font-size: .98rem; }

/* ---------- Cartes services (photo, cliquables) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); color: var(--ink); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--blue); text-decoration: none; }
.svc-card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.svc-card:hover .svc-card__media img { transform: scale(1.05); }
.svc-card__tag { position: absolute; margin: 12px; background: rgba(19,49,92,.92); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.svc-card__media-wrap { position: relative; }
.svc-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.svc-card__body h3 { margin: 0 0 .35rem; }
.svc-card__body p { color: var(--muted); font-size: .96rem; margin: 0 0 14px; }
.svc-card__link { margin-top: auto; font-weight: 800; color: var(--blue-600); display: inline-flex; align-items: center; gap: 6px; transition: gap .15s ease; }
.svc-card:hover .svc-card__link { gap: 11px; }
.svc-card--static { cursor: default; }
.svc-card--static:hover { transform: none; box-shadow: var(--shadow-sm); border-color: var(--line); }
.svc-card--static:hover .svc-card__media img { transform: none; }
@media (max-width: 860px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

/* ---------- Tableau tarifs ---------- */
.pricing { overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); background:#fff; }
table.tarifs { width: 100%; border-collapse: collapse; font-size: .98rem; }
table.tarifs caption { text-align: left; padding: 16px 18px; font-weight: 800; color: var(--navy); background: var(--bg-navy-soft); font-size: 1.05rem; }
table.tarifs th, table.tarifs td { padding: 13px 18px; border-top: 1px solid var(--line); text-align: left; vertical-align: top; }
table.tarifs thead th { background: #fff; color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; border-top: none; }
table.tarifs td.price { text-align: right; font-weight: 800; color: var(--navy); white-space: nowrap; }
table.tarifs tbody th { font-weight: 600; color: var(--ink); }
table.tarifs tbody tr:nth-child(even) { background: var(--bg-soft); }
.price-note { color: var(--muted); font-size: .9rem; margin-top: 10px; }

/* ---------- Zone desservie ---------- */
.zone { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: .9rem; font-weight: 600; color: var(--navy); }
.zone__media img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Bandeau CTA ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy) 0%, var(--blue-600) 100%); color: #fff; border-radius: var(--radius); padding: 36px 28px; text-align: center; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #ffffff; max-width: 560px; margin: 0 auto 22px; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; box-shadow: var(--shadow-sm); }
.faq summary { cursor: pointer; padding: 16px 20px; font-weight: 700; color: var(--navy); list-style: none; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--blue); font-weight: 700; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 20px 18px; color: var(--muted); }

/* ---------- Réservation / formulaire ---------- */
.resa-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 28px; align-items: start; }
.resa-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 16px; }
.field > label { display: block; font-weight: 700; color: var(--navy); font-size: .92rem; margin-bottom: 6px; }
.field .req { color: #d23; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: #fff;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: none; }
.field textarea { min-height: 90px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field .hint { color: var(--muted); font-size: .82rem; margin-top: 4px; }
.resa-aside { position: sticky; top: 86px; }
.resa-summary { background: var(--navy); color: #dbe6f4; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.resa-summary h3 { color: #fff; }
.resa-summary strong, .resa-policy strong { color: #fff; }
.resa-amount { display: flex; align-items: baseline; gap: 8px; margin: 10px 0 16px; }
.resa-amount b { color: #fff; font-size: 2.2rem; font-weight: 800; line-height: 1; }
.resa-amount span { color: #b9cae0; font-size: .9rem; }
.resa-mode { font-size: .84rem; font-weight: 700; color: var(--cyan); background: rgba(54,181,232,.12); border: 1px solid rgba(54,181,232,.3); border-radius: 8px; padding: 8px 12px; margin: 0 0 14px; }
.resa-policy { list-style: none; padding: 0; margin: 0 0 18px; }
.resa-policy li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: .92rem; color: #cfdcec; }
.resa-policy li svg { position: absolute; left: 0; top: 2px; width: 17px; height: 17px; color: var(--cyan); }
.resa-secure { display: flex; align-items: center; gap: 8px; color: #9fb4d2; font-size: .82rem; margin-top: 12px; justify-content: center; }
.resa-secure svg { width: 15px; height: 15px; }
.resa-note { background: #fff7e8; border: 1px solid #f6dca0; color: #7a5600; border-radius: var(--radius-sm); padding: 12px 14px; font-size: .88rem; margin-top: 14px; }
.form-msg { display: none; border-radius: var(--radius-sm); padding: 13px 16px; margin-bottom: 16px; font-weight: 600; }
.form-msg.show { display: block; }
.form-msg.err { background: #fdecec; border: 1px solid #f3b6b6; color: #a12121; }
.form-msg.info { background: var(--bg-navy-soft); border: 1px solid #cfe0f3; color: var(--navy); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 8px; }
.step { display: flex; gap: 12px; align-items: flex-start; }
.step .num { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; display: grid; place-items: center; }
.step b { color: var(--navy); display: block; }
.step p { color: var(--muted); font-size: .92rem; margin: 2px 0 0; }
@media (max-width: 860px) {
  .resa-grid { grid-template-columns: 1fr; }
  .resa-aside { position: static; }
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Avis Google ---------- */
.reviews-band { text-align: center; max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; box-shadow: var(--shadow); }
.reviews-band .gbadge { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--muted); font-size: .92rem; margin-bottom: 8px; }
.reviews-stars { color: var(--amber); font-size: 2.1rem; letter-spacing: 4px; line-height: 1; }
.reviews-band h2 { margin: .45rem 0 .4rem; }
.reviews-band > p { color: var(--muted); max-width: 560px; margin: 0 auto 22px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 26px 0; text-align: left; }
.review-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; }
.review-card .stars { color: var(--amber); letter-spacing: 2px; font-size: 1rem; }
.review-card p { color: var(--ink); margin: .55rem 0 .7rem; font-size: .98rem; }
.review-card .author { font-weight: 700; color: var(--navy); font-size: .9rem; display: flex; align-items: center; gap: 6px; }
.review-card .author small { color: var(--muted); font-weight: 500; }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- "Vous cherchez aussi" ---------- */
.cross { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cross a { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; box-shadow: var(--shadow-sm); color: var(--navy); font-weight: 700; }
.cross a:hover { text-decoration: none; border-color: var(--blue); transform: translateY(-1px); transition: .15s; }
.cross .ico { width: 34px; height: 34px; color: var(--blue-600); flex: none; }
.cross small { display: block; color: var(--muted); font-weight: 500; font-size: .88rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--line); }
.info-row:first-of-type { border-top: none; }
.info-row .ico { width: 24px; height: 24px; color: var(--blue-600); flex: none; margin-top: 3px; }
.info-row b { display: block; color: var(--navy); }
.info-row a { font-weight: 700; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 7px 0; border-top: 1px solid var(--line); }
.hours th[scope="row"] { text-align: left; font-weight: 600; color: var(--ink); }
.hours td:last-child { text-align: right; font-weight: 700; color: #157a4f; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: #aebfd6; padding: 48px 0 96px; font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.footer h4 { color: #fff; font-size: 1rem; margin: 0 0 14px; }
.footer a { color: #c6d4e8; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 9px; }
.footer__brand img { height: 42px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .96; }
.footer__social { display: flex; gap: 10px; margin-top: 12px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.footer__social a:hover { background: var(--blue); }
.footer__social svg { width: 19px; height: 19px; color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 20px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .85rem; color: #8ea3c2; }

/* ---------- Barre d'appel fixe (mobile) ---------- */
.callbar { display: none; }
@media (max-width: 860px) {
  .callbar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; height: var(--callbar-h);
    background: var(--navy); border-top: 1px solid rgba(255,255,255,.1); box-shadow: 0 -6px 18px rgba(0,0,0,.18);
    padding: 8px 12px; gap: 10px;
  }
  .callbar .btn { flex: 1; }
  .callbar .btn--call { font-size: 1.05rem; }
  .footer { padding-bottom: calc(48px + var(--callbar-h)); }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .zone { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .header__phone { display: none; }
  .header__cta .btn { padding: 11px 16px; font-size: .95rem; }
  .features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 42px 0; }
  .cards { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cross { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .header__row { gap: 8px; }
  .brand img { height: 34px; }
  .nav { width: 100%; order: 3; justify-content: space-between; }
  .nav a { padding: 7px 9px; font-size: .9rem; }
  .hero__inner { padding: 46px 0 54px; }
}
@media (max-width: 420px) {
  .trust__grid { grid-template-columns: 1fr; }
  .nav a { font-size: .82rem; padding: 6px 7px; }
}

/* Réduit les animations si l'utilisateur le demande */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
