/* TrustWords — feuille de style unique, écrite sur la charte (_DEV_GUIDLINES/design-guidelines.md).
   Une seule couleur d'accent (le bleu), les autres familles pour le sens : vert = c'est bon,
   corail = alerte, violet = PROTECT, orange = attente. Clair et foncé dès l'écriture.
   Exception TrustWords (3 septembre 2026) : les titres sont en couleur de texte, le cyan
   étant la teinte que l'œil âgé filtre le plus ; le bleu reste sur les boutons, filets, pictos. */

:root {
  --fond: #f5f7fa;
  --carte: #ffffff;
  --filet: #f0f0f3;
  --bord: #e2e2e2;
  --texte: #222222;
  --secondaire: #737373;
  --bleu: #29c5f6;
  --bleu-texte: #007faf;
  --surface-bleu: #e5f8fe;
  --vert: #a9c600;
  --vert-texte: #667a00;
  --surface-vert: #f5f8e0;
  --corail: #ff5a5f;
  --corail-texte: #b8323a;
  --surface-corail: #ffebec;
  --violet: #c08cff;
  --violet-texte: #7440c8;
  --surface-violet: #f7f1ff;
  --jaune-texte: #a46700;
  --surface-jaune: #fff9ed;
  --surface-gris: #f3f3f3;
  --ombre: 0 1px 2px rgba(34, 34, 34, 0.05), 0 10px 30px rgba(34, 34, 34, 0.06);
  --rayon: 16px;
  --largeur: 1080px;
  --colonne: 68ch;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --fond: #1d1d1c;
    --carte: #272726;
    --filet: #3c3c3a;
    --bord: #3c3c3a;
    --texte: #e8e8e6;
    --secondaire: #9b9b98;
    --bleu-texte: #29c5f6;
    --surface-bleu: #273f45;
    --vert-texte: #a9c600;
    --surface-vert: #3a3f20;
    --corail-texte: #ff5a5f;
    --surface-corail: #472f2f;
    --violet-texte: #c08cff;
    --surface-violet: #3e3647;
    --jaune-texte: #ffd166;
    --surface-jaune: #474030;
    --surface-gris: #3a3a39;
    --ombre: none;
  }
}
:root[data-theme="dark"] {
  --fond: #1d1d1c;
  --carte: #272726;
  --filet: #3c3c3a;
  --bord: #3c3c3a;
  --texte: #e8e8e6;
  --secondaire: #9b9b98;
  --bleu-texte: #29c5f6;
  --surface-bleu: #273f45;
  --vert-texte: #a9c600;
  --surface-vert: #3a3f20;
  --corail-texte: #ff5a5f;
  --surface-corail: #472f2f;
  --violet-texte: #c08cff;
  --surface-violet: #3e3647;
  --jaune-texte: #ffd166;
  --surface-jaune: #474030;
  --surface-gris: #3a3a39;
  --ombre: none;
}

/* ---- Base ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--fond);
  color: var(--texte);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--bleu-texte); text-decoration: underline; text-underline-offset: 0.15em; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--bleu); outline-offset: 3px; border-radius: 4px; }
h1, h2, h3, h4 { color: var(--texte); font-weight: 700; line-height: 1.2; margin: 0; text-wrap: balance; }
h1 { font-size: 40px; letter-spacing: -0.01em; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
p { margin: 0; }
p + p { margin-top: 0.9em; }
ul, ol { margin: 0; padding-left: 1.3em; }
li + li { margin-top: 0.35em; }
strong, b { font-weight: 700; }
.secondaire { color: var(--secondaire); }
.petit { font-size: 16px; }
.meta { font-size: 13px; color: var(--secondaire); letter-spacing: 0.02em; }
.accent-bleu { color: var(--bleu-texte); }
.accent-vert { color: var(--vert-texte); }
.accent-corail { color: var(--corail-texte); }
.accent-violet { color: var(--violet-texte); }
.visuellement-cache { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---- Cadre ----------------------------------------------------------------- */
.cadre { width: min(var(--largeur), 100% - 40px); margin-inline: auto; }
.colonne { max-width: var(--colonne); }
.section { padding: 72px 0; scroll-margin-top: 72px; }
.section-entete { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; max-width: var(--colonne); }
.section-entete p { color: var(--secondaire); font-size: 20px; }
.surtitre { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bleu-texte); }

/* ---- En-tête --------------------------------------------------------------- */
.entete {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--fond) 88%, transparent);
  -webkit-backdrop-filter: saturate(160%) blur(14px); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.entete.scrolled { border-bottom-color: var(--bord); }
.entete .cadre { display: flex; align-items: center; gap: 24px; min-height: 68px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; color: var(--texte); text-decoration: none; }
.logo img { width: 34px; height: 34px; border-radius: 8px; }
.nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav a { color: var(--texte); text-decoration: none; font-weight: 600; font-size: 16px; }
.nav a:hover { color: var(--bleu-texte); }
.langues { display: flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid var(--bord); border-radius: 999px; background: var(--carte); }
.langues a, .langues span { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; padding: 4px 8px; border-radius: 999px; text-decoration: none; color: var(--secondaire); }
.langues [aria-current="true"] { background: var(--surface-bleu); color: var(--bleu-texte); }
.menu-mobile { display: none; width: 44px; height: 44px; border: 1px solid var(--bord); border-radius: 12px; background: var(--carte); cursor: pointer; align-items: center; justify-content: center; }
.menu-mobile span, .menu-mobile span::before, .menu-mobile span::after { display: block; width: 20px; height: 2px; background: var(--texte); border-radius: 2px; position: relative; content: ""; }
.menu-mobile span::before { position: absolute; top: -6px; }
.menu-mobile span::after { position: absolute; top: 6px; }

/* ---- Boutons --------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; padding: 12px 24px; border-radius: 999px; font: inherit; font-weight: 700; font-size: 18px; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: transform 0.1s, filter 0.15s; }
.btn:active { transform: translateY(1px); }
.btn-principal { background: var(--bleu); color: #ffffff; }
.btn-principal:hover { filter: brightness(0.95); }
.btn-contour { background: transparent; color: var(--bleu-texte); border-color: var(--bleu); }
.btn-contour:hover { background: var(--surface-bleu); }
.btn-corail { background: var(--corail); color: #ffffff; }
.btn-violet { background: transparent; color: var(--violet-texte); border-color: var(--violet); }
.btn-violet:hover { background: var(--surface-violet); }
.btn-petit { min-height: 40px; padding: 6px 16px; font-size: 16px; }
.btn-blanc { background: var(--carte); color: var(--texte); border-color: var(--bord); }
.btn-grand { min-height: 60px; padding: 14px 34px; font-size: 20px; }

/* ---- Accueil, direction A : une phrase, un téléphone, cinq moments ---------- */
.ouverture { padding: 72px 0 0; text-align: center; }
.ouverture .cadre { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.ouverture h1 { font-size: 84px; line-height: 1.02; letter-spacing: -0.03em; font-weight: 800; max-width: 13ch; }
.ouverture .sous-titre { font-size: 24px; line-height: 1.4; color: var(--secondaire); max-width: 42ch; text-wrap: balance; }
.preuves { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; font-size: 16px; color: var(--secondaire); }
.preuves li::before { content: "✓ "; color: var(--vert-texte); font-weight: 700; }
.preuves li + li { margin-top: 0; }
.ouverture picture { display: block; width: min(400px, 82%); margin-top: 28px; }
.telephone-ouverture { width: 100%; border-radius: 44px; box-shadow: 0 40px 90px rgba(34, 34, 34, 0.22); }
.moment { padding: 140px 0 0; scroll-margin-top: 72px; }
.moment.final { padding-bottom: 100px; }
.moment-grille { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.moment-texte { display: flex; flex-direction: column; gap: 18px; }
.moment-texte .protocole { margin-top: 8px; }
.moment-entete { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; max-width: var(--colonne); }
.moment-entete.centre { align-items: center; text-align: center; margin-inline: auto; }
.moment-entete p { color: var(--secondaire); font-size: 20px; }
.moment-lien { margin-top: 28px; font-size: 17px; }
.moment h2 { font-size: 40px; letter-spacing: -0.02em; }
.cta-collant { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--fond) 92%, transparent); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-top: 1px solid var(--bord); display: none; }
.cta-collant .btn { width: 100%; }
.cta-collant[hidden] { display: none; }

/* ---- Héros ----------------------------------------------------------------- */
.heros { padding: 56px 0 40px; }
.heros .cadre { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 48px; align-items: center; }
.heros-texte { display: flex; flex-direction: column; gap: 20px; }
.heros-texte .marque { display: inline-flex; align-items: center; gap: 10px; color: var(--bleu-texte); font-weight: 700; font-size: 18px; }
.heros-texte .accroche { font-size: 22px; color: var(--secondaire); max-width: 32ch; }
.heros-texte .citation { font-size: 18px; color: var(--corail-texte); font-weight: 600; line-height: 1.45; }
.heros-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.heros-visuel { display: flex; justify-content: center; }
.heros-visuel img { width: min(340px, 100%); border-radius: 36px; box-shadow: 0 30px 60px rgba(34, 34, 34, 0.18); }
.bouclier-svg { width: 44px; height: 50px; }

/* ---- Cartes et encarts ---------------------------------------------------- */
.carte { background: var(--carte); border: 1px solid var(--bord); border-radius: var(--rayon); box-shadow: var(--ombre); padding: 28px; }
.encart { border-radius: var(--rayon); padding: 20px 24px; display: flex; gap: 14px; align-items: flex-start; }
.encart-bleu { background: var(--surface-bleu); color: var(--texte); }
.encart-vert { background: var(--surface-vert); }
.encart-corail { background: var(--surface-corail); }
.encart-jaune { background: var(--surface-jaune); }
.encart-violet { background: var(--surface-violet); }
.encart-corail strong { color: var(--corail-texte); }
.encart-vert strong { color: var(--vert-texte); }
.encart-jaune strong { color: var(--jaune-texte); }
.encart-violet strong { color: var(--violet-texte); }
.encart-bleu strong { color: var(--bleu-texte); }
.pastille { flex: none; width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; color: #ffffff; background: var(--bleu); }
.pastille-vert { background: var(--vert); }
.pastille-corail { background: var(--corail); }
.grille { display: grid; gap: 20px; }
.grille-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grille-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ---- Dialogue -------------------------------------------------------------- */
.dialogue { max-width: 620px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.replique { font-size: 20px; line-height: 1.5; }
.replique.eux { color: var(--secondaire); }
.replique.moi { font-weight: 700; }
.mots-dits { display: flex; gap: 10px; flex-wrap: wrap; }
.mot { padding: 8px 16px; border-radius: 12px; background: var(--surface-vert); color: var(--vert-texte); font-weight: 700; letter-spacing: 0.06em; font-size: 20px; }
.verdict { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; }
.verdict .pastille { width: 26px; height: 26px; font-size: 13px; }
.argument { max-width: 620px; margin: 28px auto 0; text-align: center; font-size: 20px; color: var(--secondaire); }
.argument b { display: block; margin-top: 6px; color: var(--texte); }

/* ---- Listes de situations ------------------------------------------------- */
.situations { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.situations h3 { margin-bottom: 12px; }
.situations li { color: var(--secondaire); }
.situations li::marker { color: var(--bleu); }

/* ---- Démonstration des mots (animation CSS) ------------------------------- */
.demo-mots { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.protocole { display: flex; flex-direction: column; gap: 14px; font-size: 22px; line-height: 1.45; }
.protocole strong { font-weight: 700; }
.protocole .note { font-size: 16px; color: var(--secondaire); margin-top: 8px; }
.telephone { width: min(320px, 100%); margin-inline: auto; background: var(--carte); border: 1px solid var(--bord); border-radius: 28px; box-shadow: var(--ombre); padding: 22px 18px 18px; display: flex; flex-direction: column; gap: 12px; }
.telephone .contact { display: flex; align-items: center; gap: 10px; }
.telephone .avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--bleu); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.telephone .contact b { font-size: 16px; }
.telephone .contact span { font-size: 13px; color: var(--secondaire); display: block; }
.telephone .question { font-size: 14px; color: var(--secondaire); text-align: center; }
.liste-mots { display: flex; flex-direction: column; gap: 6px; }
.liste-mots span { display: block; text-align: center; font-weight: 700; font-size: 24px; letter-spacing: 0.08em; padding: 10px; border-radius: 10px; background: var(--surface-gris); }
.liste-mots span:nth-child(1) { animation: mot-entre 20s linear infinite; }
.liste-mots span:nth-child(2) { animation: mot-entre 20s linear infinite; animation-delay: -6.7s; }
.liste-mots span:nth-child(3) { animation: mot-entre 20s linear infinite; animation-delay: -13.4s; }
@keyframes mot-entre { 0%, 90% { opacity: 1; transform: none; } 95% { opacity: 0; transform: translateY(6px); } 100% { opacity: 1; transform: none; } }
.creneau { display: flex; flex-direction: column; gap: 6px; }
.creneau .barre { height: 6px; border-radius: 3px; background: var(--filet); overflow: hidden; }
.creneau .barre i { display: block; height: 100%; background: var(--bleu); border-radius: 3px; animation: barre-vide 20s linear infinite; }
@keyframes barre-vide { from { width: 100%; } to { width: 0; } }
.creneau .legende { font-size: 13px; color: var(--secondaire); text-align: center; font-variant-numeric: tabular-nums; }
.telephone .oui { text-align: center; background: var(--vert); color: #fff; border-radius: 999px; padding: 10px; font-weight: 700; font-size: 15px; }
.telephone .non { text-align: center; border: 1.5px solid var(--corail); color: var(--corail-texte); border-radius: 999px; padding: 8px; font-weight: 600; font-size: 14px; }
@media (prefers-reduced-motion: reduce) {
  .liste-mots span, .creneau .barre i { animation: none; }
  .creneau .barre i { width: 62%; }
}

/* ---- Étapes (installer pour un proche) ------------------------------------ */
.etapes { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.etape { display: flex; flex-direction: column; gap: 14px; }
.etape img { width: 100%; border-radius: 22px; box-shadow: 0 20px 50px rgba(34, 34, 34, 0.12); }
.etape picture { display: block; }
.etape .titre { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 20px; }
.etape p { color: var(--secondaire); }
details.repli { border: 1px solid var(--bord); border-radius: var(--rayon); background: var(--carte); padding: 0 22px; margin-top: 28px; }
details.repli summary { cursor: pointer; padding: 18px 0; font-weight: 700; font-size: 18px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
details.repli summary::-webkit-details-marker { display: none; }
details.repli summary::after { content: "+"; font-size: 24px; color: var(--bleu-texte); line-height: 1; }
details[open].repli summary::after { content: "−"; }
details.repli .contenu { padding: 0 0 22px; color: var(--secondaire); display: flex; flex-direction: column; gap: 10px; }
details.repli ol { padding-left: 1.4em; }

/* ---- PROTECT --------------------------------------------------------------- */
.protect-entete { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 36px; }
.badge-protect { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; border: 1.5px solid var(--violet); color: var(--violet-texte); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; }
.protect-entete p { color: var(--secondaire); font-size: 20px; max-width: 40ch; }
.benefices { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.benefice { background: var(--carte); border: 1px solid var(--bord); border-radius: var(--rayon); padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.benefice h3 { font-size: 18px; }
.benefice p { color: var(--secondaire); font-size: 16px; }
.benefice svg { width: 28px; height: 28px; color: var(--bleu); }
.comparatif { width: 100%; border-collapse: collapse; margin-top: 32px; background: var(--carte); border: 1px solid var(--bord); border-radius: var(--rayon); overflow: hidden; }
.comparatif th, .comparatif td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--filet); }
.comparatif th { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--secondaire); background: var(--surface-gris); }
.comparatif tr:last-child td { border-bottom: none; }
.comparatif td:nth-child(2) { color: var(--secondaire); }
.comparatif td:nth-child(3) { font-weight: 700; color: var(--bleu-texte); }
.tableau-defilant { overflow-x: auto; margin-top: 32px; }
.tableau-defilant .comparatif { margin-top: 0; }
.offres { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 36px; }
.moment .offres { margin-top: 0; max-width: 760px; margin-inline: auto; }
.moment .moment-lien { text-align: center; }
.offre { position: relative; display: flex; flex-direction: column; gap: 10px; padding: 26px; border-radius: var(--rayon); background: var(--carte); border: 1px solid var(--bord); box-shadow: var(--ombre); }
.offre-vie { border-color: var(--violet); }
.offre .nom { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.offre .etiquette { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: var(--surface-violet); color: var(--violet-texte); white-space: nowrap; }
.offre .prix { font-size: 36px; font-weight: 700; font-variant-numeric: tabular-nums; }
.offre .prix small { font-size: 18px; font-weight: 600; color: var(--secondaire); }
.offre p { color: var(--secondaire); }
.offre p.prix { color: var(--texte); }
.offre .btn { margin-top: auto; }
.notes-prix { margin-top: 20px; color: var(--secondaire); font-size: 16px; display: flex; flex-direction: column; gap: 4px; }

/* ---- Sécurité, confiance --------------------------------------------------- */
.confiance { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.confiance .carte { padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.confiance h3 { font-size: 18px; }
.confiance p { color: var(--secondaire); font-size: 16px; }
.qui { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 32px; }
.qui .carte h3 { margin-bottom: 10px; }
.qui ul { color: var(--secondaire); }

/* ---- Appel final et disponibilité ----------------------------------------- */
.final { text-align: center; }
.final .cadre { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.final h2 { font-size: 40px; }
.final p { color: var(--secondaire); font-size: 20px; }
.bloc-disponibilite { width: min(600px, 100%); margin-top: 12px; }
.etat-bientot { text-align: center; display: flex; flex-direction: column; gap: 12px; }
.etat-bientot h3 { font-size: 22px; }
.etat-bientot p { font-size: 18px; }
.adresse-contact { display: block; font-size: 18px; font-weight: 700; overflow-wrap: anywhere; font-variant-numeric: tabular-nums; }
.boutons-attente { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 4px; }
.etat-disponible { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.etat-disponible[hidden] { display: none; }
.badge-app-store img { height: 56px; width: auto; }
.qr-app-store { display: flex; align-items: center; gap: 12px; text-align: left; }
.qr-app-store img { width: 100px; height: 100px; border-radius: 10px; border: 1px solid var(--bord); background: #ffffff; }
.qr-app-store span { max-width: 18ch; font-size: 15px; color: var(--secondaire); line-height: 1.4; }
.heros .etat-disponible { justify-content: flex-start; }
.heros .bloc-disponibilite { margin-top: 4px; }

/* ---- FAQ ------------------------------------------------------------------- */
.sommaire { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.sommaire a { font-size: 15px; font-weight: 600; text-decoration: none; padding: 8px 14px; border-radius: 999px; background: var(--carte); border: 1px solid var(--bord); color: var(--texte); }
.sommaire a:hover { border-color: var(--bleu); color: var(--bleu-texte); }
.faq-groupe { margin-top: 40px; }
.faq-groupe h2 { margin-bottom: 16px; }
.faq details { background: var(--carte); border: 1px solid var(--bord); border-radius: 14px; padding: 0 22px; }
.faq details + details { margin-top: 10px; }
.faq summary { cursor: pointer; padding: 16px 0; font-weight: 700; font-size: 18px; list-style: none; display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--bleu-texte); font-size: 24px; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "−"; }
.faq .reponse { padding: 0 0 18px; color: var(--secondaire); display: flex; flex-direction: column; gap: 10px; }

/* ---- Guide « si les mots ne correspondent pas » --------------------------- */
.guide { display: flex; flex-direction: column; gap: 28px; max-width: 760px; }
.guide .etape-guide { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.guide .etape-guide .pastille { width: 40px; height: 40px; font-size: 18px; }
.guide .etape-guide h3 { margin-bottom: 8px; }
.guide .etape-guide p, .guide .etape-guide li { color: var(--secondaire); }
.guide .etape-guide p strong { color: var(--texte); }
.numeros { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-top: 12px; }
.numero { background: var(--carte); border: 1px solid var(--bord); border-radius: 12px; padding: 14px 16px; }
.numero b { display: block; font-size: 28px; font-variant-numeric: tabular-nums; }
.numero span { font-size: 15px; color: var(--secondaire); }
.a-noter { display: grid; grid-template-columns: 1fr; gap: 10px; }
.a-noter .ligne { border-bottom: 1px dashed var(--bord); padding: 12px 0 6px; color: var(--secondaire); font-size: 16px; }
.barre-outils { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }

/* ---- Contact et pages légales -------------------------------------------- */
.contact-mail { display: flex; flex-direction: column; gap: 12px; }
.contact-mail .boutons-attente { justify-content: flex-start; }
.contact-bloc { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.legal { max-width: var(--colonne); display: flex; flex-direction: column; gap: 28px; }
.legal h2 { font-size: 22px; margin-top: 12px; }
.legal h3 { font-size: 18px; }
.legal p, .legal li { color: var(--secondaire); }
.legal p strong { color: var(--texte); }
.legal .highlight-box, .legal .contact-box { background: var(--surface-bleu); border-radius: var(--rayon); padding: 20px 24px; }
.legal .highlight-box p, .legal .contact-box p { color: var(--texte); }
.legal .last-update { font-size: 15px; }
.legal .privacy-section { display: flex; flex-direction: column; gap: 10px; }
.legal .privacy-header { display: flex; flex-direction: column; gap: 8px; }

/* ---- Pied de page ---------------------------------------------------------- */
.pied { border-top: 1px solid var(--bord); padding: 48px 0 36px; margin-top: 24px; }
.pied .cadre { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.pied h4 { margin-bottom: 12px; }
.pied a { display: block; color: var(--secondaire); text-decoration: none; padding: 4px 0; }
.pied a:hover { color: var(--bleu-texte); }
.pied a.logo { display: inline-flex; padding: 0; color: var(--texte); }
.pied .devise { color: var(--secondaire); margin-top: 10px; }
.pied-bas { width: min(var(--largeur), 100% - 40px); margin: 32px auto 0; padding-top: 20px; border-top: 1px solid var(--filet); font-size: 13px; color: var(--secondaire); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---- Écrans étroits -------------------------------------------------------- */
@media (max-width: 900px) {
  .heros .cadre { grid-template-columns: 1fr; gap: 32px; }
  .heros-visuel { order: -1; }
  .heros-visuel img { width: min(260px, 100%); }
  .demo-mots { grid-template-columns: 1fr; }
  .moment-grille { grid-template-columns: 1fr; gap: 40px; }
  .ouverture h1 { font-size: 60px; }
  .pied .cadre { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 720px) {
  body { font-size: 18px; }
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .section { padding: 52px 0; }
  .menu-mobile { display: inline-flex; margin-left: auto; }
  .nav { position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--carte); border-bottom: 1px solid var(--bord); padding: 8px 20px 16px; display: none; margin-left: 0; box-shadow: var(--ombre); }
  .nav.active { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--filet); font-size: 18px; }
  .nav .btn { margin-top: 12px; border-bottom: none; }
  .nav .langues { margin-top: 12px; align-self: flex-start; }
  .protocole { font-size: 20px; }
  .offre .prix { font-size: 32px; }
  .ouverture { padding-top: 44px; }
  .ouverture h1 { font-size: 40px; letter-spacing: -0.02em; }
  .ouverture .sous-titre { font-size: 20px; }
  .ouverture picture { width: 78%; }
  .telephone-ouverture { border-radius: 32px; }
  .moment { padding-top: 88px; }
  .moment h2, .final h2 { font-size: 30px; }
  .moment-grille { grid-template-columns: 1fr; gap: 36px; }
  body.cta-visible { padding-bottom: 84px; }
  body.cta-visible .cta-collant { display: block; }
  .guide .etape-guide { grid-template-columns: 36px 1fr; gap: 12px; }
}

/* ---- Impression : le guide se pose sur la table de la cuisine -------------- */
@media print {
  :root { --fond: #ffffff; --carte: #ffffff; --texte: #000000; --secondaire: #333333; --bord: #999999; --ombre: none; }
  body { font-size: 14pt; }
  .entete, .pied, .pied-bas, .barre-outils, .nav, .menu-mobile, .final, .no-print { display: none !important; }
  .section { padding: 12pt 0; border: none; }
  .cadre { width: 100%; }
  a { color: inherit; text-decoration: none; }
  .numero b { font-size: 22pt; }
  .a-noter .ligne { border-bottom: 1px solid #000; padding: 18pt 0 4pt; }
}
