/* ============================================================
   MS EXPERT — Feuille de style partagée
   ============================================================ */
:root {
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --bg-elev: #ffffff;
  --ink: #0f1b2d;
  --ink-soft: #47566b;
  --line: #e2e8f2;
  --brand: #0067c0;
  --brand-deep: #004a91;
  --brand-soft: #e8f1fc;
  --accent: #50b0ff;
  --ok: #107c41;
  --shadow: 0 1px 2px rgba(15,27,45,.04), 0 12px 32px rgba(15,27,45,.07);
  --radius: 16px;
  --maxw: 1120px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1220; --bg-alt: #0f1930; --bg-elev: #131f38;
    --ink: #eef3fb; --ink-soft: #a3b1c7; --line: #24314f;
    --brand: #4aa3ff; --brand-deep: #79c0ff; --brand-soft: #12233f; --accent: #7fd8ff;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 16px 40px rgba(0,0,0,.45);
  }
}
:root[data-theme="light"] {
  --bg:#fff;--bg-alt:#f4f7fb;--bg-elev:#fff;--ink:#0f1b2d;--ink-soft:#47566b;--line:#e2e8f2;--brand:#0067c0;--brand-deep:#004a91;--brand-soft:#e8f1fc;--shadow:0 1px 2px rgba(15,27,45,.04),0 12px 32px rgba(15,27,45,.07);
}
:root[data-theme="dark"] {
  --bg:#0b1220;--bg-alt:#0f1930;--bg-elev:#131f38;--ink:#eef3fb;--ink-soft:#a3b1c7;--line:#24314f;--brand:#4aa3ff;--brand-deep:#79c0ff;--brand-soft:#12233f;--accent:#7fd8ff;--shadow:0 1px 2px rgba(0,0,0,.3),0 16px 40px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3 { line-height: 1.15; letter-spacing: -.02em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-soft);
  padding: 6px 12px; border-radius: 999px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .98rem;
  padding: 13px 22px; border-radius: 12px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(0,103,192,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,103,192,.36); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(12px);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }

/* --- Logo -----------------------------------------------------------------
   Mot-symbole fourni en image, décliné en deux versions : encre pour les
   fonds clairs, blanc pour les fonds sombres. Le fichier d'origine étant
   blanc sur transparent, il serait invisible en thème clair — d'où la
   bascule ci-dessous, qui suit à la fois la préférence système et le
   sélecteur data-theme, comme le reste de la palette. */
.brand { display: flex; align-items: center; }
.brand-logo { display: block; height: 30px; width: auto; }
.brand-logo--sombre { display: none; }

@media (prefers-color-scheme: dark) {
  .brand-logo--clair  { display: none; }
  .brand-logo--sombre { display: block; }
}
:root[data-theme="light"] .brand-logo--clair  { display: block; }
:root[data-theme="light"] .brand-logo--sombre { display: none; }
:root[data-theme="dark"]  .brand-logo--clair  { display: none; }
:root[data-theme="dark"]  .brand-logo--sombre { display: block; }
.nav-links { display: flex; gap: 30px; font-size: .95rem; font-weight: 500; color: var(--ink-soft); }
.nav-links a:hover, .nav-links a.active { color: var(--brand); }
.nav-links a.active { font-weight: 700; }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* --- Navigation mobile ---------------------------------------------------
   Sous 860 px les liens ne tiennent plus en ligne. Ils basculent dans un
   panneau dépliant commandé par un bouton, plutôt que d'être simplement
   masqués — sans quoi le site n'aurait aucune navigation sur mobile. */
.nav-burger {
  display: none; width: 40px; height: 40px; flex: none;
  border: 1px solid var(--line); border-radius: 10px;
  background: transparent; color: var(--ink); cursor: pointer;
  place-items: center; transition: border-color .15s ease, color .15s ease;
}
.nav-burger:hover { border-color: var(--brand); color: var(--brand); }
.nav-burger:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.nav-burger svg { display: block; }
.nav-burger .vp-fermer { display: none; }
.nav-burger[aria-expanded="true"] .vp-ouvrir { display: none; }
.nav-burger[aria-expanded="true"] .vp-fermer { display: block; }

@media (max-width: 860px) {
  .nav-burger { display: grid; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 6px 24px 14px;
  }
  .nav-links.ouvert { display: flex; }
  .nav-links a { padding: 14px 2px; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
}

/* Le logo et le bouton d'appel doivent laisser la place au menu. */
@media (max-width: 560px) {
  .brand-logo { height: 26px; }
  .nav-cta .btn { padding: 10px 14px; font-size: .88rem; }
}
@media (max-width: 420px) {
  .brand-logo { height: 23px; }
  .nav-cta .btn { padding: 9px 12px; font-size: .84rem; }
}

/* Hero (home) */
/* padding:0 neutralise la marge de la règle générique `section` : sans cela
   elle s'ajoutait aux 90px de .hero-inner, soit 174px de vide sous l'en-tête.
   L'espacement du hero est porté par .hero-inner seul. */
.hero { position: relative; overflow: hidden; padding: 0; }
.hero::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(60% 60% at 80% 0%, color-mix(in srgb, var(--brand) 20%, transparent) 0%, transparent 60%),
    radial-gradient(50% 50% at 0% 100%, color-mix(in srgb, var(--accent) 14%, transparent) 0%, transparent 55%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 90px 0 80px; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); font-weight: 800; margin: 20px 0 18px; }
.hero h1 .grad { background: linear-gradient(120deg, var(--brand), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 34em; }
.hero-cta { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.trust { display: flex; gap: 26px; margin-top: 36px; flex-wrap: wrap; }
.trust b { display:block; font-size: 1.7rem; font-weight: 800; color: var(--ink); letter-spacing:-.02em;}
.trust span { font-size: .85rem; color: var(--ink-soft); }
@media (max-width: 900px){ .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; } }

/* Page hero (inner pages) */
.page-hero { position: relative; overflow: hidden; text-align: center; padding: 72px 0 60px; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.page-hero::before {
  content:""; position:absolute; inset:0;
  background: radial-gradient(60% 100% at 50% 0%, color-mix(in srgb, var(--brand) 12%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 { position: relative; font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; margin: 16px 0 14px; }
.page-hero p { position: relative; color: var(--ink-soft); font-size: 1.1rem; max-width: 40em; margin: 0 auto; }

/* Panel / cards */
.panel { background: var(--bg-elev); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: 26px; }
.panel h4 { margin: 0 0 4px; font-size: 1rem; }
.status-row { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid var(--line); }
.status-row:last-child { border-bottom: 0; }
.service-name { display:flex; align-items:center; gap:11px; font-weight:600; font-size:.96rem; }
.ico { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); flex:none; }
.ico svg { display: block; width: 17px; height: 17px; }
.pill-ok { font-size: .78rem; font-weight: 700; color: var(--ok); background: color-mix(in srgb, var(--ok) 12%, transparent); padding: 4px 10px; border-radius: 999px; display:inline-flex; align-items:center; gap:6px;}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px color-mix(in srgb, var(--ok) 22%, transparent); }

/* Sections */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; margin: 16px 0 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.alt { background: var(--bg-alt); }

/* Services grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px){ .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .grid { grid-template-columns: 1fr; } }
.card { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); }
.card .ico-lg { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); margin-bottom: 18px; }

/* Icônes dessinées plutôt qu'émoji : les émoji dépendent de la police du
   système, varient d'un appareil à l'autre et tirent le rendu vers le
   registre grand public. Un tracé au trait reste identique partout. */
.ico-lg svg { display: block; width: 24px; height: 24px; }
.card h3 { font-size: 1.16rem; margin-bottom: 9px; }
.card p { color: var(--ink-soft); font-size: .96rem; }
.card a.more { display:inline-block; margin-top:14px; color:var(--brand); font-weight:600; font-size:.92rem; }

/* Feature list */
.feat { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 880px){ .feat { grid-template-columns: 1fr; gap: 32px; } }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 16px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; }
.check { width: 24px; height: 24px; border-radius: 7px; background: color-mix(in srgb, var(--ok) 14%, transparent); color: var(--ok); display: grid; place-items: center; flex: none; margin-top: 2px; font-weight:800; font-size:.8rem;}
.checklist b { display: block; font-size: 1rem; }
.checklist span { color: var(--ink-soft); font-size: .93rem; }

/* Detailed service rows — une seule colonne depuis le retrait des
   encarts de chiffres illustratifs. */
.svc-row { padding: 36px 0; border-bottom: 1px solid var(--line); max-width: 52em; }
.svc-row:last-child { border-bottom: 0; }
.svc-row h3 { font-size: 1.5rem; font-weight: 800; margin: 14px 0 12px; }
.svc-row p { color: var(--ink-soft); }
.svc-row .ico-lg { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); }
.svc-row .ico-lg svg { width: 26px; height: 26px; }
.svc-media { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.tag-list { display:flex; flex-wrap:wrap; gap:8px; margin-top:16px; }
.tag { font-size:.82rem; font-weight:600; color:var(--brand); background:var(--brand-soft); padding:5px 11px; border-radius:999px; }

/* Process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 880px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px){ .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 26px; background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); }
.step .num { width: 40px; height: 40px; border-radius: 11px; background: var(--brand); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 1.1rem; margin-bottom: 16px; }
.step h3 { font-size: 1.06rem; margin-bottom: 7px; }
.step p { color: var(--ink-soft); font-size: .92rem; }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
@media (max-width: 880px){ .plans { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }
.plan { background: var(--bg-elev); border: 1px solid var(--line); border-radius: 18px; padding: 30px; }
.plan.popular { border-color: var(--brand); box-shadow: 0 20px 50px rgba(0,103,192,.16); position: relative; }
.plan.popular::before { content: "Le plus choisi"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--brand); color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.plan h3 { font-size: 1.1rem; }
.price { font-size: 2.4rem; font-weight: 800; letter-spacing: -.03em; margin: 14px 0 2px; }
.price small { font-size: .95rem; font-weight: 500; color: var(--ink-soft); }
.plan ul { list-style: none; padding: 0; margin: 20px 0 26px; display: grid; gap: 12px; }
.plan li { display: flex; gap: 10px; font-size: .94rem; color: var(--ink-soft); }
.plan li svg { color: var(--ok); flex: none; margin-top: 3px; }
.plan .btn { width: 100%; justify-content: center; }

/* Team / certifications */
.team { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:820px){ .team { grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .team { grid-template-columns:1fr; } }
.member { background:var(--bg-elev); border:1px solid var(--line); border-radius:var(--radius); padding:26px; text-align:center; }
.avatar { width:72px; height:72px; border-radius:50%; margin:0 auto 14px; background:var(--brand-soft); color:var(--brand); display:grid; place-items:center; font-weight:800; font-size:1.4rem; }
.member h3 { font-size:1.05rem; }
.member .role { color:var(--brand); font-weight:600; font-size:.9rem; margin-top:2px; }
.member p { color:var(--ink-soft); font-size:.9rem; margin-top:10px; }

.certs { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.cert { background:var(--bg-elev); border:1px solid var(--line); border-radius:12px; padding:14px 20px; font-weight:600; font-size:.92rem; display:flex; align-items:center; gap:10px; }
.cert .ico { width:26px; height:26px; font-size:.9rem; }

/* Contact */
.contact-grid { display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:start; }
@media (max-width:860px){ .contact-grid { grid-template-columns:1fr; gap:32px; } }
.form-field { margin-bottom:18px; }
.form-field label { display:block; font-weight:600; font-size:.92rem; margin-bottom:7px; }
.form-field input, .form-field textarea, .form-field select {
  width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:11px;
  background:var(--bg); color:var(--ink); font-family:inherit; font-size:.96rem;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline:none; border-color:var(--brand); box-shadow:0 0 0 3px var(--brand-soft);
}
.form-field textarea { min-height:130px; resize:vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:520px){ .form-row { grid-template-columns:1fr; } }
.contact-info { display:grid; gap:16px; }
.info-item { display:flex; gap:14px; align-items:flex-start; background:var(--bg-elev); border:1px solid var(--line); border-radius:var(--radius); padding:18px; }
.info-item .ico { width:42px; height:42px; font-size:1.1rem; }
.info-item b { display:block; font-size:.95rem; }
.info-item span { color:var(--ink-soft); font-size:.9rem; }
.form-note { font-size:.82rem; color:var(--ink-soft); margin-top:6px; }
/* Question anti-robot : champ court, l'énoncé est mis en avant. */
.captcha-question input { max-width:160px; }
.captcha-question label span { font-weight:800; color:var(--brand); }

/* --- Confirmation après envoi -------------------------------------- */
.form-success { text-align:center; padding:14px 4px 6px; }
.form-success h2 { font-size:1.45rem; font-weight:800; margin:18px 0 10px; }
.form-success > p { color:var(--ink-soft); font-size:1rem; max-width:34em; margin:0 auto; }
.success-mark { color:var(--ok); display:flex; justify-content:center; }
.success-mark .sm-ring  { stroke-dasharray:145; stroke-dashoffset:145; animation:sm-draw .5s ease-out forwards; }
.success-mark .sm-check { stroke-dasharray:40;  stroke-dashoffset:40;  animation:sm-draw .35s .4s ease-out forwards; }
@keyframes sm-draw { to { stroke-dashoffset:0; } }

.success-next {
  text-align:left; background:var(--bg-alt); border:1px solid var(--line);
  border-radius:var(--radius); padding:20px 22px; margin:26px auto 0; max-width:30em;
}
.success-next b { font-size:.95rem; }
.success-next ol { margin:12px 0 0; padding-left:20px; display:grid; gap:9px; }
.success-next li { color:var(--ink-soft); font-size:.94rem; }
.success-next li b { color:var(--ink); font-size:.94rem; }

.success-aside { font-size:.9rem; color:var(--ink-soft); margin:22px 0 0; }
.success-aside a { color:var(--brand); font-weight:600; }
.form-success .btn { margin-top:20px; }

/* Les tracés animés apparaissent d'emblée si l'utilisateur a demandé
   à réduire les animations. */
@media (prefers-reduced-motion: reduce) {
  .success-mark .sm-ring, .success-mark .sm-check { animation:none; stroke-dashoffset:0; }
  .form-success { scroll-behavior:auto; }
}

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--brand-deep), var(--brand)); color: #fff; border-radius: 24px; padding: 56px; text-align: center; position: relative; overflow: hidden; }
/* pointer-events:none est indispensable : ce calque décoratif couvre toute la
   bande et, étant le dernier enfant, il se peint au-dessus du bouton. Sans
   cela il intercepte les clics et le bouton devient inopérant. */
.cta-band::after { content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(50% 120% at 100% 0%, rgba(255,255,255,.18), transparent 60%); }
.cta-band h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; position: relative; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 40em; margin: 14px auto 0; position: relative; font-size: 1.08rem; }
.cta-band .btn { position: relative; margin-top: 28px; background: #fff; color: var(--brand-deep); }
.cta-band .btn:hover { transform: translateY(-2px); }

/* --- Bandeau vie privée -------------------------------------------------
   Ancré en bas, discret, non bloquant : ce n'est pas un mur de consentement
   mais une information. Il ne recouvre jamais le contenu principal. */
/* Ancré en bas à DROITE sur grand écran : les appels à l'action du hero sont
   dans la colonne de gauche, le bandeau ne doit pas les recouvrir. */
.vieprivee {
  position: fixed; z-index: 80;
  right: 20px; bottom: 20px; left: auto;
  width: 340px; max-width: calc(100vw - 40px);
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow);
  padding: 20px 20px 16px;
  text-align: center;
  animation: vp-entree .35s ease-out;
}
@keyframes vp-entree { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.vp-icone {
  width: 44px; height: 44px; border-radius: 50%;
  margin: 0 auto 12px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  color: var(--brand);
}
.vp-icone svg { width: 20px; height: 20px; }
.vieprivee b { display: block; font-size: 1.02rem; font-weight: 800; letter-spacing: -.01em; margin-bottom: 7px; }
.vieprivee p { color: var(--ink-soft); font-size: .85rem; line-height: 1.5; margin: 0 0 14px; }
.vp-ok { width: 100%; justify-content: center; padding: 11px 18px; font-size: .92rem; }
.vieprivee > a {
  display: inline-block; margin-top: 10px;
  color: var(--ink-soft); font-size: .84rem; font-weight: 500;
}
.vieprivee > a:hover { color: var(--brand); }
.vp-ok:focus-visible, .vieprivee > a:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }

/* Sur mobile, le bandeau doit rester sous les appels à l'action du hero, qui
   descendent jusqu'aux deux tiers de l'écran. Mesuré : au-delà de ~123 px de
   hauteur, il recouvre le bouton « Demander un audit gratuit » et le rend
   inatteignable. D'où cette disposition dense : icône en ligne avec le titre,
   texte resserré, bouton et lien sur une même rangée. */
@media (max-width: 560px) {
  .vieprivee {
    left: 10px; right: 10px; bottom: 10px; width: auto;
    display: grid; grid-template-columns: auto 1fr;
    column-gap: 9px; row-gap: 6px;
    text-align: left; padding: 9px 11px;
    border-radius: 13px;
  }
  .vp-icone { width: 26px; height: 26px; margin: 0; }
  .vp-icone svg { width: 14px; height: 14px; }
  .vieprivee b { align-self: center; margin: 0; font-size: .87rem; }
  .vieprivee p { grid-column: 1 / -1; margin: 0; font-size: .73rem; line-height: 1.3; }
  .vp-ok {
    grid-column: 1; justify-self: start;
    width: auto; padding: 7px 14px; font-size: .8rem;
  }
  .vieprivee > a { grid-column: 2; align-self: center; justify-self: end; margin: 0; font-size: .76rem; }
}

/* Écrans très étroits : le texte gagne une ligne et le bandeau repasserait
   au-dessus du second bouton du hero. On resserre d'un cran de plus. */
@media (max-width: 390px) {
  .vieprivee { padding: 8px 10px; row-gap: 5px; column-gap: 8px; }
  .vp-icone { width: 24px; height: 24px; }
  .vp-icone svg { width: 13px; height: 13px; }
  .vieprivee b { font-size: .83rem; }
  .vieprivee p { font-size: .70rem; line-height: 1.28; }
  .vp-ok { padding: 6px 12px; font-size: .77rem; }
  .vieprivee > a { font-size: .73rem; }
}
@media (prefers-reduced-motion: reduce) { .vieprivee { animation: none; } }

/* --- Pages de prestation --------------------------------------------------
   Registre haut de gamme : espacements plus généreux, hiérarchie affirmée,
   aucun aplat superflu. La retenue fait le premium, pas l'accumulation. */
.svc-entete { display: flex; align-items: center; gap: 16px; justify-content: center; margin-bottom: 18px; }
.svc-entete .ico-lg {
  width: 56px; height: 56px; border-radius: 14px; flex: none;
  display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand);
}
.svc-entete .ico-lg svg { width: 28px; height: 28px; }

.bloc { padding: 72px 0; border-top: 1px solid var(--line); }
.bloc:first-of-type { border-top: 0; }
.bloc-tete { max-width: 46em; margin-bottom: 36px; }
.bloc-tete h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; margin: 12px 0 14px; }
.bloc-tete p { color: var(--ink-soft); font-size: 1.05rem; }

/* Encart de mise en garde ou de mise en avant */
.encart {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 26px; margin: 28px 0; max-width: 46em;
}
.encart b { display: block; margin-bottom: 6px; }
.encart p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* Livrables : ce que le client reçoit concrètement */
.livrables { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 720px){ .livrables { grid-template-columns: 1fr; } }
.livrable {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
}
.livrable b { display: block; font-size: 1rem; margin-bottom: 6px; }
.livrable span { color: var(--ink-soft); font-size: .94rem; }

/* Bandeau de chiffres sobres, sans esbroufe */
.reperes { display: flex; flex-wrap: wrap; gap: 44px; margin-top: 8px; }
.reperes div b { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.reperes div span { color: var(--ink-soft); font-size: .9rem; }

/* Page tarifs */
.tarif-note { max-width: 44em; color: var(--ink-soft); font-size: 1.02rem; margin: 0 auto 44px; text-align: center; }
.plan .price { font-size: 1.6rem; }
.plan-portee { color: var(--ink-soft); font-size: .86rem; margin-top: -4px; margin-bottom: 14px; }

/* Pages légales — texte long, largeur de lecture confortable */
.prose { max-width: 44em; }
.prose h2 { font-size: 1.35rem; font-weight: 800; margin: 40px 0 14px; }
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 1.05rem; font-weight: 700; margin: 24px 0 8px; }
.prose p { color: var(--ink-soft); margin-bottom: 14px; }
.prose ul { color: var(--ink-soft); margin: 0 0 14px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--brand); font-weight: 600; }
.prose b, .prose strong { color: var(--ink); }
.prose .maj { color: var(--ink-soft); font-size: .88rem; font-style: italic; margin-top: 40px; }
.fiche { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; margin-bottom: 14px; }
.fiche dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 8px 20px; }
.fiche dt { color: var(--ink-soft); font-size: .93rem; }
.fiche dd { margin: 0; font-weight: 600; font-size: .95rem; }
@media (max-width: 560px){ .fiche dl { grid-template-columns: 1fr; gap: 2px 0; } .fiche dd { margin-bottom: 10px; } }

/* Footer */
footer { border-top: 1px solid var(--line); background: var(--bg-alt); padding: 56px 0 32px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 780px){ .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.foot-grid h5 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin: 0 0 14px; }
.foot-grid a { display: block; color: var(--ink-soft); font-size: .93rem; padding: 5px 0; }
.foot-grid a:hover { color: var(--brand); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .86rem; flex-wrap: wrap; gap: 12px; }
.foot-bottom a { color: var(--ink-soft); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line); }
.foot-bottom a:hover { color: var(--brand); text-decoration-color: var(--brand); }
.badge-row { display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.badge { font-size:.76rem; font-weight:600; color:var(--ink-soft); border:1px solid var(--line); padding:5px 11px; border-radius:999px; background:var(--bg-elev);}
