/* =============================================================================
   guides.css — Feuille unique du centre d'aide (/guides/).
   Partagée par le hub et les 9 guides.

   POURQUOI UNE FEUILLE À PART
     L'accueil (index.html) porte ses styles en <style> inline pour le LCP : une
     seule page, un seul chargement. Les guides sont dix pages qui partagent le
     même gabarit — un fichier commun mis en cache par le navigateur bat dix
     copies inline.

   TOKENS
     Repris à l'identique de landing/index.html. Seul ajout : --violet, teinte de
     la famille « Ta bande ». Chaque page définit --fam une fois sur <body> ; les
     pastilles, chips, encarts et bandeaux s'y accordent automatiquement.

   FAMILLES
     A · Le terrain   → --green   (rejoindre, créer un match, équipes & score)
     B · Ta bande     → --violet  (amis, groupes, parrainage)
     C · Tes réglages → --orange  (profil, sécurité, notifications)
   ========================================================================== */

/* ─── Police Inter (variable, auto-hébergée — aucun appel à Google) ────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/inter-var-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/inter-var-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ─── Tokens ──────────────────────────────────────────────────────────── */
:root {
  --bg:        #09090B;
  --surface:   #18181B;
  --surface2:  #27272A;
  --border:    #3F3F46;
  --green:     #22C55E;
  --green-dim: #16A34A;
  --green-soft:#86EFAC;
  --orange:    #F97316;
  --violet:    #A78BFA;
  --primary:   #FAFAFA;
  --secondary: #A1A1AA;
  --muted:     #71717A;
  --radius:    14px;
  --radius-lg: 20px;
  --maxw:      1100px;
  --readw:     920px;

}

/* ─── Famille de la page ──────────────────────────────────────────────────
   Chaque guide porte sa classe de famille sur <body> : c'est la SEULE chose
   qui change d'une page à l'autre. --fam-rgb double --fam en canaux séparés
   pour composer des transparences (rgba) sans dépendre de `rgb(from …)`, trop
   récent pour le parc de navigateurs visé.
   ---------------------------------------------------------------------- */
body            { --fam: var(--green);  --fam-rgb: 34,197,94; }   /* A · Le terrain   */
body.fam-bande  { --fam: var(--violet); --fam-rgb: 167,139,250; } /* B · Ta bande     */
body.fam-reglages { --fam: var(--orange); --fam-rgb: 249,115,22; }/* C · Tes réglages */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--primary);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: var(--fam);
  color: #000;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 9999px;
}
.skip-link:focus { left: 16px; }

/* Grain léger, identique à l'accueil. */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ─── Nav (reprise de l'accueil) ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 64px;
  background: rgba(9,9,11,.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(63,63,70,.4);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 30px; width: auto; }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { font-size: .875rem; color: var(--secondary); transition: color .2s; }
.nav-links a:hover { color: var(--primary); }
.nav-links a[aria-current="page"] { color: var(--primary); }
.nav-links a[aria-current="page"]::after {
  content: '';
  display: block;
  height: 2px;
  margin-top: 4px;
  border-radius: 2px;
  background: var(--green);
}

.lang-switch { display: flex; gap: 2px; align-items: center; font-size: .8rem; }
.lang-switch a { padding: 4px 7px; border-radius: 7px; color: var(--muted); }
.lang-switch a:hover { color: var(--primary); }
.lang-switch a[aria-current="true"] {
  color: var(--green);
  font-weight: 700;
  background: rgba(34,197,94,.1);
}

.nav-cta {
  background: var(--green);
  color: #000;
  font-size: .875rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 9999px;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--green-dim); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  margin: 0 auto;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 99;
  background: rgba(9,9,11,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: none;
  flex-direction: column;
  padding: 12px 5vw 24px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  color: var(--secondary);
  padding: 14px 8px;
  border-bottom: 1px solid rgba(63,63,70,.4);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta { text-align: center; margin-top: 12px; padding: 14px; }

/* ─── Enveloppe de page ───────────────────────────────────────────────── */
main { position: relative; z-index: 1; }

.g-sec { position: relative; z-index: 1; }
.g-sec.alt {
  background: rgba(24,24,27,.45);
  border-top: 1px solid rgba(63,63,70,.4);
  border-bottom: 1px solid rgba(63,63,70,.4);
}
.g-inner { max-width: var(--readw); margin: 0 auto; padding: 72px 5vw; }
.g-inner.tight { padding-top: 0; }

/* ─── BLOC 1-2 · Fil d'Ariane, titre, promesse ────────────────────────── */
.g-head { max-width: var(--readw); margin: 0 auto; padding: 128px 5vw 0; position: relative; z-index: 1; }
.g-head::after {
  content: '';
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 420px;
  max-width: 92vw;
  background: radial-gradient(ellipse, rgba(var(--fam-rgb), .13) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.crumb { font-size: .82rem; color: var(--muted); display: flex; gap: 8px; flex-wrap: wrap; }
.crumb a { transition: color .2s; }
.crumb a:hover { color: var(--primary); }
.crumb .sep { color: var(--border); }
.crumb .here { color: var(--fam); }

.g-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--fam-rgb), .1);
  border: 1px solid rgba(var(--fam-rgb), .25);
  border-radius: 9999px;
  padding: 6px 16px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--fam);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.g-title {
  font-size: clamp(2.1rem, 5.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.035em;
  max-width: 19ch;
  text-wrap: balance;
  margin: 18px 0 18px;
}
.g-title .f { color: var(--fam); }

.g-lede {
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  color: var(--secondary);
  max-width: 56ch;
  line-height: 1.68;
}

.g-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: .82rem;
  color: var(--muted);
}
.g-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

/* ─── BLOC 3 · « En 30 secondes » ─────────────────────────────────────── */
.tldr {
  border: 1px solid rgba(var(--fam-rgb), .3);
  background: rgba(var(--fam-rgb), .05);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  margin-top: 40px;
  display: grid;
  gap: 14px;
}
.tldr h2 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fam);
}
.tldr ol { list-style: none; display: grid; gap: 11px; counter-reset: tldr; }
/* Pastille en position absolue, PAS en flex : un conteneur flex ferait de chaque
   <strong> du texte un élément flex à part, ce qui disloque la phrase. */
.tldr li {
  counter-increment: tldr;
  position: relative;
  padding-left: 34px;
  font-size: .96rem;
  line-height: 1.55;
}
.tldr li::before {
  content: counter(tldr);
  position: absolute;
  left: 0; top: 3px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: var(--fam);
  color: #000;
  font-size: .7rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* ─── Titres de section ───────────────────────────────────────────────── */
.g-sec-head { margin-bottom: 32px; max-width: 58ch; }
.g-sec-head h2 {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.18;
  text-wrap: balance;
  margin-bottom: 10px;
}
.g-sec-head p { color: var(--secondary); font-size: 1rem; line-height: 1.65; }

/* ─── BLOC 4 · Étapes + téléphone ─────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 272px;
  gap: 44px;
  align-items: start;
}

.steps { display: grid; gap: 14px; }
.step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color .25s;
}
.step:hover { border-color: rgba(var(--fam-rgb), .35); }
.step > .n {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--fam);
  color: #000;
  font-weight: 800;
  font-size: .9rem;
  display: grid;
  place-items: center;
}
.step h3 { font-size: 1rem; font-weight: 700; letter-spacing: -.015em; margin-bottom: 5px; }
.step p { font-size: .92rem; color: var(--secondary); line-height: 1.6; }
.step p + p { margin-top: 8px; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.chip {
  font-size: .78rem;
  color: var(--secondary);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 4px 12px;
}
.chip.on {
  background: rgba(var(--fam-rgb), .13);
  border-color: rgba(var(--fam-rgb), .42);
  color: var(--fam);
  font-weight: 600;
}

/* ─── Maquette de téléphone (CSS pur — aucune image à charger) ────────── */
.gphone {
  position: sticky;
  top: 88px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 11px;
  box-shadow: 0 30px 70px -28px rgba(0,0,0,.9);
}
.gphone::before {
  content: '';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 56px; height: 5px;
  border-radius: 9999px;
  background: var(--surface2);
}
.gscreen {
  background: var(--bg);
  border-radius: 21px;
  padding: 34px 13px 16px;
  display: grid;
  gap: 9px;
  align-content: start;
  min-height: 340px;
}
.gcaption {
  text-align: center;
  font-size: .74rem;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.5;
}

.grow { display: flex; align-items: center; justify-content: space-between; gap: 9px; }
.gt { font-size: .78rem; font-weight: 700; }
.gs { font-size: .68rem; color: var(--muted); }
.gcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 12px;
  display: grid;
  gap: 8px;
}
.gcard.hot { border-color: rgba(249,115,22,.45); }
.gpill {
  flex: none;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 9999px;
  background: rgba(var(--fam-rgb), .15);
  color: var(--fam);
}
.gpill.warn { background: rgba(249,115,22,.15); color: var(--orange); }
.ggauge { height: 5px; border-radius: 9999px; background: var(--surface2); overflow: hidden; }
.ggauge > i { display: block; height: 100%; border-radius: 9999px; background: var(--green); }
.ggauge.warn > i { background: var(--orange); }
.gbtn {
  text-align: center;
  font-size: .72rem;
  font-weight: 800;
  color: #000;
  background: var(--fam);
  border-radius: 9px;
  padding: 8px;
}
.gbtn.ghost { background: transparent; color: var(--secondary); border: 1px solid var(--border); }
.gfield {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}
.gfield .k { font-size: .62rem; color: var(--muted); letter-spacing: .07em; text-transform: uppercase; }
.gfield .v { font-size: .74rem; font-weight: 600; }
.gfield .v.on { color: var(--fam); }
.gfield .v.off { color: var(--muted); }
.gseg { display: flex; gap: 5px; }
.gseg > span {
  flex: 1;
  text-align: center;
  font-size: .68rem;
  padding: 7px 4px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--secondary);
}
.gseg > span.on {
  background: rgba(var(--fam-rgb), .14);
  border-color: rgba(var(--fam-rgb), .45);
  color: var(--fam);
  font-weight: 700;
}
.gava {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface2);
  display: grid;
  place-items: center;
  font-size: .64rem;
  font-weight: 700;
  color: var(--secondary);
}
.gfill { flex: 1; min-width: 0; }

/* ─── BLOC 5 · Encart de friction ─────────────────────────────────────── */
.note-in {
  border: 1px solid rgba(var(--fam-rgb), .32);
  background: rgba(var(--fam-rgb), .06);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 24px;
  display: grid;
  gap: 8px;
}
.note-in h3 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fam);
}
.note-in p { font-size: .95rem; line-height: 1.65; }

/* ─── BLOC 6 · Comparatif deux colonnes ───────────────────────────────── */
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cmp {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: grid;
  gap: 12px;
  align-content: start;
}
.cmp h3 { font-size: 1rem; font-weight: 700; letter-spacing: -.015em; }
.cmp h3 .sub { font-size: .76rem; font-weight: 600; color: var(--muted); margin-left: 8px; }
.cmp ul { list-style: none; display: grid; gap: 9px; }
.cmp li {
  position: relative;
  padding-left: 15px;
  font-size: .92rem;
  color: var(--secondary);
  line-height: 1.55;
}
.cmp li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--border);
}
.cmp li b { color: var(--primary); font-weight: 600; }

/* ─── BLOC 7 · « Ça coince ? » (natif, sans JS) ───────────────────────── */
.faq { display: grid; gap: 10px; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .25s;
}
.faq details[open] { border-color: rgba(var(--fam-rgb), .35); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 22px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  flex: none;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--muted);
  transition: transform .2s, color .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); color: var(--fam); }
.faq .answer { padding: 0 22px 20px; }
.faq .answer p { font-size: .92rem; color: var(--secondary); line-height: 1.68; }
.faq .answer p + p { margin-top: 10px; }
.faq .answer a { color: var(--fam); font-weight: 600; }

/* ─── BLOC 8 · Bandeau final ──────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, rgba(var(--fam-rgb), .07), rgba(249,115,22,.03));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.cta-inner { max-width: 720px; margin: 0 auto; padding: 76px 5vw; text-align: center; }
.cta-inner h2 {
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.12;
  margin-bottom: 14px;
  text-wrap: balance;
}
.cta-inner > p { color: var(--secondary); font-size: 1rem; margin-bottom: 34px; line-height: 1.65; }

.store-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }
.store-badge-apple { display: inline-flex; transition: transform .2s, opacity .2s; }
.store-badge-apple:hover { transform: translateY(-2px); opacity: .9; }
.store-badge-apple img { height: 56px; width: auto; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 28px;
  transition: border-color .25s, transform .2s;
}
.store-badge:hover { border-color: var(--green); transform: translateY(-2px); }
.store-icon { font-size: 26px; }
.store-text { display: flex; flex-direction: column; line-height: 1.3; }
.store-text .store-sub  { font-size: .7rem; color: var(--muted); }
.store-text .store-name { font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; color: var(--green); }

.next-guide {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(63,63,70,.5);
  font-size: .9rem;
  color: var(--muted);
}
.next-guide a { color: var(--fam); font-weight: 700; }
.next-guide a:hover { text-decoration: underline; }

/* ─── Hub : familles et cartes ────────────────────────────────────────── */
.fam-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.fam-head::after { content: ''; flex: 1; height: 1px; background: rgba(63,63,70,.5); }
.fam-head .swatch { flex: none; width: 9px; height: 9px; border-radius: 2px; background: var(--fam); }
.fam-head .name {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fam);
}
.fam-head .desc { font-size: .88rem; color: var(--muted); }

.hub { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hub-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .25s, transform .25s;
}
.hub-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--fam), transparent 72%);
  opacity: .75;
}
.hub-card:hover { border-color: rgba(var(--fam-rgb), .4); transform: translateY(-4px); }
/* Les libellés n'ont pas la même longueur : on pousse le lien en bas pour que
   les trois cartes d'une rangée s'alignent. */
.hub-card .go { margin-top: auto; padding-top: 4px; }
.hub-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--surface2);
  display: grid;
  place-items: center;
  font-size: 19px;
}
.hub-card h3 { font-size: 1.08rem; font-weight: 700; letter-spacing: -.02em; }
.hub-card p { font-size: .9rem; color: var(--secondary); line-height: 1.6; }
.hub-card .lvl { font-size: .76rem; color: var(--muted); }
.hub-card .go { font-size: .88rem; font-weight: 700; color: var(--fam); margin-top: 2px; }

/* ─── Footer (repris de l'accueil) ────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 64px 5vw 40px; position: relative; z-index: 1; }
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; color: var(--muted); line-height: 1.65; max-width: 280px; }
.footer-col h4 {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: .9rem; color: var(--secondary); transition: color .2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  max-width: var(--maxw);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: var(--muted);
}

/* ─── Adaptatif ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hub { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  /* Le téléphone passe sous les étapes : centré et réduit, jamais collé au bord. */
  .gphone { position: static; max-width: 264px; margin: 0 auto; }
  .two { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .g-head { padding-top: 104px; }
  .g-inner { padding: 56px 5vw; }
  .cta-inner { padding: 60px 5vw; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
