/* ══════════════════════════════════════════════════════════
   rade digitale — v2 « méditerranée »
   Palette : papier écru / encre bleu nuit / terracotta / ocre / azur
   ══════════════════════════════════════════════════════════ */

:root {
  --paper: #F6ECD9;
  --ink: #15273B;
  --terra: #D6532E;
  --ochre: #E9A03A;
  --azure: #2E6E8E;
  --muted: #5A6B78;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  margin: 0;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 50px;
}

:focus-visible {
  outline: 3px solid var(--azure);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Lien d'évitement ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ── Boutons ── */
.btn {
  display: inline-block;
  background: var(--terra);
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
  padding: 16px 30px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(214, 83, 46, .32); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 14px 28px;
}
.btn.ghost:hover { box-shadow: 0 10px 24px rgba(21, 39, 59, .15); }

/* ── Pastilles de section ── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(214, 83, 46, .12);
  color: var(--terra);
}
.kicker.blue { background: rgba(46, 110, 142, .14); color: var(--azure); }

h2.sec {
  font-weight: 800;
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: -.02em;
  margin-bottom: 8px;
  max-width: 640px;
}
.lead {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 48px;
  font-weight: 500;
}

/* ══ NAV ══ */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
}
.topnav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -.02em;
  color: var(--paper);
  display: flex;
  align-items: baseline;
  gap: .24em;
}
.logo .l2 { position: relative; }
.logo .l2::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -11px;
  width: 8px;
  height: 8px;
  background: var(--ochre);
}
.topnav .links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(246, 236, 217, .72);
}
.topnav .links a:hover { color: var(--paper); }
.topnav .links .btn {
  color: #fff;
  font-size: 14px;
  padding: 11px 20px;
}
.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══ HERO ══ */
.hero {
  position: relative;
  overflow: hidden;
}
.sun {
  position: absolute;
  top: -70px;
  right: -50px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, var(--ochre) 0 10px, var(--terra) 10px 20px);
  opacity: .9;
  animation: rd-sun 90s linear infinite;
}
.sun-core {
  position: absolute;
  top: 70px;
  right: 70px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 36%, #F6C25A, var(--ochre) 70%);
  box-shadow: 0 20px 50px rgba(233, 160, 58, .5);
}
@keyframes rd-sun {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}
.hero .wrap {
  position: relative;
  padding-top: 76px;
  padding-bottom: 64px;
}
.hero-copy { max-width: 780px; }
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--ochre);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.hero .eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--ochre);
  border-radius: 50%;
}
.hero h1 {
  font-weight: 800;
  font-size: 84px;
  line-height: .98;
  letter-spacing: -.03em;
  margin: 0 0 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--terra);
}
.hero .sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 530px;
  margin: 0 0 32px;
  font-weight: 500;
}
.hero .ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero .ctas .btn:not(.ghost) { box-shadow: 0 12px 28px rgba(214, 83, 46, .32); }
.waves {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.waves i {
  display: block;
  height: 4px;
  background: var(--azure);
  border-radius: 999px;
}
.waves i:nth-child(1) { width: 100%; opacity: .85; }
.waves i:nth-child(2) { width: 86%; opacity: .55; }
.waves i:nth-child(3) { width: 72%; opacity: .32; }
.towns {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.towns span {
  background: #fff;
  border: 1.5px solid var(--ink);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
}

/* ══ SECTIONS ══ */
section .wrap { padding-top: 76px; padding-bottom: 20px; }
#methode .wrap { padding-top: 80px; }

/* ── Audit express ── */
.audit-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
}
#audit .lead { margin-bottom: 26px; }
.audit-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.audit-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1.5px solid rgba(21, 39, 59, .14);
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
}
.audit-list b { color: var(--ink); font-weight: 700; white-space: nowrap; }
.audit-list span { text-align: right; }
.score-card {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  padding: 38px 34px;
  overflow: hidden;
}
.score-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, var(--ochre) 0 6px, var(--terra) 6px 12px);
  opacity: .85;
}
.score-card > * { position: relative; }
.score-card .t {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}
.score-card .s {
  font-size: 13px;
  color: rgba(246, 236, 217, .65);
  margin-bottom: 22px;
  font-weight: 500;
}
.score-card .big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 60px;
  line-height: 1;
  color: var(--ochre);
}
.score-card .big .sur { font-size: 24px; color: rgba(246, 236, 217, .55); font-weight: 700; }
.score-card .row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(246, 236, 217, .78);
  margin-top: 18px;
  font-weight: 500;
}
.score-card .bar {
  height: 9px;
  background: rgba(246, 236, 217, .16);
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden;
}
.score-card .bar i {
  display: block;
  height: 100%;
  background: var(--ochre);
  border-radius: 999px;
}

/* ── Méthode : 3 cartes ── */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mcard {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1.5px solid var(--ink);
}
.mcard .n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 18px;
}
.mcard:nth-child(1) .n { background: var(--ochre); color: var(--ink); }
.mcard:nth-child(2) .n { background: var(--azure); color: #fff; }
.mcard:nth-child(3) .n { background: var(--terra); color: #fff; }
.mcard h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.mcard p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ── Pour qui : bento localisé ── */
.quis {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.qui {
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  padding: 26px 22px;
}
.qui .ico {
  width: 12px;
  height: 12px;
  background: var(--ochre);
  border-radius: 3px;
  margin-bottom: 14px;
  box-shadow: 0 0 0 5px rgba(233, 160, 58, .22);
}
.qui .t {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--terra);
  margin-bottom: 8px;
  line-height: 1.3;
}
.qui p { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.qui.wide { grid-column: span 2; }
.qui.feat {
  grid-column: span 4;
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  padding: 30px 28px;
}
.qui.feat::before {
  content: '';
  position: absolute;
  top: -55px;
  right: -55px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, var(--ochre) 0 6px, var(--terra) 6px 12px);
  opacity: .85;
}
.qui.feat > * { position: relative; }
.qui.feat .t { font-size: 20px; color: var(--ochre); }
.qui.feat p { color: rgba(246, 236, 217, .82); font-size: 14px; max-width: 440px; }
.qui.full {
  grid-column: span 6;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(233, 160, 58, .16);
}
.qui.full .ico { margin-bottom: 0; }
.qui.full .txt { flex: 1; }
.qui.full .t { color: var(--ink); font-size: 16px; }
.qui.full .btn { flex-shrink: 0; font-size: 14.5px; padding: 13px 24px; }

/* ── Offres : 3 packs ── */
.packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.pack {
  background: #fff;
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.pack h3 { font-weight: 700; font-size: 24px; margin-bottom: 4px; }
.pack .for {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.pack .price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 22px;
}
.pack ul {
  list-style: none;
  margin: 0 0 4px;
  padding: 0;
  flex: 1;
}
.pack li {
  position: relative;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 500;
  padding: 7px 0 7px 22px;
}
.pack li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  background: var(--ochre);
}
.pack.star li { color: rgba(246, 236, 217, .85); }
.pack .btn {
  margin-top: 24px;
  text-align: center;
  font-size: 14.5px;
  padding: 13px;
}
.pack .btn.ghost { padding: 13px; }
.pack.star {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  position: relative;
  overflow: hidden;
}
.pack.star::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, var(--ochre) 0 6px, var(--terra) 6px 12px);
  opacity: .85;
}
.pack.star > * { position: relative; }
.pack.star .badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--ochre);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.pack.star .for { color: rgba(246, 236, 217, .72); }
.pack.star .price { color: var(--paper); }
.pack.star .inc { color: rgba(246, 236, 217, .85); }
.pack.star .btn { padding: 14px; }
.tva {
  margin: 26px 0 0;
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 500;
}

/* ── Abonnements : bandeau azur ── */
.abo-banner {
  background: var(--azure);
  color: #fff;
  border-radius: 24px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.abo-banner::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(246, 236, 217, .28) 0 8px, transparent 8px 16px);
}
.abo-banner .in {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.abo-banner .txt { max-width: 440px; }
.abo-banner .kicker {
  background: rgba(255, 255, 255, .18);
  color: #fff;
  margin-bottom: 16px;
}
.abo-banner h2 {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.03;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.abo-banner .txt p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
  margin: 0;
  font-weight: 500;
}
.abo-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 300px;
  flex: 1;
}
.abo-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 14px;
  padding: 18px 22px;
}
.abo-row .t { font-weight: 700; font-size: 16px; }
.abo-row .d { font-size: 13px; color: rgba(255, 255, 255, .75); }
.abo-row .p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  white-space: nowrap;
}
.abo-row .p small { font-size: 12px; font-weight: 500; }
.abo-row.solid {
  background: #fff;
  color: var(--ink);
  border: 0;
}
.abo-row.solid .d { color: var(--muted); }
.abo-row.solid .p { color: var(--terra); }

/* ══ À PROPOS ══ */
.apropos {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  margin-top: 76px;
}
.apropos::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(246, 236, 217, .22) 0 8px, transparent 8px 16px);
}
.apropos .wrap {
  position: relative;
  padding-top: 70px;
  padding-bottom: 76px;
}
.apropos .kicker { background: rgba(246, 236, 217, .14); color: var(--ochre); }
.apropos .lead { color: rgba(246, 236, 217, .78); margin-bottom: 0; }
.apropos blockquote {
  margin: 36px 0 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 25px);
  line-height: 1.45;
  max-width: 760px;
  border-left: 4px solid var(--ochre);
  padding-left: 26px;
}

/* ══ CONTACT ══ */
.contact {
  position: relative;
  background: var(--terra);
  color: #fff;
  overflow: hidden;
  margin-top: 76px;
}
.contact::before {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(246, 236, 217, .35) 0 8px, transparent 8px 16px);
}
.contact .wrap {
  position: relative;
  padding-top: 70px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact .kicker { background: rgba(255, 255, 255, .2); color: #fff; }
.contact h2 {
  font-weight: 800;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.contact .lead {
  color: rgba(255, 255, 255, .9);
  margin-bottom: 28px;
}
.contact .co {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .92);
}
.contact .co a { font-weight: 700; color: #fff; text-decoration: underline; text-decoration-color: rgba(255,255,255,.4); text-underline-offset: 3px; }
.contact .zones { margin-top: 26px; }
.contact .zones .t {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 6px;
}
.contact .zones p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .88);
  margin: 0;
  max-width: 460px;
  font-weight: 500;
}

/* ── Formulaire ── */
.audit-form {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 24px 60px rgba(21, 39, 59, .22);
}
.audit-form label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 6px;
}
.audit-form label .opt { font-weight: 400; color: var(--muted); }
.audit-form input,
.audit-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid rgba(21, 39, 59, .28);
  border-radius: 10px;
  padding: 12px 14px;
}
.audit-form input:focus,
.audit-form textarea:focus {
  outline: none;
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(46, 110, 142, .18);
}
.audit-form textarea { min-height: 88px; resize: vertical; }
.audit-form .hint {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0;
}
.audit-form .btn { width: 100%; }
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-status { margin: 0; font-size: 14px; font-weight: 600; min-height: 0; }
.form-status.ok { color: #1E7A46; }
.form-status.err { color: var(--terra); }

/* ══ FOOTER ══ */
footer {
  background: var(--ink);
  color: rgba(246, 236, 217, .55);
}
footer .wrap {
  padding-top: 34px;
  padding-bottom: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}
footer .logo { font-size: 22px; }
footer .logo .l2::after { top: -2px; right: -9px; width: 7px; height: 7px; }
footer .foot { display: flex; gap: 20px; }
footer .foot a { text-decoration: underline; text-decoration-color: rgba(246, 236, 217, .3); text-underline-offset: 3px; }
footer .foot a:hover { color: var(--paper); }

/* ══ Page simple (mentions légales) ══ */
.page-simple .wrap {
  max-width: 820px;
  padding-top: 64px;
  padding-bottom: 80px;
}
.page-simple h1 {
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -.02em;
  margin-bottom: 28px;
}
.page-simple h2 {
  font-weight: 700;
  font-size: 22px;
  margin: 34px 0 10px;
}
.page-simple p, .page-simple li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 500;
}
.page-simple a { color: var(--terra); font-weight: 600; }

/* ══ Responsive ══ */
@media (max-width: 1023px) {
  .quis { grid-template-columns: repeat(2, 1fr); }
  .qui.feat, .qui.full { grid-column: span 2; }
  .qui.wide { grid-column: span 1; }
  .hero h1 { font-size: 64px; }
  .audit-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .wrap { padding-left: 26px; padding-right: 26px; }

  .topnav .links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 26px 22px;
    border-bottom: 1.5px solid rgba(246, 236, 217, .15);
  }
  .topnav .links.open { display: flex; }
  .topnav .links a { padding: 10px 0; font-size: 16px; }
  .topnav .links .btn { margin-top: 8px; padding: 12px 24px; }
  .burger { display: flex; }

  .hero h1 { font-size: 52px; }
  .sun { top: -110px; right: -110px; }
  .sun-core { top: 30px; right: 30px; width: 100px; height: 100px; }

  h2.sec { font-size: 36px; }
  .cards3, .packs { grid-template-columns: 1fr; }
  .qui.full { flex-direction: column; align-items: flex-start; }

  .abo-banner { padding: 36px 26px; }
  .abo-banner h2 { font-size: 32px; }

  .apropos blockquote { padding-left: 18px; }

  .contact .wrap { grid-template-columns: 1fr; gap: 36px; }
  .contact h2 { font-size: 40px; }

  footer .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .quis { grid-template-columns: 1fr; }
  .qui.feat, .qui.wide, .qui.full { grid-column: auto; }
  .audit-list li { flex-direction: column; gap: 2px; }
  .audit-list span { text-align: left; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 42px; }
  .hero .ctas .btn { width: 100%; text-align: center; }
  .audit-form { padding: 26px 20px; }
  .score-card { padding: 30px 24px; }
}

/* ══ Animations coupées si le visiteur les refuse ══ */
@media (prefers-reduced-motion: reduce) {
  .sun { animation: none; }
  .btn { transition: none; }
  .btn:hover { transform: none; }
}
