/* =================================================================
   ALI BEKOUR — Système de design éditorial premium (v2)
   Deux chartes : Ali Bekour (clair éditorial) + ZeMethod (.zemethod)
   Fraunces (display) + Lato (texte) — Google Fonts
   Conforme Web Interface Guidelines (focus-visible, reduced-motion,
   touch-action, aspect-ratio anti-CLS, text-wrap, tabular-nums)
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&display=swap');

/* ---------- Tokens ---------- */
:root {
  --bg: #FFFFFF;            /* blanc pur (choix Ali, override du Doc 4) */
  --paper: #F6F6F6;         /* panneau alterné très léger */
  --ink: #0B0B0B;           /* noir profond */
  --ink-2: #2A2826;         /* texte secondaire chaud */
  --ink-3: #6B6661;         /* texte tertiaire / méta */
  --red: #CE323A;           /* accent */
  --white: #FFFFFF;
  --line: #D9D6D0;          /* filets */
  --line-soft: #E7E4DE;
  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* échelle d'espacement */
  --s1: .5rem; --s2: 1rem; --s3: 1.5rem; --s4: 2.5rem;
  --s5: 4rem; --s6: 6rem; --s7: 9rem;
  --gap: clamp(2.75rem, 5.5vw, 5rem); /* rythme vertical des sections (resserré) */
  --maxw: 1240px;
  --measure: 72ch;                    /* longueur de lecture confortable */
  --ease: cubic-bezier(.2,.6,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;           /* ancres sous le header sticky */
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: #fff; }

/* focus visible cohérent (a11y) */
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }
:focus:not(:focus-visible) { outline: none; }

/* ---------- Typographie ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.06;
  letter-spacing: -0.018em;
  text-wrap: balance;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.7rem, 6.2vw, 5.2rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 4.2vw, 3.3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.2; letter-spacing: -0.01em; }
p { margin: 0 0 1.15em; max-width: var(--measure); }
.lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  max-width: 50ch;
}
.section .lead.wide, .lead.wide { max-width: 64ch; }
strong { font-weight: 700; color: var(--ink); }
em { font-style: italic; }
small, .meta { font-size: .85rem; }

/* ---------- Layout ---------- */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3.5rem); }
.section { padding-block: var(--gap); }
.section--tight { padding-block: calc(var(--gap) * .55); }
.narrow { max-width: 840px; }
.narrow p, .narrow .lead { max-width: none; }
/* Quand .narrow est aussi le conteneur : garder le conteneur centré (1240) comme
   les sections blanches, mais limiter et caler le texte à gauche (alignement cohérent). */
.container.narrow { max-width: var(--maxw); }
.container.narrow > * { max-width: 880px; }
.container.narrow.center > * { margin-inline: auto; }
.center { text-align: center; }
.center p, .center .lead { margin-inline: auto; }
.stack > * + * { margin-top: 1.1em; }

/* filet éditorial */
.rule, .divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.kicker-rule { display: inline-block; width: 2.4rem; height: 2px; background: var(--red); vertical-align: middle; margin-right: .8rem; }

/* eyebrow / surtitre */
.eyebrow {
  display: flex; align-items: center;
  font-family: var(--sans);
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--ink-3);
  margin-bottom: 1.4rem;
}
.eyebrow::before { content: ""; width: 2.2rem; height: 1px; background: var(--red); margin-right: .9rem; flex: none; }

.accent { color: var(--red); }

/* index numéroté éditorial */
.index { font-family: var(--serif); font-size: .95rem; color: var(--red); letter-spacing: .04em; }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; letter-spacing: -0.01em; white-space: nowrap; }
.nav-links li { white-space: nowrap; }
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a:not(.btn) { font-size: .9rem; letter-spacing: .01em; color: var(--ink-2); position: relative; transition: color .2s var(--ease); }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1.5px; background: var(--red);
  transition: right .25s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after { right: 0; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--ink); padding: .3rem; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .12em;
  background: var(--ink); color: var(--white);
  padding: 1rem 1.7rem; border: 1px solid var(--ink); border-radius: 1px;
  cursor: pointer; touch-action: manipulation;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; margin-top: 2rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .92rem; letter-spacing: .01em; color: var(--ink);
  padding-bottom: 3px; background-image: linear-gradient(var(--red), var(--red));
  background-size: 0% 1.5px; background-repeat: no-repeat; background-position: 0 100%;
  transition: background-size .3s var(--ease), color .2s var(--ease);
}
.link-arrow:hover { color: var(--red); background-size: 100% 1.5px; }

/* ---------- Hero ---------- */
.hero {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
  padding-block: clamp(2.25rem, 4.5vw, 4rem);
}
.hero__content h1 { margin-bottom: .35em; }
.hero__media { position: relative; }
.hero__media img {
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 2px; filter: contrast(1.03) saturate(.96);
}
.hero__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(11,11,11,.08); border-radius: 2px;
}
.hero--solo { display: block; max-width: 18ch; }

/* Photo conférence : ignorer la balise EXIF erronée + cadrer sur le visage */
.conf-hero-img { image-orientation: none; object-position: center 18%; }
/* media plein cadre (sections internes) */
.figure img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 2px; filter: contrast(1.03) saturate(.96); }

/* ---------- Grilles ---------- */
.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.8rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.section-head { max-width: 820px; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

/* situations — liste éditoriale numérotée */
.situations { counter-reset: sit; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--line); }
.situation {
  counter-increment: sit; padding: 2.2rem 2.2rem 2.2rem 0;
  border-bottom: 1px solid var(--line);
}
.situations .situation:nth-child(odd) { padding-right: clamp(1.5rem, 4vw, 3.5rem); border-right: 1px solid var(--line); }
.situations .situation:nth-child(even) { padding-left: clamp(1.5rem, 4vw, 3.5rem); }
.situation::before {
  content: counter(sit, decimal-leading-zero);
  display: block; font-family: var(--serif); color: var(--red);
  font-size: 1rem; margin-bottom: .9rem; letter-spacing: .05em;
}
.situation h3 { margin-bottom: .5rem; }
.situation p { margin: 0; color: var(--ink-2); }

/* cartes offres */
.cards { counter-reset: card; }
.card {
  position: relative; counter-increment: card;
  background: var(--white); border: 1px solid var(--line); border-radius: 2px;
  padding: 2.4rem 2rem; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card::before {
  content: counter(card, decimal-leading-zero);
  font-family: var(--serif); font-size: .9rem; color: var(--ink-3); letter-spacing: .05em;
  margin-bottom: 1.4rem;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -32px rgba(11,11,11,.4); border-color: var(--ink); }
.card__meta { display: block; font-size: .76rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-3); margin-bottom: .7rem; }
.card h3 { margin-bottom: .6rem; }
.card p { flex: 1; color: var(--ink-2); margin-bottom: 1.4rem; }
.card--feature { border-color: var(--ink); box-shadow: 0 20px 50px -34px rgba(11,11,11,.45); }
.card--feature::after { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--red); }
.card__flag { position: absolute; top: 2.2rem; right: 1.6rem; font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; color: #fff; background: var(--red); padding: .4rem .7rem; border-radius: 2px; line-height: 1; }

/* ---------- Inversion sombre ---------- */
.section--dark { background: var(--ink); color: rgba(255,255,255,.82); position: relative; }
.section--dark::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--red); opacity: .9; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .lead { color: rgba(255,255,255,.7); }
.section--dark strong { color: #fff; }
.section--dark .eyebrow { color: rgba(255,255,255,.55); }
.section--dark .btn { background: #fff; color: var(--ink); border-color: #fff; }
.section--dark .btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.section--dark .link-arrow { color: #fff; background-image: linear-gradient(var(--red), var(--red)); }
.section--dark .ticks li::before { color: var(--red); }
.section--dark .grid-3 h3 { color: #fff; }
.section--dark .grid-3 p { color: rgba(255,255,255,.7); }
.section--dark .situation, .section--dark .situations { border-color: rgba(255,255,255,.16); }
.section--dark .situation p { color: rgba(255,255,255,.7); }

/* ---------- Citations / cas ---------- */
.quote {
  position: relative; background: transparent; border: 0;
  border-left: 2px solid var(--red);
  padding: .2rem 0 .2rem clamp(1.6rem, 3vw, 2.8rem);
  margin: 2.25rem 0; max-width: 880px;
}
.quote p { font-family: var(--serif); font-size: clamp(1.15rem, 1.7vw, 1.4rem); line-height: 1.55; color: var(--ink); max-width: 62ch; }
.quote p:last-of-type { margin-bottom: 0; }
.quote cite { display: block; font-style: normal; font-family: var(--sans); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); margin-top: 1.8rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.case { border-top: 1px solid var(--line); padding-top: 2.2rem; margin-top: 2.2rem; max-width: 760px; }
.case h3 { margin-bottom: 1rem; }
.case p { color: var(--ink-2); }
.case__label { font-weight: 700; color: var(--ink); }
.case cite { display: block; font-style: normal; font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); margin-top: 1rem; }

/* process numéroté */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; }
.steps li { position: relative; padding: 0 0 2.2rem 4.2rem; }
.steps li:last-child { padding-bottom: 0; }
.steps li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -.1rem;
  font-family: var(--serif); font-size: 1.3rem; color: var(--red);
}
.steps li::after { content: ""; position: absolute; left: 1.4rem; top: 2rem; bottom: .4rem; width: 1px; background: var(--line); }
.steps li:last-child::after { display: none; }
.steps h3 { font-size: 1.2rem; margin-bottom: .3rem; }
.steps p { color: var(--ink-2); margin: 0; }

/* listes simples */
.ticks { list-style: none; padding: 0; margin: 0; max-width: var(--measure); }
.ticks li { padding-left: 1.8rem; position: relative; margin-bottom: 1rem; color: var(--ink-2); }
.ticks li::before { content: ""; position: absolute; left: 0; top: .65em; width: .7rem; height: 1px; background: var(--red); }

/* FAQ */
.faq details { border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
.faq summary { font-family: var(--serif); font-size: clamp(1.15rem,1.6vw,1.35rem); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: baseline; gap: 2rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sans); font-size: 1.5rem; color: var(--red); transition: transform .25s var(--ease); flex: none; line-height: 1; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 1.1rem; color: var(--ink-2); }
/* FAQ en deux colonnes : titre à gauche, questions à droite (remplit l'espace) */
.faq-section { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.6fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.faq-section > h2 { margin-bottom: 0; }
.faq-section .faq { max-width: none; margin-top: 0 !important; }
@media (max-width: 860px) { .faq-section { grid-template-columns: 1fr; gap: 1.5rem; } }

/* signature */
.signature img { width: 200px; max-width: 60%; height: auto; margin: 1.8rem auto; }
.section--dark .signature img { filter: invert(1); }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.62); padding: clamp(3.5rem,7vw,5.5rem) 0 2.2rem; margin-top: var(--gap); }
.site-footer::before { content: none; }
.site-footer a { color: rgba(255,255,255,.62); transition: color .2s var(--ease); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-family: var(--serif); font-size: 1.5rem; color: #fff; margin-bottom: .8rem; }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; margin: 0 0 1.2rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .7rem; font-size: .92rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.6rem; font-size: .8rem; letter-spacing: .03em; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: rgba(255,255,255,.45); }

/* contenu légal */
.legal { max-width: 760px; }
.legal h1 { font-size: clamp(2.2rem,4vw,3rem); margin-bottom: 1.5rem; }
.legal h2 { margin-top: 2.8rem; font-size: 1.5rem; }
.legal h3 { margin-top: 2rem; font-size: 1.15rem; }
.legal p, .legal li { color: var(--ink-2); }

/* calendly */
.calendly-inline-widget { min-width: 320px; height: 720px; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; }
.calendly-fallback { border: 1px solid var(--line); border-radius: 2px; padding: clamp(2rem, 5vw, 3.5rem); text-align: center; }
.calendly-fallback p { max-width: none; margin: 0 auto 1.2rem; }
.calendly-fallback p:last-child { margin-bottom: 0; }
.calendly-fallback__alt { font-size: .95rem; color: var(--ink-3); }

/* Contact — deux entrées */
.choices { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.25rem, 3vw, 2rem); }
.choice { border: 1px solid var(--line); border-radius: 3px; padding: clamp(1.5rem, 3vw, 2.2rem); display: flex; flex-direction: column; }
.choice .eyebrow { margin-bottom: .9rem; }
.choice h3 { margin-bottom: .5rem; }
.choice p { flex: 1; color: var(--ink-2); margin-bottom: 1.4rem; }
@media (max-width: 760px) { .choices { grid-template-columns: 1fr; } }

/* Contact — formulaire */
.form { max-width: 680px; }
.form .field { margin-bottom: 1.15rem; }
.form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .45rem; }
.form input, .form select, .form textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 2px; background: #fff;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--red); outline-offset: 1px; border-color: var(--ink); }
.form textarea { min-height: 150px; resize: vertical; }
.form .status { margin-top: 1rem; font-size: .95rem; color: var(--ink-2); }
@media (max-width: 600px) { .form .field-row { grid-template-columns: 1fr; } }

/* Bandeau de consentement cookies */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; background: var(--ink); color: rgba(255,255,255,.85); padding: 1rem clamp(1.25rem, 5vw, 3.5rem); box-shadow: 0 -12px 30px -22px rgba(0,0,0,.6); }
.cookie-banner__inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-banner p { margin: 0; font-size: .88rem; line-height: 1.5; max-width: 72ch; color: rgba(255,255,255,.85); }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .8rem; flex: none; }
.cookie-banner .btn { padding: .7rem 1.4rem; background: #fff; color: var(--ink); border-color: #fff; }
.cookie-banner .btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.cookie-banner .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.cookie-banner .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
@media (max-width: 680px) { .cookie-banner__actions { width: 100%; } .cookie-banner__actions .btn { flex: 1; justify-content: center; } }

/* ====================================================================
   CHARTE ZEMETHOD
   ==================================================================== */
body.zemethod {
  --bg: #FFFFFF; --paper: #E8E8E8; --ink: #000000; --ink-2: #3a3a3a; --ink-3: #6a6a6a;
  --line: #E0E0E0; --line-soft: #ECECEC; --serif: 'Manrope',sans-serif;
  background: var(--bg);
}
body.zemethod h1, body.zemethod h2, body.zemethod h3, body.zemethod h4 { font-family: 'Manrope',sans-serif; font-weight: 700; letter-spacing: -0.02em; }
body.zemethod h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); line-height: 1.05; }
body.zemethod h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
body.zemethod h3 { font-weight: 700; font-size: 1.1rem; letter-spacing: 0; }
body.zemethod .lead { font-family: 'Manrope',sans-serif; font-weight: 500; }
body.zemethod .eyebrow { color: var(--red); }
body.zemethod .eyebrow::before { background: var(--red); }
body.zemethod .site-header { background: color-mix(in srgb, #fff 88%, transparent); }
body.zemethod .alt { background: var(--paper); }
body.zemethod .card::before { content: none; }
body.zemethod .card { border-color: var(--line); }
body.zemethod .zlogo { font-family: 'Manrope',sans-serif; font-weight: 800; color: var(--red); font-size: 1.45rem; letter-spacing: .02em; }
body.zemethod .btn { background: var(--red); border-color: var(--red); }
body.zemethod .btn:hover { background: #a8262d; border-color: #a8262d; }
body.zemethod .link-arrow { background-image: linear-gradient(var(--red), var(--red)); }
body.zemethod .quote { border-left-color: var(--red); background: transparent; }
body.zemethod .quote p { font-family: 'Archivo',sans-serif; }
.banner-finance { background: var(--ink); color: #fff; text-align: center; padding: .8rem 1rem; font-weight: 400; font-size: .86rem; letter-spacing: .03em; }
.banner-finance strong { color: #fff; font-weight: 700; }
.qualiopi-block { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--red); border-radius: 2px; padding: 2rem; font-size: .92rem; color: #2a2a2a; }
.qualiopi-block h3 { font-size: 1.2rem; }
.formation-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.formation-list li { padding: .85rem 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.formation-list li:last-child { border-bottom: 0; }
.formation-list li span { color: var(--ink-3); font-size: .82rem; font-variant-numeric: tabular-nums; white-space: nowrap; letter-spacing: .03em; }
/* ZeMethod — image hero (paysage : Ali en formation) */
body.zemethod .hero__media img { aspect-ratio: 3 / 2; }
/* ZeMethod — bande de réassurance */
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 2px; }
.trust-strip > div { padding: 1.7rem 1.5rem; border-right: 1px solid var(--line); }
.trust-strip > div:last-child { border-right: 0; }
.trust-strip strong { display: block; font-family: 'Manrope', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; line-height: 1.1; }
.trust-strip span { display: block; font-size: .8rem; color: var(--ink-3); margin-top: .35rem; }
/* ZeMethod — cartes des trois livres : accent rouge en tête */
body.zemethod .card { border-top: 3px solid var(--red); padding-top: 1.9rem; }
/* Plus de bandes grises : sections blanches, séparées par un filet fin */
body.zemethod .alt { background: #fff; border-top: 1px solid var(--line); }
@media (max-width: 760px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip > div:nth-child(odd) { border-right: 1px solid var(--line); }
  .trust-strip > div:nth-child(2) { border-right: 0; }
  .trust-strip > div:nth-child(1), .trust-strip > div:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__media { order: -1; }
  /* Mobile : photos a leurs vraies proportions (evite de couper les tetes) */
  .hero__media img { aspect-ratio: auto; }
  /* Exception : la photo paysage de ZeMethod (AB8) reste en 3/2 */
  body.zemethod .hero__media img { aspect-ratio: 3 / 2; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .situations { grid-template-columns: 1fr; }
  .situations .situation:nth-child(odd) { border-right: 0; padding-right: 0; }
  .situations .situation:nth-child(even) { padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: .5rem 0; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: .95rem clamp(1.25rem,5vw,3.5rem); }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-links .btn { margin: .6rem clamp(1.25rem,5vw,3.5rem); justify-content: center; }
  .nav-toggle { display: block; }
}
