/*
Theme Name: PC en forme
Theme URI: https://pcenforme.com
Author: Refonte 2026
Description: Thème sur-mesure léger pour PC en forme — dépannage informatique à Paris. Conçu pour générer des appels. Sans page-builder, rapide et responsive.
Version: 1.1.5
Requires at least: 5.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: pcenforme
*/

:root {
  /* Cool, engineered neutrals — slight blue bias (chosen, not default grey) */
  --bg:        #f4f6fa;
  --surface:   #ffffff;
  --surface-2: #eef1f7;
  --ink:       #0e1726;
  --ink-soft:  #46536b;
  --ink-faint: #7b8798;
  --line:      #dde3ee;
  --line-strong:#c7d0e0;

  /* Action accent — signal orange */
  --signal:    #22c55e;
  --signal-ink:#16a34a;
  --signal-wash:#e8f9ee;

  /* Diagnostic semantic — "réparé / en bonne santé" */
  --ok:        #10967e;
  --ok-wash:   #e2f4f0;

  --radius:    14px;
  --radius-sm: 9px;
  --shadow:    0 1px 2px rgba(14,23,38,.06), 0 12px 30px -18px rgba(14,23,38,.28);
  --shadow-lg: 0 30px 60px -30px rgba(14,23,38,.4);

  --display: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --body:    system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --mono:    ui-monospace, "Cascadia Code", "SF Mono", "Roboto Mono", Menlo, Consolas, monospace;

  --maxw: 1120px;

  /* Le bloc d'appel reste sombre dans les deux themes : seule l'illustration s'adoucit. */
  --cta-img-bright: 1;
  --cta-img-frame:  rgba(255,255,255,.16);
}

@media (prefers-color-scheme: dark) {
  :root {
    --cta-img-bright: .9;
    --cta-img-frame:  rgba(255,255,255,.09);
    --bg:        #0b1120;
    --surface:   #121a2b;
    --surface-2: #182338;
    --ink:       #eef2fa;
    --ink-soft:  #a7b3c9;
    --ink-faint: #6f7d97;
    --line:      #24314b;
    --line-strong:#33425f;
    --signal:    #4ade80;
    --signal-ink:#22c55e;
    --signal-wash:#0e2417;
    --ok:        #33c3a6;
    --ok-wash:   #10261f;
    --shadow:    0 1px 2px rgba(0,0,0,.4), 0 16px 40px -22px rgba(0,0,0,.7);
    --shadow-lg: 0 40px 80px -40px rgba(0,0,0,.8);
  }
}
:root[data-theme="light"] {
  --cta-img-bright:1; --cta-img-frame:rgba(255,255,255,.16);
  --bg:#f4f6fa; --surface:#ffffff; --surface-2:#eef1f7; --ink:#0e1726; --ink-soft:#46536b;
  --ink-faint:#7b8798; --line:#dde3ee; --line-strong:#c7d0e0; --signal:#22c55e; --signal-ink:#16a34a;
  --signal-wash:#e8f9ee; --ok:#10967e; --ok-wash:#e2f4f0;
  --shadow:0 1px 2px rgba(14,23,38,.06),0 12px 30px -18px rgba(14,23,38,.28); --shadow-lg:0 30px 60px -30px rgba(14,23,38,.4);
}
:root[data-theme="dark"] {
  --cta-img-bright:.9; --cta-img-frame:rgba(255,255,255,.09);
  --bg:#0b1120; --surface:#121a2b; --surface-2:#182338; --ink:#eef2fa; --ink-soft:#a7b3c9;
  --ink-faint:#6f7d97; --line:#24314b; --line-strong:#33425f; --signal:#4ade80; --signal-ink:#22c55e;
  --signal-wash:#0e2417; --ok:#33c3a6; --ok-wash:#10261f;
  --shadow:0 1px 2px rgba(0,0,0,.4),0 16px 40px -22px rgba(0,0,0,.7); --shadow-lg:0 40px 80px -40px rgba(0,0,0,.8);
}

* { box-sizing: border-box; }
body, .mk { margin: 0; }
body { background: var(--bg); }
.mk {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Repli. Attention : `hidden` crée un conteneur de défilement et neutralise
     le `position: sticky` du menu — d'où le `clip` juste en dessous. */
  overflow-x: hidden;
}
/* `clip` coupe le débordement horizontal sans créer de conteneur de
   défilement : le menu reste donc collant au scroll. */
@supports (overflow: clip) {
  .mk { overflow-x: clip; }
}
.mk *:focus-visible { outline: 3px solid var(--signal); outline-offset: 2px; border-radius: 4px; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--signal); display:inline-block; }

.mk h1, .mk h2, .mk h3 { font-family: var(--display); text-wrap: balance; line-height: 1.08; margin: 0; letter-spacing: -.02em; }
.mk h1 { font-size: clamp(2.3rem, 6vw, 4rem); font-weight: 800; }
.mk h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; }
.mk h3 { font-size: 1.14rem; font-weight: 700; letter-spacing: -.01em; }
.mk p { margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 1rem; font-family: var(--body);
  padding: 14px 22px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-call {
  background: var(--signal); color: #06230d;
  box-shadow: 0 10px 24px -10px var(--signal);
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px var(--signal); color:#06230d; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink-soft); color: var(--ink); }

/* ---------- Header ---------- */
header.bar {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.admin-bar header.bar { top: 32px; }
@media (max-width: 782px) { .admin-bar header.bar { top: 46px; } }
/* Barre pleine largeur : logo à gauche · menu juste après (aligné à gauche) ·
   actions à droite. Colonnes « auto 1fr auto » : les côtés prennent leur largeur
   réelle et le menu se décale à gauche quand la place manque — jamais coupé. */
.bar-in { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; height: 74px; width: 100%; padding: 0 clamp(18px, 3vw, 48px); }
.bar-left { grid-column: 1; justify-self: start; display: flex; align-items: center; gap: 14px; min-width: 0; }
.logo { display: flex; align-items: baseline; gap: 0; flex: none; font-family: var(--display); font-weight: 800; font-size: 1.18rem; letter-spacing: .04em; text-decoration:none; color: var(--ink); white-space: nowrap; }
.bar-left .logo {
  font-size: clamp(1.15rem, 1.35vw, 1.38rem);
  height: 44px; padding: 0 16px; line-height: 1; align-items: center;
  border: 1px solid var(--line-strong); border-radius: 11px; background: var(--surface);
}
.logo b { color: var(--signal); font-weight: 800; }
.logo span.tld { color: var(--ink-faint); font-weight: 600; font-size: .85em; }
nav.links { grid-column: 2; justify-self: start; display: flex; align-items: center; gap: 18px; min-width: 0; margin-left: 8px; }
nav.links a { color: var(--ink-soft); text-decoration: none; font-size: .92rem; font-weight: 500; white-space: nowrap; line-height: 1; }
nav.links a:hover { color: var(--ink); }
.nav-suivi { display: inline-flex; align-items: center; padding: 8px 14px; border: 1px solid var(--line-strong); border-radius: 100px; color: var(--ink) !important; font-weight: 600; white-space: nowrap; }
.nav-suivi svg { width: 15px; height: 15px; }
.nav-suivi:hover { border-color: var(--signal); background: var(--signal-wash); }
.ft-link { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
.ft-link:hover { color: var(--signal); }
.bar-cta { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 12px; flex: none; min-width: 0; }
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .04em;
  color: var(--ink-soft); background: var(--surface-2); padding: 6px 12px; border-radius: 100px;
  border: 1px solid var(--line-strong);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 var(--ok); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 color-mix(in srgb,var(--ok) 55%,transparent);} 70%{box-shadow:0 0 0 8px transparent;} 100%{box-shadow:0 0 0 0 transparent;} }
/* Pastille « Suivi » dans la barre de droite : bordure verte qui clignote en continu */
.bar-suivi, .ft-suivi { position: relative; font-size: .88rem; text-decoration: none; animation: pcf-blink 2.2s ease-in-out infinite; }
.bar-suivi:hover, .ft-suivi:hover { animation-play-state: paused; border-color: var(--signal); background: var(--signal-wash); }
@keyframes pcf-blink {
  0%, 100% { border-color: var(--line-strong); box-shadow: 0 0 0 0 transparent; }
  50%      { border-color: var(--signal);      box-shadow: 0 0 0 3px color-mix(in srgb, var(--signal) 20%, transparent); }
}
@media (prefers-reduced-motion: reduce) { .bar-suivi, .ft-suivi { animation: none; border-color: var(--signal); } }

/* Menu centré : affiché uniquement quand il y a assez de place */
@media (max-width: 1340px) { nav.links { display: none; } }

/* Le menu central est masqué : on repasse à deux colonnes.
   Conserver trois colonnes ferait consommer deux espacements par une
   colonne vide (32 px perdus), et la barre déborderait sur mobile. */
@media (max-width: 1340px) {
  .bar-in { grid-template-columns: auto 1fr; gap: 12px; }
  .bar-left { grid-column: 1; }
  .bar-cta { grid-column: 2; }
}

/* Pastille « Suivi » : réservée aux écrans larges, masquée en dessous → jamais de débordement */
@media (max-width: 1340px) { .status-pill, .bar-suivi { display: none; } }

/* Numéro : icône seule sur très petits écrans */
@media (max-width: 560px) { .bar-cta .btn-call .lbl { display: none; } }

/* Sous 560 px : on resserre tout pour garantir de l'air entre le logo,
   le sélecteur de thème et le bouton d'appel. */
@media (max-width: 560px) {
  .bar-in { padding: 0 12px; gap: 10px; }
  .bar-left { gap: 8px; }
  .bar-cta { gap: 8px; }
  .bar-left .logo { font-size: 1.02rem; height: 40px; padding: 0 11px; }
  .burger, .theme-toggle { width: 40px; height: 40px; }
  .burger svg, .theme-toggle svg { width: 19px; height: 19px; }
  .bar-cta .btn-call { padding: 11px 15px; }
}

/* Très petits écrans (iPhone SE, 320 px) : dernier cran. */
@media (max-width: 360px) {
  .bar-left .logo { font-size: .94rem; padding: 0 9px; letter-spacing: .02em; }
  .burger, .theme-toggle { width: 38px; height: 38px; }
  .bar-cta .btn-call { padding: 10px 13px; }
}

/* Burger + mobile menu */
.burger { display: none; flex: none; width: 44px; height: 44px; padding: 0; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 11px; color: var(--ink); cursor: pointer; }
.burger:hover { border-color: var(--ink-soft); }
.burger svg { width: 22px; height: 22px; display: block; }
.burger .close-i { display: none; }
.burger[aria-expanded="true"] .open-i { display: none; }
.burger[aria-expanded="true"] .close-i { display: block; }
@media (max-width: 1340px) { .burger { display: inline-flex; } }

.mobile-menu { display: none; flex-direction: column; padding: 8px clamp(20px, 3vw, 48px) 16px; background: var(--bg); border-bottom: 1px solid var(--line); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 6px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: 1rem; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--signal); }
@media (min-width: 1341px) { .mobile-menu { display: none !important; } }

/* « Suivi de votre réparation » dans le menu burger : bouton vert mis en avant,
   qui clignote tant que le menu est ouvert. */
.mobile-menu .menu-suivi {
  margin: 8px 0 6px;
  padding: 14px 14px;
  border: 1px solid var(--signal);
  border-radius: 12px;
  background: var(--signal-wash);
  color: var(--signal) !important;
  font-weight: 700;
}
.mobile-menu.open .menu-suivi { animation: pcf-suivi-blink 1.15s ease-in-out infinite; }
.mobile-menu .menu-suivi:hover { color: var(--signal) !important; }
@keyframes pcf-suivi-blink {
  0%, 100% {
    background: var(--signal-wash);
    box-shadow: 0 0 0 0 transparent;
  }
  50% {
    background: color-mix(in srgb, var(--signal) 20%, transparent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--signal) 22%, transparent);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu.open .menu-suivi { animation: none; border-color: var(--signal); }
}

/* Bouton bascule thème clair / sombre */
.theme-toggle { flex: none; width: 44px; height: 44px; padding: 0; display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 11px; color: var(--ink); cursor: pointer; }
.theme-toggle:hover { border-color: var(--ink-soft); }
.theme-toggle svg { width: 20px; height: 20px; display: block; }
/* Par défaut (suit l'OS) : thème clair → on propose la lune */
.theme-toggle .sun-i { display: none; }
.theme-toggle .moon-i { display: block; }
@media (prefers-color-scheme: dark) { .theme-toggle .sun-i { display: block; } .theme-toggle .moon-i { display: none; } }
:root[data-theme="light"] .theme-toggle .sun-i { display: none; }
:root[data-theme="light"] .theme-toggle .moon-i { display: block; }
:root[data-theme="dark"] .theme-toggle .sun-i { display: block; }
:root[data-theme="dark"] .theme-toggle .moon-i { display: none; }

/* ---------- Hero (centré, aéré) ---------- */
.hero { position: relative; padding: 84px 0 68px; overflow: hidden; }
.hero > .wrap { position: relative; z-index: 2; }
/* Aurores vertes en mouvement : deux halos flous qui dérivent et respirent.
   Animation transform/opacity uniquement (fluide, peu gourmande). */
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  border-radius: 50%; filter: blur(64px); will-change: transform, opacity;
}
.hero::before {
  width: 760px; height: 520px; left: 50%; top: -70px; margin-left: -620px;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--signal) 78%, transparent), transparent 74%);
  opacity: .72; animation: pcf-aurora-a 19s ease-in-out infinite alternate;
}
.hero::after {
  width: 720px; height: 520px; left: 50%; top: -10px; margin-left: -100px;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--signal-ink) 68%, transparent), transparent 74%);
  opacity: .64; animation: pcf-aurora-b 25s ease-in-out infinite alternate;
}
:root[data-theme="dark"] .hero::before { opacity: .6; }
:root[data-theme="dark"] .hero::after  { opacity: .52; }
@keyframes pcf-aurora-a {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(90px, 34px) scale(1.18); }
  100% { transform: translate(34px, -22px) scale(1.06); }
}
@keyframes pcf-aurora-b {
  0%   { transform: translate(0, 0) scale(1.06); }
  50%  { transform: translate(-80px, 22px) scale(1.22); }
  100% { transform: translate(-24px, 44px) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; }
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.hero-grid > div { max-width: none; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; }
.hero-grid > div > * { margin: 0; }
.hero .eyebrow { justify-content: center; }
.hero h1 { font-size: clamp(1.85rem, 4vw, 2.75rem); }
.hero h1 span { color: var(--signal); }
.hero .lede { color: var(--ink-soft); font-size: 1.16rem; max-width: 56ch; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
.hero-actions .sub { font-size: .9rem; color: var(--ink-faint); }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
.hero-trust .t { display: flex; flex-direction: column; }
.hero-trust .n { font-family: var(--display); font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; }
.hero-trust .k { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }

/* Diagnostic card */
.diag {
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 22px; position: relative; overflow: hidden;
}
.diag::before { content:""; position:absolute; inset:0; background:
  radial-gradient(120% 90% at 100% 0%, color-mix(in srgb,var(--signal) 9%, transparent), transparent 55%); pointer-events:none; }
.diag-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.diag-head .ttl { font-family: var(--mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.diag-head .live { font-family: var(--mono); font-size: .7rem; color: var(--ok); }
.diag-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; border-top: 1px dashed var(--line); font-size: .92rem; }
.diag-row:first-of-type { border-top: none; }
.diag-row .name { color: var(--ink-soft); display: flex; align-items: center; gap: 9px; }
.diag-row .ic { width: 20px; height: 20px; color: var(--signal); flex: none; }
.tag-ok { font-family: var(--mono); font-size: .7rem; color: var(--ok); background: var(--ok-wash); padding: 3px 9px; border-radius: 6px; }
.diag-foot { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 10px; font-size: .86rem; color: var(--ink-soft); }

/* ---------- Section frame ---------- */
section.blk { padding: 72px 0; }
.sec-head { max-width: 62ch; margin-bottom: 40px; }
.sec-head p { color: var(--ink-soft); font-size: 1.06rem; margin-top: 14px; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 820px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.svc:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.svc .ic { width: 30px; height: 30px; color: var(--signal); }
.svc .no { font-family: var(--mono); font-size: .68rem; color: var(--ink-faint); letter-spacing: .1em; float: right; }
.svc h3 { margin: 16px 0 8px; }
.svc p { color: var(--ink-soft); font-size: .94rem; }

/* ---------- Process ---------- */
.proc { background: var(--surface-2); border-radius: 22px; padding: 48px; border: 1px solid var(--line); }
@media (max-width: 620px){ .proc { padding: 30px 22px; } }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 34px; }
@media (max-width: 720px){ .steps { grid-template-columns: 1fr; gap: 14px; } }
.step { position: relative; }
.step .num { font-family: var(--mono); font-weight: 700; font-size: .78rem; color: var(--signal); border: 1px solid color-mix(in srgb,var(--signal) 35%, transparent); width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; margin-bottom: 16px; }
.step h3 { margin-bottom: 7px; }
.step p { color: var(--ink-soft); font-size: .94rem; }

/* ---------- Reviews (carrousel) ---------- */
.rev-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
/* Pastilles de confiance : Google + Pages Jaunes */
.rev-proof { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.proof {
  display: inline-flex; align-items: center; gap: 12px; text-decoration: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 18px 9px 12px; color: var(--ink);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
a.proof:hover { border-color: var(--signal); transform: translateY(-1px); box-shadow: var(--shadow); }
.proof .brand-logo { width: 26px; height: 26px; flex: none; display: block; }
.proof-body { display: flex; flex-direction: column; line-height: 1.25; }
.proof-top { display: flex; align-items: center; gap: 8px; }
.proof-top b { font-size: 1.06rem; font-weight: 800; letter-spacing: -.01em; }
.proof-top .stars { font-size: .82rem; letter-spacing: 1px; }
.proof-meta { font-size: .76rem; color: var(--ink-faint); font-weight: 500; }
@media (max-width: 460px) { .rev-proof { width: 100%; } .proof { flex: 1 1 100%; } }
.rev-nav { display: flex; gap: 8px; flex: none; }
.rev-arrow {
  width: 44px; height: 44px; display: grid; place-items: center; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: 50%; color: var(--ink);
  transition: border-color .15s, background .15s, opacity .15s;
}
.rev-arrow svg { width: 20px; height: 20px; }
.rev-arrow:hover:not(:disabled) { border-color: var(--signal); background: var(--signal-wash); color: var(--signal-ink); }
.rev-arrow:disabled { opacity: .35; cursor: default; }
@media (max-width: 700px) { .rev-nav { display: none; } }

.rev-carousel { position: relative; margin-top: 8px; }
.rev-track {
  display: flex; gap: 16px; margin: 0; padding: 4px 0 6px; list-style: none;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
}
.rev-track::-webkit-scrollbar { display: none; }
.rev-track:focus-visible { outline: 3px solid var(--signal); outline-offset: 4px; border-radius: var(--radius); }

.rev {
  flex: 0 0 calc((100% - 32px) / 3); scroll-snap-align: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; gap: 12px;
}
@media (max-width: 980px) { .rev { flex-basis: calc((100% - 16px) / 2); } }
@media (max-width: 700px)  { .rev { flex-basis: 88%; } }

.stars { color: #f5a623; letter-spacing: 2px; font-size: .95rem; }
.rev p { font-size: .96rem; color: var(--ink); }
.rev .who { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.av { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; font-size: .9rem; flex: none; }
.rev .who .m { font-size: .88rem; min-width: 0; } .rev .who .m b { display: block; } .rev .who .m span { color: var(--ink-faint); font-size: .8rem; }
.rev .who .src { margin-left: auto; flex: none; display: grid; place-items: center; }
.rev .who .src svg { width: 17px; height: 17px; display: block; }

.rev-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.rev-dots button {
  width: 8px; height: 8px; padding: 0; border-radius: 50%; cursor: pointer;
  border: none; background: var(--line-strong); transition: background .2s, width .2s;
}
.rev-dots button[aria-current="true"] { background: var(--signal); width: 24px; border-radius: 100px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
@media (max-width: 880px){ .about-grid { grid-template-columns: 1fr; gap: 30px; } }
.about-lede { color: var(--ink-soft); font-size: 1.1rem; margin-top: 18px; max-width: 48ch; }
/* Logo (wordmark) inséré dans le titre « À propos » — hérite de la taille du h2. */
.pcf-brand-inline { font-family: var(--display); font-weight: 800; letter-spacing: -.01em; white-space: nowrap; }
.pcf-brand-inline b { color: var(--signal); font-weight: 800; }
.obj-col .eyebrow { margin-top: 0; }
.obj { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; display: flex; gap: 15px; align-items: flex-start; box-shadow: var(--shadow); }
.obj + .obj { margin-top: 14px; }
.obj .ic { width: 24px; height: 24px; color: var(--signal); flex: none; margin-top: 2px; }
.obj h3 { margin-bottom: 6px; }
.obj p { color: var(--ink-soft); font-size: .94rem; }

/* ---------- CTA band ---------- */
/* Fixed dark band — never driven by --ink, so it stays dark (and legible) in BOTH themes */
.cta-band { background: #0e1728; border: 1px solid #26324a; border-radius: 24px; padding: 52px; color: #fff; position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); gap: 44px; align-items: center; }
.cta-band::after { content:""; position:absolute; right:-80px; top:-80px; width:340px; height:340px; border-radius:50%;
  background: radial-gradient(circle, color-mix(in srgb,var(--signal) 55%, transparent), transparent 62%); }
.cta-copy { position: relative; z-index: 1; min-width: 0; }
.cta-band .eyebrow { color: rgba(255,255,255,.65); }
.cta-band .eyebrow::before { background: var(--signal); }
.cta-band h2 { color: #fff; position: relative; text-wrap: balance; }
.cta-band .cta-line2 { display: block; }
.cta-band p { color: rgba(255,255,255,.78); margin: 14px 0 26px; position: relative; max-width: 46ch; }
.cta-band .row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; position: relative; }
.cta-band .mono { font-family: var(--mono); font-size: .8rem; color: rgba(255,255,255,.62); }

/* Illustration : cadre clair sur le bandeau sombre, adouci en mode nuit */
.cta-visual { position: relative; z-index: 1; margin: 0; min-width: 0; }
.cta-visual img {
  display: block; width: 100%; height: auto; border-radius: 16px;
  border: 1px solid var(--cta-img-frame); background: #fff;
  box-shadow: 0 24px 50px -28px rgba(0,0,0,.75);
  filter: brightness(var(--cta-img-bright));
}

@media (max-width: 960px) {
  .cta-band { grid-template-columns: 1fr; gap: 34px; padding: 44px; }
  .cta-band p { max-width: none; }
  .cta-visual { max-width: 620px; }
}
@media (max-width: 620px) {
  .cta-band { padding: 34px 24px; gap: 28px; }
  .cta-visual img { border-radius: 12px; }
}

/* ---------- Footer ---------- */
footer.ft {
  border-top: 1px solid var(--line); background: var(--surface-2);
  padding: clamp(44px, 5vw, 72px) 0 26px; color: var(--ink-soft); font-size: .9rem;
}

.ft-top {
  display: grid; gap: clamp(28px, 3vw, 48px);
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  padding-bottom: 36px;
}
@media (max-width: 1000px) { .ft-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px)  { .ft-top { grid-template-columns: 1fr; gap: 32px; } }

.ft-col { min-width: 0; }
.mk .ft-h {
  font-family: var(--body); font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint);
  margin: 0 0 16px;
}
.mk .ft-h-sub { margin-top: 26px; }

/* Colonne marque — meme pastille encadree que dans l'en-tete */
.ft-brand .logo {
  display: inline-flex; /* la colonne est un bloc : la pastille doit se dimensionner sur son texte */
  margin-bottom: 16px;
  font-size: clamp(1.15rem, 1.35vw, 1.38rem);
  height: 44px; padding: 0 16px; line-height: 1; align-items: center;
  border: 1px solid var(--line-strong); border-radius: 11px; background: var(--surface);
  transition: border-color .15s;
}
.ft-brand .logo:hover { border-color: var(--signal); }
.ft-desc { color: var(--ink-soft); font-size: .88rem; line-height: 1.7; max-width: 34ch; }
.ft-proof { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.ft-badge {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: 100px;
  padding: 6px 13px 6px 8px; color: var(--ink-soft); font-size: .78rem;
  transition: border-color .15s, transform .15s;
}
.ft-badge:hover { border-color: var(--signal); transform: translateY(-1px); }
.ft-badge .brand-logo { width: 18px; height: 18px; flex: none; display: block; }
.ft-badge b { color: var(--ink); font-weight: 700; }

/* Listes de liens */
.ft-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.ft-list a { color: var(--ink-soft); text-decoration: none; font-size: .88rem; line-height: 1.4; transition: color .15s; }
.ft-list a:hover { color: var(--signal-ink); }
/* Pastille « Suivi de votre réparation » du footer : copie exacte de celle du
   header (.nav-suivi + clignotement .ft-suivi), mais visible à toutes les tailles. */

/* Colonne contact */
.ft-line {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px;
  color: var(--ink-soft); text-decoration: none; font-size: .88rem; line-height: 1.5;
  transition: color .15s;
}
.ft-line:hover { color: var(--signal-ink); }
.ft-line svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--signal); }

/* Horaires */
.ft-hours { margin: 0; display: flex; flex-direction: column; gap: 4px; }
.ft-hours > div {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 4px 8px; border-radius: 7px; font-size: .82rem;
}
.ft-hours dt { color: var(--ink-faint); margin: 0; }
.ft-hours dd { margin: 0; font-family: var(--mono); font-size: .78rem; color: var(--ink-soft); white-space: nowrap; }
.ft-hours .is-today { background: var(--signal-wash); }
.ft-hours .is-today dt { color: var(--signal-ink); font-weight: 700; }
.ft-hours .is-today dd { color: var(--signal-ink); font-weight: 600; }

/* Bandeau zone d'intervention */
.ft-zone {
  border-top: 1px solid var(--line); padding: 20px 0;
  font-size: .76rem; color: var(--ink-faint); line-height: 1.8;
}
.ft-zone span { color: var(--ink-soft); font-weight: 600; margin-right: 6px; }

/* Barre basse */
.ft-bottom {
  border-top: 1px solid var(--line); padding-top: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .8rem; color: var(--ink-faint);
}
.ft-toplink { color: var(--ink-faint); text-decoration: none; font-weight: 600; }
.ft-toplink:hover { color: var(--signal-ink); }
@media (max-width: 560px) { .ft-bottom { justify-content: center; text-align: center; } }

/* ---------- Mobile sticky call bar ---------- */
.mobicall { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; display: none; }
.mobicall a { width: 100%; justify-content: center; box-shadow: var(--shadow-lg); }
@media (max-width: 560px) { .mobicall { display: flex; } .mk { padding-bottom: 78px; } }

/* Sur mobile, la barre d'appel fixe occupe déjà le bas de l'écran : on remonte
   la bulle du chatbot (et son panneau) juste au-dessus pour éviter qu'elles se
   chevauchent. Le bouton « haut de page » se cale, lui, au-dessus de la bulle. */
@media (max-width: 560px) {
  #pcf-chatbot-root { bottom: 90px !important; right: 12px !important; }
  .pcf-cb-panel {
    right: 0 !important;
    bottom: 68px !important;
    width: calc(100vw - 24px) !important;
    height: calc(100vh - 174px) !important;
    max-height: none !important;
  }
}

/* ---------- Pages internes (compactes) ---------- */
.page-section { padding: 54px 0 76px; }
.wrap-narrow { max-width: 720px; }
.mk .page-title { font-family: var(--display); font-weight: 800; font-size: clamp(1.9rem, 4vw, 2.5rem); letter-spacing: -.02em; line-height: 1.1; margin: 0 0 24px; }
.page-content { color: var(--ink-soft); line-height: 1.7; }
.page-content a { color: var(--signal); }

/* ---------- Suivi des réparations ---------- */
.suivi { max-width: 680px; }
.suivi-intro-head { margin-bottom: 28px; }
.suivi-intro-head .eyebrow { margin-bottom: 12px; }
.suivi-title { font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem, 3.4vw, 2.15rem); letter-spacing: -.02em; line-height: 1.12; margin: 0 0 12px; }
.suivi-lead { color: var(--ink-soft); max-width: 54ch; }
.suivi-form { margin-bottom: 30px; }
.suivi-fields { display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; }
.suivi-fields label { display: flex; flex-direction: column; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--ink-soft); flex: 1 1 200px; }
.suivi-fields input { font: inherit; padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--surface); color: var(--ink); }
.suivi-fields input::placeholder { color: var(--ink-faint); }
.suivi-fields input:focus { outline: none; border-color: var(--signal); box-shadow: 0 0 0 3px color-mix(in srgb, var(--signal) 22%, transparent); }
.suivi-fields .btn { flex: 0 0 auto; }
.suivi-msg { padding: 18px 20px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-soft); font-size: .95rem; }
.suivi-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.suivi-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.suivi-ref { font-family: var(--display); font-weight: 800; font-size: 1.18rem; display: block; letter-spacing: -.01em; }
.suivi-device { color: var(--ink-faint); font-size: .9rem; }
.suivi-badge { font-family: var(--mono); font-size: .74rem; color: #06230d; background: var(--signal); padding: 6px 12px; border-radius: 100px; white-space: nowrap; }
.suivi-timeline { list-style: none; margin: 0; padding: 0; }
.suivi-step { display: flex; align-items: center; gap: 14px; padding: 11px 0; position: relative; }
.suivi-step::before { content: ""; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.suivi-step:first-child::before { top: 50%; }
.suivi-step:last-child::before { bottom: 50%; }
.suivi-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--line-strong); background: var(--surface); flex: none; position: relative; z-index: 1; }
.suivi-label { font-size: .98rem; color: var(--ink-soft); }
.suivi-step--done .suivi-dot { background: var(--signal); border-color: var(--signal); }
.suivi-step--done .suivi-label { color: var(--ink); }
.suivi-step--current .suivi-dot { background: var(--signal); border-color: var(--signal); box-shadow: 0 0 0 4px color-mix(in srgb, var(--signal) 26%, transparent); }
.suivi-step--current .suivi-label { color: var(--ink); font-weight: 700; }
.suivi-note { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .95rem; }
.suivi-updated { margin-top: 12px; font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; color: var(--ink-faint); }

/* ---------- Bouton « remonter en haut » ---------- */
.to-top { position: fixed; right: 90px; bottom: 24px; z-index: 55; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; background: var(--surface); color: var(--ink); border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--signal); color: var(--signal); }
.to-top svg { width: 20px; height: 20px; }
/* Mobile : la flèche « haut de page » se place À CÔTÉ (à gauche) de la bulle du
   chatbot, à la même hauteur, au-dessus de la barre d'appel — donc bien visible. */
@media (max-width: 560px) { .to-top { bottom: 96px; right: 80px; } }
@media (prefers-reduced-motion: reduce) { .to-top { transition: none; } }

/* reveal */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } .dot { animation: none; } .btn-call:hover{ transform:none; } }

/* =========================================================================
 * Dynamisation — animations d'ambiance & micro-interactions (sections basses)
 * ====================================================================== */

/* Bandeau CTA : la lueur existante dérive lentement + une 2ᵉ lueur en contrepoint. */
.cta-band::after { animation: pcf-glow-a 16s ease-in-out infinite alternate; }
.cta-band::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: -90px; bottom: -90px; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--ok) 48%, transparent), transparent 62%);
  animation: pcf-glow-b 22s ease-in-out infinite alternate;
}
@keyframes pcf-glow-a { from { transform: translate(0,0) scale(1); } to { transform: translate(-48px,42px) scale(1.2); } }
@keyframes pcf-glow-b { from { transform: translate(0,0) scale(1.05); } to { transform: translate(42px,-36px) scale(1.26); } }

/* Cartes : relief vert + icône vivante au survol (services & objectifs). */
.svc .ic { transition: transform .25s ease; }
.svc:hover {
  border-color: color-mix(in srgb, var(--signal) 42%, transparent);
  box-shadow: 0 16px 36px -20px color-mix(in srgb, var(--signal) 60%, transparent), var(--shadow);
}
.svc:hover .ic { transform: scale(1.14) rotate(-4deg); }
.obj { transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.obj .ic { transition: transform .25s ease; }
.obj:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--signal) 38%, transparent);
  box-shadow: 0 14px 30px -20px color-mix(in srgb, var(--signal) 50%, transparent), var(--shadow);
}
.obj:hover .ic { transform: scale(1.12); }

/* Entrées en cascade des grilles basses (motion-safe : rien n'est masqué si
   « prefers-reduced-motion » — le contenu reste visible sans dépendre du JS). */
@media (prefers-reduced-motion: no-preference) {
  .proc .steps .step, .obj-col .obj {
    opacity: 0; transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .proc.in .steps .step, .obj-col.in .obj { opacity: 1; transform: none; }
  .proc.in .steps .step:nth-child(2) { transition-delay: .12s; }
  .proc.in .steps .step:nth-child(3) { transition-delay: .24s; }
  .obj-col.in .obj:nth-of-type(2) { transition-delay: .1s; }
  .obj-col.in .obj:nth-of-type(3) { transition-delay: .2s; }
  .obj-col.in .obj:nth-of-type(4) { transition-delay: .3s; }
}
@media (prefers-reduced-motion: reduce) {
  .cta-band::before, .cta-band::after { animation: none; }
}

/* Aurores vertes d'ambiance derrière « À propos de PC en forme » (comme le header). */
#apropos { position: relative; } /* pas d'overflow:hidden → la lueur se fond avec la section voisine (rendu unifié). */
#apropos > .wrap { position: relative; z-index: 1; }
#apropos::before, #apropos::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  border-radius: 50%; filter: blur(72px); will-change: transform;
}
#apropos::before {
  width: 620px; height: 460px; left: 4%; top: 16%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--signal) 58%, transparent), transparent 74%);
  opacity: .42; animation: pcf-aurora-a 21s ease-in-out infinite alternate;
}
#apropos::after {
  width: 560px; height: 460px; left: auto; right: -8%; bottom: -16%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--signal-ink) 54%, transparent), transparent 74%);
  opacity: .32; animation: pcf-aurora-b 27s ease-in-out infinite alternate;
}
:root[data-theme="dark"] #apropos::before { opacity: .3; }
:root[data-theme="dark"] #apropos::after  { opacity: .24; }

/* Halo vert sur « Avis clients », aligné (même colonne) sous celui d'« À propos ». */
#avis { position: relative; } /* idem : lueur continue, sans trait de coupe au bord de section. */
#avis > .wrap { position: relative; z-index: 1; }
#avis::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  border-radius: 50%; filter: blur(72px); will-change: transform;
  width: 620px; height: 460px; left: 4%; top: -22%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--signal) 58%, transparent), transparent 74%);
  opacity: .42; animation: pcf-aurora-a 23s ease-in-out infinite alternate;
}
:root[data-theme="dark"] #avis::before { opacity: .3; }

/* -------------------------------------------------------------------------
 * Formulaire de contact (bas de page)
 * ---------------------------------------------------------------------- */
.contact-sec { border-top: 1px solid var(--line); background: var(--surface-2); scroll-margin-top: 90px; }
.mk .contact-title { font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -.02em; margin: 12px 0 10px; }
.contact-sub { color: var(--ink-soft); max-width: 62ch; margin-bottom: 26px; }
.contact-urgent { display: block; margin-top: 6px; }
.contact-urgent a { white-space: nowrap; }
.contact-sub a { color: var(--signal-ink); font-weight: 600; text-decoration: none; }
.contact-sub a:hover { text-decoration: underline; }

.contact-alert { padding: 13px 16px; border-radius: 12px; margin-bottom: 22px; font-size: .93rem; font-weight: 500; border: 1px solid; }
.contact-alert.is-ok  { background: var(--signal-wash); border-color: var(--signal); color: var(--signal-ink); }
.contact-alert.is-err { background: color-mix(in srgb, #e11d48 10%, transparent); border-color: #e11d48; color: #e11d48; }

.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: clamp(20px, 3vw, 32px); }
.pcf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-full { grid-column: 1 / -1; }
@media (max-width: 700px) { .cf-grid { grid-template-columns: 1fr; } }

.cf-field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.cf-field > span { font-size: .82rem; font-weight: 600; color: var(--ink-soft); letter-spacing: .01em; }
.cf-field > span b { color: var(--signal-ink); }
.cf-field input, .cf-field select, .cf-field textarea {
  width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 12px 14px; transition: border-color .15s, box-shadow .15s;
}
.cf-field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: var(--ink-faint); }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  outline: none; border-color: var(--signal);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--signal) 20%, transparent);
}

.cf-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 22px; }
.cf-submit { border: none; cursor: pointer; font: inherit; font-weight: 700; }
.cf-note { font-size: .8rem; color: var(--ink-faint); }

/* -------------------------------------------------------------------------
 * Zone d'intervention (référencement local)
 * ---------------------------------------------------------------------- */
.zone-list { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.zone-list li {
  font-size: .82rem; color: var(--ink-soft); background: var(--surface);
  border: 1px solid var(--line); border-radius: 100px; padding: 6px 14px;
}

/* -------------------------------------------------------------------------
 * FAQ
 * ---------------------------------------------------------------------- */
.faq { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0 20px; transition: border-color .15s;
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 11px; height: 11px; border-right: 2px solid var(--signal);
  border-bottom: 2px solid var(--signal); transform: rotate(45deg) translateY(-2px); transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(225deg) translateY(-2px); }
.faq summary:hover { color: var(--signal-ink); }
.faq-a { padding: 0 0 20px; color: var(--ink-soft); font-size: .95rem; line-height: 1.7; max-width: 68ch; }

/* -------------------------------------------------------------------------
 * Page « Suivi de votre réparation »
 * ---------------------------------------------------------------------- */
.suivi-hero {
  padding: clamp(48px, 7vw, 88px) 0 clamp(36px, 5vw, 60px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(90% 120% at 12% 0%, color-mix(in srgb, var(--signal) 10%, transparent), transparent 60%),
    var(--surface-2);
}
.mk .suivi-h1 {
  font-family: var(--display); font-weight: 800; letter-spacing: -.025em; line-height: 1.06;
  font-size: clamp(1.9rem, 4.2vw, 3rem); margin: 0 0 16px; color: var(--ink);
}
.suivi-lede { max-width: 60ch; color: var(--ink-soft); font-size: clamp(.98rem, 1.2vw, 1.08rem); }

.suivi-body { padding: clamp(36px, 5vw, 64px) 0 clamp(56px, 7vw, 90px); }
.suivi-body .wrap { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: clamp(20px, 2.6vw, 36px); align-items: start; }
@media (max-width: 900px) { .suivi-body .wrap { grid-template-columns: 1fr; } }

.suivi-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px;
  padding: clamp(22px, 3vw, 40px); box-shadow: var(--shadow);
}
/* Le titre du bandeau remplace celui du shortcode */
.suivi-card .pcf-suivi-header { display: none; }
.suivi-card .pcf-suivi { max-width: none; margin: 0; padding: 0; }

.suivi-aside { display: flex; flex-direction: column; gap: 16px; }
.suivi-aside h2 { font-size: 1.02rem; font-weight: 700; letter-spacing: -.01em; margin: 0 0 6px; color: var(--ink); }
.suivi-aside p { color: var(--ink-soft); font-size: .9rem; line-height: 1.65; }
.suivi-aside code {
  font-family: var(--mono); font-size: .84em; background: var(--signal-wash);
  color: var(--signal-ink); padding: 1px 6px; border-radius: 5px;
}

.suivi-note, .suivi-steps, .suivi-help {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
}
.suivi-note { display: flex; gap: 14px; align-items: flex-start; }
.suivi-ic { flex: none; width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: var(--signal-wash); color: var(--signal-ink); }
.suivi-ic svg { width: 20px; height: 20px; }

.suivi-steps ol { list-style: none; counter-reset: s; margin: 14px 0 0; padding: 0; }
.suivi-steps li { counter-increment: s; position: relative; padding: 0 0 18px 38px; }
.suivi-steps li:last-child { padding-bottom: 0; }
.suivi-steps li::before {
  content: counter(s); position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--mono); font-size: .72rem; font-weight: 700;
  color: var(--signal-ink); background: var(--signal-wash);
  border: 1px solid color-mix(in srgb, var(--signal) 35%, transparent);
}
/* filet vertical reliant les étapes */
.suivi-steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 11.5px; top: 28px; bottom: 6px; width: 1px; background: var(--line);
}
.suivi-steps li b { display: block; font-size: .92rem; font-weight: 700; color: var(--ink); line-height: 1.5; }
.suivi-steps li span { display: block; font-size: .83rem; color: var(--ink-faint); line-height: 1.55; }

.suivi-help { text-align: center; }
.suivi-help .btn-call { margin-top: 14px; width: 100%; justify-content: center; }
.mk .suivi-card-title { font-size: 1.18rem; font-weight: 700; letter-spacing: -.01em; margin: 0 0 6px; color: var(--ink); }
.suivi-card-hint { color: var(--ink-faint); font-size: .86rem; margin: 0 0 22px; }
.suivi-card-hint code { font-family: var(--mono); font-size: .92em; background: var(--surface-2); color: var(--ink-soft); padding: 1px 6px; border-radius: 5px; }

/* Liens légaux dans la barre basse */
.ft-legal { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.ft-legal a { color: var(--ink-faint); text-decoration: none; font-weight: 600; transition: color .15s; }
.ft-legal a:hover { color: var(--signal-ink); }

/* -------------------------------------------------------------------------
 * Pages légales (mentions, confidentialité)
 * ---------------------------------------------------------------------- */
.legal-maj {
  display: inline-block; font-family: var(--mono); font-size: .74rem;
  color: var(--ink-faint); background: var(--surface-2); border: 1px solid var(--line);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 8px;
}
.page-content h2 {
  font-size: 1.28rem; font-weight: 700; letter-spacing: -.01em;
  margin: 44px 0 14px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--ink);
}
.page-content h2:first-of-type { border-top: none; padding-top: 0; margin-top: 30px; }
.page-content h3 { font-size: 1rem; font-weight: 700; margin: 26px 0 10px; color: var(--ink); }
.page-content p { margin: 0 0 14px; color: var(--ink-soft); line-height: 1.75; }
.page-content strong { color: var(--ink); font-weight: 600; }
.page-content ul { margin: 0 0 18px; padding-left: 0; list-style: none; }
.page-content ul li {
  position: relative; padding-left: 20px; margin-bottom: 9px;
  color: var(--ink-soft); line-height: 1.7;
}
.page-content ul li::before {
  content: ""; position: absolute; left: 3px; top: .68em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--signal);
}
.page-content a { color: var(--signal-ink); text-decoration: underline; text-underline-offset: 2px; }
.page-content a:hover { text-decoration: none; }

/* Horaires dans la carte d'aide de la page de suivi */
.mk .suivi-hours-title {
  margin: 22px 0 10px; padding-top: 16px; border-top: 1px solid var(--line);
  font-family: var(--body); font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint);
}
.suivi-help .ft-hours { text-align: left; }
