/* ============================================================
   PMS SOFT — Vitrine commerciale
   Direction : clair, amical, arrondi (inspiration traqfood).
   Bleu marine + bleu ciel + vert. Police Nunito (façon Gotham Rounded).
   ============================================================ */

:root {
  /* Palette */
  --navy:       #003F7C;
  --navy-deep:  #062f5c;
  --blue:       #009DFF;
  --blue-deep:  #0a82d8;
  --cyan:       #cef5fe;
  --blue-soft:  #eaf6ff;
  --green:      #11af00;
  --green-deep: #0d9300;

  /* Surfaces */
  --bg:    #f4f9fe;
  --paper: #ffffff;
  --ink:   #3a3a3a;
  --muted: #747474;
  --line:  #e2ecf4;

  /* Typo */
  --sans: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Mesures */
  --wrap: 1140px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(0,63,124,.05), 0 8px 20px rgba(0,63,124,.06);
  --shadow-md: 0 14px 34px rgba(0,63,124,.12), 0 3px 10px rgba(0,63,124,.07);
  --shadow-lg: 0 34px 70px rgba(0,63,124,.22);
  --header-h: 72px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; line-height: 1.12; color: var(--navy); letter-spacing: -.01em; }
h1, h2 { font-weight: 900; letter-spacing: -.02em; }
p { margin: 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 820px; }

.skiplink { position: absolute; left: -999px; top: 0; z-index: 999; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; }
.skiplink:focus { left: 0; }

.hl { color: var(--blue); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 800; font-size: 15px; line-height: 1;
  padding: 13px 22px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
  white-space: nowrap;
}
.btn--lg { font-size: 16.5px; padding: 16px 30px; }
.btn--block { width: 100%; }
.btn--green { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(17,175,0,.28); }
.btn--green:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(17,175,0,.34); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(0,157,255,.28); }
.btn--blue:hover { background: var(--blue-deep); transform: translateY(-2px); }
.btn--outline { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); padding: 13px 14px; }
.btn--ghost:hover { color: var(--blue); }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

/* ---------- Bandeau d'annonce ---------- */
.topstrip { background: var(--navy); color: #fff; text-align: center; font-size: 14px; font-weight: 700; padding: 9px 16px; }
.topstrip strong { color: var(--cyan); }
.topstrip__stamp { display: inline-grid; place-items: center; width: 18px; height: 18px; border: 2px solid var(--cyan); border-radius: 50%; color: var(--cyan); font-size: 10px; margin-right: 8px; vertical-align: -3px; }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.9);
  backdrop-filter: saturate(140%) blur(10px); -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 22px rgba(0,63,124,.07); }
.site-header__inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 36px; height: 36px; border-radius: 11px; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 900; font-size: 20px;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.12);
}
.brand__word { font-size: 20px; font-weight: 900; letter-spacing: .01em; color: var(--navy); }
.brand--light .brand__word { color: #fff; }
.brand--light .brand__mark { background: var(--blue); }

.nav { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav > a { font-size: 15px; font-weight: 700; color: var(--navy); position: relative; padding: 4px 0; }
.nav > a::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 3px; border-radius: 3px; background: var(--blue); transition: width .22s ease; }
.nav > a:hover { color: var(--blue); }
.nav > a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.nav__cta { display: none; }

.burger { display: none; width: 44px; height: 44px; background: transparent; border: 0; cursor: pointer; padding: 10px; margin-left: auto; }
.burger span { display: block; height: 3px; background: var(--navy); border-radius: 3px; transition: transform .25s ease, opacity .2s ease; }
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Sections & titres ---------- */
.section { padding: 88px 0; }
.section--tint { background: linear-gradient(180deg, var(--blue-soft), #fff); }
.section__head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section__head h2 { font-size: clamp(28px, 4.2vw, 44px); }
.section__sub { margin-top: 16px; font-size: 18px; color: var(--muted); font-weight: 600; }

.eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.eyebrow--blue { color: var(--blue); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 64px 0 80px; overflow: hidden; background: linear-gradient(180deg, #fff 0%, var(--blue-soft) 100%); }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__bg::before { content: ""; position: absolute; top: -22%; right: -10%; width: 720px; height: 720px; background: radial-gradient(circle at center, rgba(0,157,255,.16), transparent 62%); }
.hero__bg::after { content: ""; position: absolute; bottom: -28%; left: -14%; width: 560px; height: 560px; background: radial-gradient(circle at center, rgba(17,175,0,.12), transparent 60%); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: center; }

.hero h1 { font-size: clamp(34px, 5vw, 58px); margin-bottom: 20px; }
.hero h1 .hl { color: var(--blue); }
.lead { font-size: 19px; line-height: 1.6; color: #44505a; max-width: 540px; font-weight: 600; }
.hero__points { display: grid; gap: 10px; margin: 24px 0 6px; }
.hero__points li { position: relative; padding-left: 32px; font-size: 16px; font-weight: 600; color: #2f3b44; }
.hero__points li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: rgba(17,175,0,.14); color: var(--green); border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 900; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 18px; }
.hero__trust { font-size: 14.5px; color: var(--muted); font-weight: 700; }

/* Maquette tablette */
.hero__visual { position: relative; }
.tablet { position: relative; background: #0c1c2e; border-radius: 26px; padding: 13px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.06); }
.tablet::after { content: ""; position: absolute; inset: 0; border-radius: 26px; pointer-events: none; background: linear-gradient(135deg, rgba(255,255,255,.12), transparent 38%); }
.tablet__screen { background: #f5f5f1; border-radius: 15px; overflow: hidden; }
.app { font-size: 13px; }
.app__bar { display: flex; align-items: center; gap: 9px; background: #0f3a2e; color: #fff; padding: 11px 13px; } /* l'app réelle est verte */
.app__logo { width: 26px; height: 26px; border-radius: 7px; background: #c89048; color: #0a2a20; display: grid; place-items: center; font-weight: 900; }
.app__titles { display: flex; flex-direction: column; line-height: 1.15; }
.app__titles strong { font-size: 13px; letter-spacing: .02em; }
.app__titles span { font-size: 11px; color: rgba(255,255,255,.72); }
.app__date { margin-left: auto; font-size: 11px; background: rgba(255,255,255,.14); padding: 4px 9px; border-radius: 999px; }
.app__body { padding: 14px; display: grid; gap: 10px; }
.app__row { display: grid; grid-template-columns: auto 1fr; gap: 10px; }
.kpi { background: #fff; border: 1px solid #e6e4dc; border-radius: 12px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.kpi__num { font-size: 30px; font-weight: 900; color: #0f3a2e; line-height: 1; }
.kpi__num span { font-size: 16px; }
.kpi__lbl { font-size: 11px; color: var(--muted); line-height: 1.2; font-weight: 700; }
.alertcard { background: #fbf2e2; border: 1px solid #ecd6ac; border-radius: 12px; padding: 10px 12px; display: flex; align-items: center; gap: 9px; font-size: 12px; color: #7a5713; font-weight: 700; }
.tcard { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #e6e4dc; border-radius: 12px; padding: 11px 13px; }
.tcard__ico { font-size: 16px; }
.tcard__lbl { font-size: 12.5px; color: #1a1a1a; font-weight: 700; }
.tcard__val { margin-left: auto; font-weight: 900; font-size: 14px; color: #1a1a1a; display: flex; align-items: center; gap: 6px; }
.tcard__val b { color: #2f7d4f; }
.tcard--ok { box-shadow: inset 3px 0 0 #2f7d4f; }

.hero__badge {
  position: absolute; right: -8px; bottom: 18px; z-index: 2;
  background: #fff; color: var(--green); font-weight: 900; font-size: 14px;
  padding: 10px 18px; border-radius: 999px; box-shadow: var(--shadow-md);
  border: 2px solid rgba(17,175,0,.2); transform: rotate(-3deg);
}

/* ---------- Tarifs ---------- */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 24px; justify-content: center; }
.plan { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 32px 36px; box-shadow: var(--shadow-sm); }
.plan--featured { border: 2px solid var(--green); box-shadow: var(--shadow-md); }
.plan__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; }
.plan__name { font-size: 24px; margin-bottom: 14px; }
.plan__price { display: flex; align-items: baseline; gap: 8px; }
.plan__amount { font-size: 52px; font-weight: 900; color: var(--navy); line-height: 1; }
.plan__per { color: var(--muted); font-size: 16px; font-weight: 700; }
.plan__note { margin-top: 8px; font-size: 14px; color: var(--muted); font-weight: 600; }
.plan__list { display: grid; gap: 12px; margin: 24px 0 28px; }
.plan__list li { position: relative; padding-left: 28px; font-size: 15.5px; font-weight: 600; }
.plan__list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 900; }
.plans__foot { text-align: center; margin-top: 26px; color: var(--muted); font-size: 15px; font-weight: 600; }

/* ---------- Piliers ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pillar__ico { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 20px; font-size: 30px; margin-bottom: 18px; }
.pillar__ico[data-tone="green"] { background: rgba(17,175,0,.12); }
.pillar__ico[data-tone="blue"]  { background: rgba(0,157,255,.12); }
.pillar__ico[data-tone="navy"]  { background: rgba(0,63,124,.10); }
.pillar h3 { font-size: 21px; margin-bottom: 10px; }
.pillar p { font-size: 15.5px; color: var(--muted); font-weight: 600; line-height: 1.55; }

/* ---------- Fonctionnalités ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.feature__tag { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); border: 1px solid var(--cyan); background: var(--blue-soft); border-radius: 999px; padding: 3px 10px; margin-bottom: 16px; }
.feature__tag--gold { color: var(--green); border-color: rgba(17,175,0,.3); background: rgba(17,175,0,.10); }
.feature__ico { font-size: 26px; display: block; margin-bottom: 10px; }
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--muted); font-weight: 600; line-height: 1.55; }
.feature--wide { grid-column: span 2; background: linear-gradient(135deg, var(--navy), var(--blue-deep)); border-color: transparent; }
.feature--wide .feature__tag { color: #fff; background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.24); }
.feature--wide h3 { color: #fff; }
.feature--wide p { color: rgba(255,255,255,.85); font-size: 16px; }
.feature--wide:hover { border-color: transparent; }

/* ---------- Étapes ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; padding: 32px 28px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.step__num { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 22px; font-weight: 900; margin-bottom: 14px; }
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { font-size: 15.5px; color: var(--muted); font-weight: 600; }
.step:not(:last-child)::after { content: "→"; position: absolute; top: 44px; right: -19px; z-index: 2; color: var(--blue); font-size: 22px; font-weight: 900; }

/* ---------- Stats ---------- */
.stats { background: var(--navy); padding: 60px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.stat__num { display: block; font-size: 58px; font-weight: 900; color: #fff; line-height: 1; }
.stat__lbl { display: block; margin-top: 8px; font-size: 14.5px; color: var(--cyan); font-weight: 700; }

/* ---------- Conformité ---------- */
.conformite { display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center; }
.conformite h2 { font-size: clamp(26px, 3.4vw, 38px); }
.reglist { display: grid; gap: 14px; margin-top: 22px; }
.reglist li { position: relative; padding-left: 30px; font-size: 16px; color: #44505a; font-weight: 600; }
.reglist li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--green); font-weight: 900; }
.reglist strong { color: var(--navy); }
.notice { background: var(--blue-soft); border: 1px solid var(--cyan); border-radius: var(--radius-lg); padding: 26px; display: flex; gap: 14px; }
.notice__ico { font-size: 22px; }
.notice p { font-size: 14.5px; color: #2f4a63; line-height: 1.6; font-weight: 600; }
.notice strong { color: var(--navy); }

/* ---------- Disponibilité ---------- */
.availability { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.availability h2 { font-size: clamp(26px, 3.6vw, 40px); }
.devices { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 28px; }
.device { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-weight: 800; color: var(--navy); font-size: 15px; box-shadow: var(--shadow-sm); }
.availability__visual { display: grid; place-items: center; }
.phone { width: 230px; background: #0c1c2e; border-radius: 30px; padding: 12px; box-shadow: var(--shadow-lg); }
.phone__bar { background: #0f3a2e; color: #fff; border-radius: 18px 18px 0 0; padding: 14px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.phone__logo { width: 22px; height: 22px; border-radius: 6px; background: #c89048; color: #0a2a20; display: grid; place-items: center; font-weight: 900; font-size: 13px; }
.phone__list { background: #f5f5f1; border-radius: 0 0 18px 18px; padding: 12px; display: grid; gap: 8px; }
.phone__item { background: #fff; border: 1px solid #e6e4dc; border-radius: 10px; padding: 11px 12px; font-size: 12.5px; font-weight: 700; color: #1a1a1a; display: flex; align-items: center; justify-content: space-between; }
.phone__item b { color: #2f7d4f; }
.phone__item--todo { color: var(--muted); border-style: dashed; }

/* ---------- Contact ---------- */
.contact { text-align: center; max-width: 720px; margin: 0 auto; }
.contact h2 { font-size: clamp(26px, 3.6vw, 40px); }
.contact p { margin: 16px 0 28px; font-size: 18px; color: var(--muted); font-weight: 600; }
.contact__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq__item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq__item summary { cursor: pointer; list-style: none; padding: 20px 56px 20px 24px; position: relative; font-weight: 800; font-size: 18px; color: var(--navy); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 26px; color: var(--blue); transition: transform .2s ease; font-weight: 700; }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 24px 22px; color: var(--muted); font-size: 16px; line-height: 1.6; font-weight: 600; }

/* ---------- CTA final ---------- */
.finalcta { background: linear-gradient(135deg, var(--navy), var(--blue-deep)); color: #fff; padding: 92px 0; text-align: center; position: relative; overflow: hidden; }
.finalcta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% -10%, rgba(0,157,255,.4), transparent 60%); }
.finalcta__inner { position: relative; max-width: 680px; margin: 0 auto; }
.finalcta h2 { font-size: clamp(28px, 4.4vw, 46px); color: #fff; }
.finalcta p { margin: 16px 0 30px; font-size: 19px; color: rgba(255,255,255,.85); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.8); padding: 62px 0 30px; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr 1fr 1.1fr; gap: 32px; }
.site-footer__brand p { margin-top: 14px; font-size: 15px; max-width: 280px; line-height: 1.6; font-weight: 600; }
.site-footer__col h4 { font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.site-footer__col a { display: block; font-size: 15px; padding: 5px 0; color: rgba(255,255,255,.82); font-weight: 600; transition: color .15s ease; }
.site-footer__col a:hover { color: #fff; }
.site-footer__bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; font-size: 13px; color: rgba(255,255,255,.6); font-weight: 600; }
.site-footer__disc { max-width: 520px; }

/* Badge "Sécurité A+" — preuve sociale discrète, link vers le rapport public. */
.security-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 8px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.04); color: rgba(255,255,255,.88); font-size: 12px; font-weight: 700; text-decoration: none; transition: background .15s ease, border-color .15s ease, color .15s ease; }
.security-badge:hover, .security-badge:focus-visible { background: rgba(255,255,255,.08); border-color: rgba(127,220,154,.55); color: #fff; outline: none; }
.security-badge__icon { width: 16px; height: 16px; color: #7fdc9a; flex: 0 0 auto; }
.security-badge__grade { background: #1f8a4c; color: #fff; padding: 2px 7px; border-radius: 999px; font-size: 11px; letter-spacing: .02em; line-height: 1.4; }
.security-badge__label { font-weight: 600; }
@media (max-width: 540px) { .security-badge__label { display: none; } .security-badge { padding: 4px 8px 4px 6px; } }

/* ============================================================
   Révélation au défilement
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  * { animation: none !important; transition: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: 2; max-width: 460px; margin: 0 auto; }
  .hero__copy { order: 1; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .conformite, .availability { grid-template-columns: 1fr; gap: 28px; }
  .availability__visual { order: -1; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav, .header-actions { display: none; }
  .nav.open {
    display: flex; flex-direction: column; gap: 0; align-items: stretch;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px; box-shadow: var(--shadow-md); margin: 0;
  }
  .nav.open > a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav.open > a::after { display: none; }
  .nav.open .nav__cta { display: flex; gap: 10px; padding-top: 14px; }
  .nav.open .nav__cta .btn { flex: 1; }
  .burger { display: block; }
  .section { padding: 60px 0; }
  .features, .stats__grid, .steps, .plans { grid-template-columns: 1fr; }
  .plans { max-width: 400px; margin: 0 auto; }
  .step:not(:last-child)::after { content: "↓"; top: auto; bottom: -22px; right: 50%; transform: translateX(50%); }
  .stats__grid { gap: 30px; }
}

@media (max-width: 420px) {
  .features { grid-template-columns: 1fr; }
  .feature--wide { grid-column: span 1; }
  .hero__cta .btn, .contact__cta .btn { width: 100%; }
}

/* ---------- Language switch ---------- */
.lang-switch { display: inline-flex; align-items: center; gap: 6px; }
.lang-flag { position: relative; width: 26px; height: 26px; padding: 0; border: 0; border-radius: 50%; overflow: hidden; cursor: pointer; background: #012169; opacity: .5; box-shadow: 0 1px 2px rgba(0,0,0,.25); transition: opacity .15s, transform .15s, box-shadow .15s; }
.lang-flag .flag-svg { display: block; width: 100%; height: 100%; }
.lang-flag::after { content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none; background: radial-gradient(circle at 32% 26%, rgba(255,255,255,.55), rgba(255,255,255,.08) 38%, rgba(255,255,255,0) 55%); box-shadow: inset 0 -3px 5px rgba(0,0,0,.3), inset 0 2px 3px rgba(255,255,255,.25); }
.lang-flag:hover { opacity: .85; }
.lang-flag[aria-pressed="true"] { opacity: 1; transform: scale(1.06); box-shadow: 0 0 0 2px #003F7C, 0 1px 3px rgba(0,0,0,.3); }

/* ---------- Bandeau consentement cookies (RGPD / Consent Mode v2) ---------- */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  animation: cookie-in .3s ease both;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner { display: flex; align-items: center; flex-wrap: wrap; gap: 16px 28px; padding: 18px 24px; }
.cookie-banner__text { flex: 1 1 360px; margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink); }
.cookie-banner__text a { color: var(--blue); font-weight: 700; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__actions .btn { padding: 11px 22px; font-size: 14.5px; }
@keyframes cookie-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .cookie-banner { animation: none; } }
@media (max-width: 560px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; }
}
