/*!
Theme Name: ASRM - Sécurité des motards
Theme URI: https://securitedesmotards.org/
Description: Thème WordPress sur-mesure ASRM (gabarits T1, T3, T2a, T2b, T4, T13, T15).
Author: ASRM
Version: 0.2.0 - Batch P1 + P2
Text Domain: asrm
License: GPL-2.0+
*/

/* ============================================================
   1. DESIGN TOKENS (issus du fichier existant - ne pas renommer)
   ============================================================ */
:root {
  /* Couleurs principales */
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d9d9d9;
  --gray-500: #9a9a9a;
  --gray-600: #626262;
  --gray-900: #1a1a1a;
  --black: #000000;

  /* Or */
  --or-clair: #f2eabd;
  --or-clair-soft: #faf3d6;
  --or: #f1d032;
  --or-fonce: #a89123;
  --or-fonce-deep: #7a6915;

  /* Code de la route (alertes) */
  --rouge: #ff3131;
  --rouge-bg: #ffc1c1;
  --bleu: #5271ff;
  --bleu-bg: #cbd4ff;
  --vert: #7ed957;
  --vert-bg: #d8f4cc;
  --orange-app: #fe5904;

  /* Tokens dérivés */
  --bg: var(--white);
  --fg: var(--black);
  --fg-muted: var(--gray-600);
  --rule: var(--gray-300);
  --accent: var(--or);
  --accent-deep: var(--or-fonce);
  --accent-soft: var(--or-clair);

  /* Typography */
  --font-body: "Source Sans 3", "Source Sans Pro", system-ui, -apple-system, sans-serif;
  --font-display: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --h1: clamp(36px, 4.2vw, 60px);
  --h2: clamp(28px, 3vw, 42px);
  --h3: clamp(22px, 2vw, 28px);

  /* Spacing */
  --gutter: 24px;
  --container: 1280px;

  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
}

img { max-width: 100%; display: block; }

a {
  color: var(--bleu);
  text-decoration: none;
  transition: color 120ms ease, border-color 120ms ease;
}
a:hover {
  color: var(--or-fonce);
  text-decoration: underline;
  text-decoration-color: var(--or-fonce);
  text-underline-offset: 3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0;
  line-height: 1.15;
  text-wrap: balance;
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }

p { margin: 0 0 1em; text-wrap: pretty; }

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Skip to content (a11y) */
.skip-link {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: fixed; left: 16px; top: 16px; width: auto; height: auto;
  background: var(--black); color: var(--or); padding: 10px 14px;
  border-radius: 6px; z-index: 9999; font-weight: 700;
}

/* ============================================================
   2. BOUTONS, TAGS, EYEBROW, PLACEHOLDERS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease, color 120ms ease, border-color 120ms ease;
  white-space: nowrap;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: var(--or);
  color: var(--black);
  border-color: var(--or);
}
.btn-primary:hover {
  background: var(--or-fonce);
  border-color: var(--or-fonce);
  color: var(--black);
  text-decoration: none;
}
.btn-secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--or);
}
.btn-secondary:hover {
  background: var(--or-clair);
  text-decoration: none;
  color: var(--black);
}
.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-300);
}
.btn-ghost:hover {
  border-color: var(--or-fonce);
  color: var(--black);
  text-decoration: none;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* Pulse animation pour CTA Don */
@keyframes pulse-or {
  0%, 100% { box-shadow: 0 0 0 0 rgba(241, 208, 50, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(241, 208, 50, 0); }
}
.btn-pulse { animation: pulse-or 2.4s ease-in-out infinite; }

/* Tag / pill */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 3px;
  background: var(--or-clair);
  color: var(--or-fonce-deep);
}
.tag-dark { background: var(--black); color: var(--or); }
.tag-bleu { background: var(--bleu-bg); color: var(--bleu); }
.tag-rouge { background: var(--rouge-bg); color: var(--rouge); }
.tag-vert { background: var(--vert-bg); color: #2d6e1d; }

/* Image placeholder (hatched) */
.img-ph {
  position: relative;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.04) 49%, transparent 49%, transparent 51%, rgba(0,0,0,0.04) 51%, rgba(0,0,0,0.04) 100%),
    linear-gradient(180deg, var(--gray-200), var(--gray-100));
  background-size: 8px 8px, 100% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  overflow: hidden;
  text-align: center;
  padding: 16px;
}

/* Moto-evocative dark gradient placeholder (no SVG) */
.img-moto {
  position: relative;
  background:
    radial-gradient(ellipse at 75% 35%, rgba(241, 208, 50, 0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(168, 145, 35, 0.25), transparent 50%),
    linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 60%, #000 100%);
  overflow: hidden;
  isolation: isolate;
}
.img-moto::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg, transparent 0, transparent 60px,
    rgba(255, 255, 255, 0.03) 60px, rgba(255, 255, 255, 0.03) 62px
  );
  pointer-events: none;
}
.img-moto::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.45;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.img-moto-light {
  position: relative;
  background:
    radial-gradient(ellipse at 65% 40%, rgba(255, 255, 255, 0.7), transparent 55%),
    linear-gradient(160deg, #d4cba0 0%, #b8a96a 50%, #8a7530 100%);
}

/* Section helpers */
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-divider { border-top: 1px solid var(--gray-300); }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or-fonce);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--or);
  display: inline-block;
}
.eyebrow-center { justify-content: center; }

/* Form controls */
input[type="text"],
input[type="email"],
input[type="search"],
input[type="number"],
input[type="tel"],
select,
textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  width: 100%;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--or-fonce);
  box-shadow: 0 0 0 3px rgba(241, 208, 50, 0.25);
}

/* Focus ring global */
:focus-visible {
  outline: 2px solid var(--or-fonce);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ============================================================
   3. HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #fff;
  border-bottom: 1px solid transparent;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Top bar */
.topbar {
  background: #000;
  color: #fff;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(241, 208, 50, 0.2);
}
.topbar-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  gap: 24px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
}
.topbar-left { display: flex; gap: 22px; align-items: center; }
.topbar-badge {
  display: flex; align-items: center; gap: 6px;
  color: var(--white); font-weight: 600;
}
.topbar-extra { color: var(--or); opacity: 1; font-weight: 600; }
.topbar-extra-sep { color: var(--or); opacity: 0.7; }
.topbar-links {
  display: flex; gap: 18px; align-items: center;
}
.topbar-links a {
  color: #fff; opacity: 0.85; font-weight: 400;
}
.topbar-links a:hover { color: var(--or); opacity: 1; text-decoration: none; }

/* Header row - pas de position:relative, pour que le mega-menu prenne toute
   la largeur de la page (containing block = .site-header en sticky) */
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
  flex-wrap: nowrap;
}
.site-header { /* établit le containing block pour le mega-menu plein écran */ }

/* Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 48px; height: 48px;
  display: block; flex-shrink: 0;
}
/* P1 : suppression de l'animation Lottie au survol du logo (header + footer) */
/* P1 : ASRM sur une ligne, SENSIBILISONS-NOUS sur la ligne du dessous */
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-weight: 800; font-size: 17px;
  color: var(--black); letter-spacing: -0.01em;
  line-height: 1;
}
.brand-baseline {
  font-size: 9px; letter-spacing: 0.16em; font-weight: 700;
  color: var(--or-fonce); text-transform: uppercase;
  margin-top: 4px;
  line-height: 1;
}
[data-theme-inverse] .brand-name { color: #fff; }
[data-theme-inverse] .brand-baseline { color: var(--or); }

/* Main nav */
.main-nav {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center; flex-wrap: nowrap;
  list-style: none; margin: 0; padding: 0;
}
.main-nav > li { position: static; }
.main-nav > li > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 12px;
  color: var(--black); text-decoration: none;
  font-size: 15px; font-weight: 600;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.main-nav > li > a:hover { color: var(--or-fonce); text-decoration: none; border-bottom-color: var(--or); }
.main-nav > li.is-current > a { border-bottom-color: var(--or); }

.chev { transition: transform 200ms; }
.has-mega[aria-expanded="true"] > a .chev { transform: rotate(180deg); }

/* Header actions */
.header-actions {
  display: flex; align-items: center; gap: 10px;
}
.icon-btn {
  width: 40px; height: 40px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--black); transition: background 120ms;
  background: transparent;
}
.icon-btn:hover { background: var(--gray-100); }

/* Mega-menu */
.mega-menu {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--gray-200);
  border-bottom: 3px solid var(--or);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  z-index: 90;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
}
.has-mega[aria-expanded="true"] .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 160ms ease, transform 160ms ease, visibility 0s;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding: 36px 24px;
}
.mega-grid.no-feature { grid-template-columns: 1fr 1fr 0.7fr; }
.mega-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--or-fonce); text-transform: uppercase;
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-200);
}
.mega-list { display: flex; flex-direction: column; gap: 14px; }
.mega-list a {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 10px; margin: -8px -10px;
  border-radius: 6px; color: var(--black); text-decoration: none;
  border: 1px solid transparent;
}
.mega-list a:hover { background: var(--gray-100); text-decoration: none; color: var(--black); }
.mega-list-highlight a { background: var(--or-clair-soft); border-color: var(--or-clair); }
.mega-list-highlight a:hover { background: var(--or-clair); }
.mega-list a .ico {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--or-clair); color: var(--or-fonce-deep);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
}
.mega-list a .lbl-strong { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.mega-list a .lbl-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.4; }

.mega-feature {
  border-radius: 8px;
  padding: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
  text-decoration: none;
  position: relative;
}
.mega-feature:hover { text-decoration: none; color: #fff; }
.mega-feature-tag {
  align-self: flex-start;
  background: var(--or); color: #000;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  padding: 4px 8px; margin-bottom: 12px; text-transform: uppercase;
}
.mega-feature-title {
  font-size: 20px; font-weight: 700; margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.mega-feature-desc {
  font-size: 14px; opacity: 0.85; line-height: 1.5;
}
.mega-feature-cta {
  margin-top: 18px; color: var(--or);
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 14px;
}

/* Search dropdown */
.search-dropdown {
  position: absolute;
  top: 100%; right: 24px;
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--gray-200);
  width: 380px; max-width: calc(100vw - 48px);
  z-index: 95;
  display: none;
}
.search-dropdown[data-open="true"] { display: block; }
.search-dropdown form { display: flex; gap: 8px; }
.search-dropdown .hint {
  font-size: 12px; color: var(--fg-muted); margin-top: 10px;
}

/* Header responsive */
@media (max-width: 1180px) {
  .main-nav { gap: 0; }
  .main-nav > li > a { padding: 10px 8px; font-size: 14px; }
  .header-adherer { display: none; }
  .topbar-extra, .topbar-extra-sep { display: none; }
}
@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-row { gap: 16px; }
  .topbar-links { gap: 12px; }
}

/* ============================================================
   4. FOOTER
   ============================================================ */

.site-footer { background: #000; color: #fff; }
.footer-stripe { height: 6px; background: var(--or-fonce); }

.footer-newsletter {
  background: var(--or);
  color: #000;
}
.footer-newsletter .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
}
.footer-newsletter-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 6px;
}
.footer-newsletter-title {
  font-size: 22px; font-weight: 700; letter-spacing: -0.01em;
  line-height: 1.25;
}
.footer-newsletter form {
  display: flex; gap: 8px; min-width: 380px;
}
.footer-newsletter input {
  background: #fff; border: 2px solid #000;
}
/* P1 : bouton « S'inscrire » newsletter - hover = simple soulignement */
.footer-newsletter .btn {
  background: #000; color: var(--or); border: 2px solid #000;
  transition: text-decoration-color 120ms ease;
}
.footer-newsletter .btn:hover {
  background: #000; color: var(--or); border-color: #000;
  text-decoration: underline;
  text-decoration-color: var(--or);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.footer-cols .container { padding-top: 64px; padding-bottom: 40px; }
.footer-cols .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 0.9fr;
  gap: 40px;
}
.footer-about p {
  margin-top: 18px; font-size: 14px; opacity: 0.75; line-height: 1.6;
}
.footer-social {
  display: flex; gap: 8px; margin-top: 20px;
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all 150ms;
}
.footer-social a:hover {
  background: var(--or); border-color: var(--or); color: #000;
  text-decoration: none;
}

.footer-col-title {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--or); text-transform: uppercase; margin-bottom: 18px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px; text-decoration: none;
}
.footer-col-links a:hover { color: var(--or); text-decoration: none; }

.footer-cta-card {
  background: rgba(241, 208, 50, 0.08);
  border: 1px solid rgba(241, 208, 50, 0.3);
  border-radius: 8px;
  padding: 20px;
  height: fit-content;
}
.footer-cta-card .eyebrow {
  color: var(--or);
  margin-bottom: 8px;
}
.footer-cta-card .eyebrow::before { background: var(--or); }
.footer-cta-card .lead {
  font-size: 16px; color: #fff; margin-bottom: 14px; line-height: 1.4;
}
.footer-cta-card .note {
  font-size: 12px; color: rgba(255, 255, 255, 0.5);
  margin-top: 10px; text-align: center;
}

.footer-badges {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-badges .container {
  padding: 28px 24px;
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
}
.footer-badges-list { display: flex; flex-wrap: wrap; gap: 12px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(241, 208, 50, 0.4);
  border-radius: 4px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(241, 208, 50, 0.05);
  font-weight: 500;
}
.badge-pill::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--or);
}

.footer-sub {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}
.footer-sub .container {
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255, 255, 255, 0.55);
}
.footer-sub a { color: rgba(255, 255, 255, 0.55); }
.footer-sub a:hover { color: var(--or); text-decoration: none; }
.footer-sub-links { display: flex; gap: 20px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .footer-newsletter .container { grid-template-columns: 1fr; }
  .footer-newsletter form { min-width: 0; }
  .footer-cols .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-cols .grid { grid-template-columns: 1fr; }
}

/* ============================================================
   5. STICKY BACK-TO-TOP (remplace tous les sticky existants)
   ============================================================ */

.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--or);
  color: #000;
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  z-index: 70;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, background 120ms ease;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.back-to-top:hover { background: var(--or-fonce); color: #000; }
.back-to-top:focus-visible { outline: 2px solid #000; outline-offset: 3px; }
@media (max-width: 640px) {
  .back-to-top {
    right: 16px; bottom: 16px;
    width: 40px; height: 40px;
  }
}

/* ============================================================
   6. HERO + DONATION CARD (T1)
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: #000;
}
.hero-bg { position: absolute; inset: 0; opacity: 0.6; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.7) 100%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 56px;
  align-items: center;
  min-height: 580px;
  padding: 84px 24px 96px;
}
.hero-text { color: #fff; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px;
  background: rgba(241, 208, 50, 0.15);
  border: 1px solid rgba(241, 208, 50, 0.3);
  border-radius: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%; background: var(--or);
}
.hero-h1 {
  color: #fff; font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05; margin-bottom: 24px; max-width: 720px;
}
.hero-lead {
  font-size: 19px; color: rgba(255, 255, 255, 0.85);
  line-height: 1.5; max-width: 600px; margin-bottom: 32px;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero-ctas .btn-discover {
  background: transparent; color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.hero-ctas .btn-discover:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.hero-stats {
  display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 28px; font-weight: 800; color: var(--or);
  letter-spacing: -0.02em;
}
.hero-stat-lbl {
  font-size: 13px; color: rgba(255, 255, 255, 0.65); margin-top: 2px;
}

/* Donation card */
.donation-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.donation-card-head {
  display: flex; align-items: center; gap: 8px; margin-bottom: 4px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--or-fonce); text-transform: uppercase;
}
.donation-card h3 { font-size: 22px; margin-bottom: 18px; }
.freq-toggle {
  display: flex; padding: 4px;
  background: var(--gray-100); border-radius: 6px;
  margin-bottom: 18px; gap: 4px;
}
.freq-toggle button {
  flex: 1; padding: 8px 12px; border-radius: 4px;
  background: transparent; color: var(--fg-muted);
  font-weight: 500; font-size: 13px; cursor: pointer;
  transition: all 150ms;
}
.freq-toggle button[aria-pressed="true"] {
  background: #fff; color: #000; font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.preset-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 8px;
}
.preset-btn {
  padding: 14px 8px; border-radius: 6px;
  font-size: 18px; font-weight: 700;
  border: 2px solid var(--gray-200);
  background: #fff; color: #000;
  cursor: pointer; transition: all 150ms;
}
.preset-btn[aria-pressed="true"] {
  border-color: var(--or-fonce);
  background: var(--or-clair-soft);
}
.donation-card input[type="number"] { margin-bottom: 14px; }
.fiscal-line {
  background: var(--or-clair-soft);
  border: 1px solid var(--or-clair);
  border-radius: 6px;
  padding: 10px 14px; margin-bottom: 14px;
  font-size: 13px; color: var(--or-fonce-deep);
  display: flex; justify-content: space-between; align-items: center;
}
.fiscal-line strong { font-size: 16px; }
.donation-note {
  font-size: 11px; color: var(--fg-muted);
  margin-top: 10px; text-align: center; line-height: 1.5;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 24px 64px;
    min-height: 0;
  }
}

/* ============================================================
   7. KEY NUMBERS BAND
   ============================================================ */

.keynumbers {
  background: var(--or-clair-soft);
  padding: 56px 0;
  border-bottom: 1px solid var(--or-clair);
}
.keynumbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.keynum {
  border-left: 1px solid var(--or-clair);
  padding-left: 32px;
}
.keynum:first-child { border-left: 0; padding-left: 0; }
.keynum-n {
  font-size: 48px; font-weight: 800; color: var(--or-fonce-deep);
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px;
}
.keynum-l { font-size: 15px; font-weight: 700; color: #000; margin-bottom: 4px; }
.keynum-sub { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

@media (max-width: 980px) {
  .keynumbers-grid { grid-template-columns: 1fr 1fr; }
  .keynum:nth-child(3) { border-left: 0; padding-left: 0; }
}
@media (max-width: 640px) {
  .keynumbers-grid { grid-template-columns: 1fr; }
  .keynum { border-left: 0; padding-left: 0; }
}

/* ============================================================
   8. SECTION DOSSIERS (cards)
   ============================================================ */

.dossiers-frame {
  background: var(--or-clair);
  padding: 24px;
  border-radius: 8px;
}
.dossiers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dossier-card {
  background: #fff; border-radius: 8px; overflow: hidden;
  color: #000; text-decoration: none;
  display: flex; flex-direction: column;
  transition: transform 200ms, box-shadow 200ms;
  border: 1px solid rgba(168, 145, 35, 0.15);
}
.dossier-card:hover {
  text-decoration: none; color: #000;
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}
.dossier-card .img-moto { aspect-ratio: 16/10; }
.dossier-card-body {
  padding: 22px;
  display: flex; flex-direction: column; flex: 1;
}
.dossier-card .tag { align-self: flex-start; margin-bottom: 12px; }
.dossier-card h3 { font-size: 19px; margin-bottom: 10px; line-height: 1.3; }
.dossier-card-excerpt {
  font-size: 14px; color: var(--fg-muted); margin-bottom: 16px; flex: 1;
}
.dossier-card-foot {
  padding-top: 14px; border-top: 1px solid var(--gray-200);
  display: flex; justify-content: space-between; align-items: center;
}
.meta-clock {
  font-size: 12px; color: var(--fg-muted);
  display: flex; align-items: center; gap: 5px;
}
.lire-link {
  font-size: 14px; font-weight: 600; color: var(--or-fonce);
  display: inline-flex; gap: 4px; align-items: center;
}

.section-head {
  display: flex; justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px; gap: 24px; flex-wrap: wrap;
}
.section-head h2 { max-width: 640px; }
.section-head-link {
  color: var(--or-fonce); font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 6px;
}

@media (max-width: 980px) {
  .dossiers-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .dossiers-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   9. MORTALITY CHART
   ============================================================ */

.chart-section {
  background: #fafafa;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.chart-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: center;
}
.chart-stats {
  background: #fff; border: 1px solid var(--gray-200); border-radius: 8px;
  padding: 18px; margin-top: 22px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.chart-stat-num {
  font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em;
}
.chart-stat-num.is-gold { color: var(--or-fonce-deep); }
.chart-stat-num.is-black { color: #000; }
.chart-stat-lbl { font-size: 13px; color: var(--fg-muted); }
.chart-source { font-size: 12px; color: var(--fg-muted); margin-top: 14px; }

.chart-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 20px;
}
.chart-card-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 8px 14px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 8px;
}
.chart-card-title {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.chart-card-range {
  font-size: 12px; color: var(--fg-muted); font-family: var(--font-mono);
}

@media (max-width: 980px) {
  .chart-grid { grid-template-columns: 1fr; }
}

/* ============================================================
  10. ACTUALITÉS
   ============================================================ */

.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.news-card {
  background: #fff; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--gray-200); color: #000;
  text-decoration: none; display: flex; flex-direction: column;
  transition: all 200ms;
}
.news-card:hover {
  text-decoration: none; color: #000;
  border-color: var(--or-fonce);
  transform: translateY(-2px);
}
.news-card .img-moto { aspect-ratio: 16/9; }
.news-card-body { padding: 22px; }
.news-card-meta {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 12px; font-size: 12px;
}
.news-card-meta .tag {
  background: var(--gray-100); color: var(--fg-muted);
}
.news-card-meta-date { color: var(--fg-muted); }
.news-card h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.3; }
.news-card-excerpt {
  font-size: 14px; color: var(--fg-muted); margin-bottom: 16px;
}

@media (max-width: 980px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* ============================================================
  11. NOS ACTIONS (sombre)
   ============================================================ */

.actions-section {
  background: #000; color: #fff;
  padding: 80px 0;
}
.actions-section h2 { color: #fff; max-width: 720px; margin-bottom: 48px; }
.actions-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.action-card {
  background: rgba(241, 208, 50, 0.04);
  border: 1px solid rgba(241, 208, 50, 0.15);
  border-radius: 8px;
  padding: 36px;
}
.action-card h3 { color: #fff; font-size: 28px; margin-bottom: 14px; }
.action-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px; line-height: 1.7; margin-bottom: 24px;
}
.action-items { display: flex; flex-direction: column; gap: 10px; }
.action-item {
  display: flex; gap: 12px; align-items: center; font-size: 15px;
}
.action-item .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--or); color: #000;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .actions-grid { grid-template-columns: 1fr; }
}

/* ============================================================
  12. PRODUCT CARDS (APP & KIT)
   ============================================================ */

.product-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--gray-200);
}
.product-card.is-reverse { direction: rtl; }
.product-card .img-moto { min-height: 360px; direction: ltr; }
.product-card-body {
  padding: 44px 48px;
  direction: ltr;
  background: #fff;
}
.product-card-body .tag { margin-bottom: 18px; }
.product-card-body h3 { font-size: 32px; margin-bottom: 8px; }
.product-card-subtitle {
  font-size: 14px; color: var(--fg-muted);
  margin-bottom: 20px; font-family: var(--font-mono);
}
.product-card-body p {
  font-size: 16px; color: var(--fg-muted);
  line-height: 1.6; margin-bottom: 24px;
}
.product-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 28px;
}
.product-features div {
  display: flex; gap: 8px; align-items: center; font-size: 14px;
}

.tag-app { background: var(--orange-app); color: #fff; }
.tag-kit { background: var(--or-fonce); color: #fff; }

@media (max-width: 980px) {
  .product-card { grid-template-columns: 1fr; direction: ltr; }
  .product-card-body { padding: 28px; }
}

/* ============================================================
  13. PARTENAIRES - carrousel « Ils ont collaboré à nos actions » (P1)
   ============================================================ */

.partners-section {
  background: #fafafa;
  border-top: 1px solid var(--gray-300);
  padding: 72px 0 80px;
  overflow: hidden;
}
.partners-head {
  text-align: center; margin-bottom: 40px;
}
.partners-head h2 {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Piste : containment overflow + masque progressif sur les bords */
.partners-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 56px,
    #000 calc(100% - 56px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 56px,
    #000 calc(100% - 56px),
    transparent 100%
  );
}
.partners-track {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 12px 0;
  width: max-content;
  animation: partners-scroll 70s linear infinite;
}
.partners-carousel:hover .partners-track,
.partners-carousel:focus-within .partners-track {
  animation-play-state: paused;
}
@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Carte partenaire */
.partner-card {
  flex: 0 0 auto;
  width: 360px;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.partner-card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Logo : container fixe 50px de haut, image normalisée */
.partner-logo {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 12px;
  pointer-events: none;
}
.partner-logo img {
  max-height: 50px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 300ms ease;
}
.partner-card:hover .partner-logo img {
  filter: none;
}

.partner-name {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  line-height: 1.25;
}
.partner-name-sub {
  display: block;
  font-size: 12.75px; /* ~85% du nom */
  font-weight: 500;
  color: #626262;
  margin-top: 2px;
}
.partner-mention {
  font-size: 13px;
  color: #626262;
  line-height: 1.45;
}

/* prefers-reduced-motion : carrousel statique scrollable */
@media (prefers-reduced-motion: reduce) {
  .partners-carousel {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .partners-track {
    animation: none !important;
  }
}

@media (max-width: 720px) {
  .partner-card { width: 280px; padding: 20px; }
}

/* Wordmark de secours tant que les fichiers logos partenaires n'ont pas été fournis */
.partner-logo-ph {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #000;
  text-transform: uppercase;
  padding: 9px 14px;
  border: 1.5px solid #000;
  border-radius: 3px;
  line-height: 1;
  white-space: nowrap;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 300ms ease;
  max-height: 50px;
}
.partner-card:hover .partner-logo-ph { filter: none; }

/* ============================================================
  14. POPUP NEWSLETTER (exit-intent)
   ============================================================ */

.popup-backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.popup-backdrop[data-open="true"] { display: flex; }
.popup-card {
  background: #fff; border-radius: 12px;
  max-width: 520px; width: 100%; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  position: relative;
}
/* P3 : croix noire sur fond or principal, hover or fonce (cf. bouton S'inscrire) */
.popup-close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 6px;
  background: var(--or); color: #000;
  display: flex; align-items: center; justify-content: center; z-index: 2;
  cursor: pointer; border: 0;
  transition: background-color 200ms ease;
}
.popup-close:hover { background: var(--or-fonce); color: #000; }
.popup-close svg { width: 16px; height: 16px; }
.popup-banner {
  height: 140px; position: relative;
}
.popup-banner-text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--or); font-weight: 800; font-size: 28px;
  letter-spacing: 0.04em;
}
.popup-body { padding: 32px 36px 36px; }
.popup-body h3 { font-size: 24px; margin-bottom: 12px; }
.popup-body p {
  font-size: 15px; color: var(--fg-muted); margin-bottom: 20px;
}
.popup-body form { display: flex; gap: 8px; }
.popup-body .note {
  font-size: 12px; color: var(--fg-muted); margin-top: 12px;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ============================================================
  15. ARTICLE (T3)
   ============================================================ */

.breadcrumb {
  background: #fafafa;
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb-inner {
  padding: 14px 24px;
  font-size: 13px; color: var(--fg-muted);
}
.breadcrumb-inner a { color: var(--fg-muted); }
.breadcrumb-inner a:hover { color: var(--or-fonce); }
.breadcrumb-sep { margin: 0 8px; }
.breadcrumb-current { color: #000; }

.dossier-band {
  background: var(--or-fonce);
  color: #fff;
}
.dossier-band-inner {
  padding: 16px 24px;
  display: flex; align-items: center; gap: 14px;
}
.dossier-band-text { font-size: 14px; }
.dossier-band-text strong { font-weight: 700; }
.dossier-band-text .lbl { opacity: 0.8; }

.article-header {
  padding: 56px 24px 80px;
}
.article-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 18px;
  max-width: 820px;
}
.article-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px; flex-wrap: wrap; gap: 16px;
}
.article-meta-time {
  font-style: italic; color: var(--fg-muted);
  display: flex; align-items: center; gap: 6px; font-size: 14px;
}
/* P1 : icône horloge statique (suppression de l'animation Lottie de rotation) */
.article-meta-time .icon-clock { color: var(--fg-muted); }
.article-share { display: flex; gap: 8px; }
.share-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gray-100); color: #000;
  display: flex; align-items: center; justify-content: center;
  transition: all 150ms; position: relative;
  cursor: pointer;
}
.share-btn:hover { background: var(--or); }

.article-hero {
  aspect-ratio: 16/8;
  border-radius: 8px;
  margin-bottom: 36px;
}
.article-chapo {
  border-left: 4px solid var(--or-fonce);
  padding-left: 22px;
  margin-bottom: 40px;
  font-size: 19px; line-height: 1.6;
  color: #000; font-style: italic;
}
.article-chapo strong { font-weight: 700; }

.article-grid {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 48px;
}
.article-body {
  font-size: 17px; line-height: 1.75;
  color: var(--gray-900);
}
.article-body h2 {
  font-size: 28px; margin-top: 36px; margin-bottom: 18px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body ul { padding-left: 22px; }

/* Aside / sticky cards */
.article-aside {
  position: sticky; top: 130px;
  align-self: flex-start;
  display: flex; flex-direction: column; gap: 18px;
}
.aside-card {
  border: 1px solid var(--gray-200); border-radius: 8px;
  padding: 18px; background: #fff;
}
.aside-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--or-fonce); text-transform: uppercase;
  margin-bottom: 14px;
}
.aside-card.has-divider .aside-title {
  padding-bottom: 10px; border-bottom: 1px solid var(--gray-200);
}
.toc-nav {
  display: flex; flex-direction: column; gap: 8px; font-size: 14px;
}
.toc-nav a {
  color: var(--gray-900); text-decoration: none;
  padding: 4px 0 4px 12px;
  border-left: 2px solid var(--gray-200);
}
.toc-nav a:hover, .toc-nav a.is-active {
  border-left-color: var(--or-fonce); color: var(--or-fonce);
  text-decoration: none;
}
.toc-num {
  color: var(--fg-muted); font-family: var(--font-mono);
  font-size: 11px; margin-right: 8px;
}

.dl-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px; background: var(--gray-100); border-radius: 6px;
  color: #000; text-decoration: none; margin-bottom: 8px;
}
.dl-item:last-child { margin-bottom: 0; }
.dl-item:hover { background: var(--or-clair); color: #000; text-decoration: none; }
.dl-ext {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  padding: 3px 6px; color: #fff; border-radius: 3px; flex-shrink: 0;
}
.dl-ext.pdf { background: var(--rouge); }
.dl-title { font-size: 13px; font-weight: 600; }
.dl-meta { font-size: 11px; color: var(--fg-muted); }

/* Sources officielles (3.1) - reuses aside-card */
.sources-list {
  display: flex; flex-direction: column; gap: 4px;
}
.source-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px; border-radius: 6px;
  color: #000; text-decoration: none;
  transition: background 120ms ease;
}
.source-item:hover {
  background: var(--gray-100);
  color: #000; text-decoration: none;
}
.source-item .ext-ico {
  flex-shrink: 0;
  color: var(--bleu);
  margin-top: 2px;
}
.source-label {
  font-size: 13px; font-weight: 600; line-height: 1.35;
  margin-bottom: 2px;
}
.source-url {
  font-size: 11px; color: var(--fg-muted); line-height: 1.3;
  word-break: break-all;
}

/* Encadré définition / glossaire */
.def-box {
  background: var(--or-clair);
  border-left: 4px solid var(--or);
  padding: 16px 20px;
  border-radius: 4px;
  margin: 24px 0;
  font-size: 15px;
}
.def-box-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--or-fonce-deep);
  margin-bottom: 6px;
}

/* "Les + ASRM" box */
.plus-box {
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 22px; margin: 28px 0;
}
.plus-box-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--or); color: #000;
  padding: 4px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 14px;
}
.plus-list { display: flex; flex-direction: column; gap: 8px; }
.plus-item {
  display: flex; gap: 10px; align-items: flex-start; font-size: 15px;
}
.plus-item .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--or-fonce); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}

/* Inline chart placeholder */
.inline-chart {
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 24px;
  margin: 28px 0; text-align: center;
}
.inline-chart-eyebrow {
  font-size: 12px; color: var(--fg-muted);
  font-family: var(--font-mono); margin-bottom: 8px;
}

/* CTA don intermédiaire */
.cta-don-band {
  background: var(--or); border-radius: 8px;
  padding: 28px 32px;
  margin: 40px 0;
  display: flex; justify-content: space-between;
  align-items: center; gap: 24px; flex-wrap: wrap;
}
.cta-don-eyebrow {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 6px;
}
.cta-don-title {
  font-size: 18px; font-weight: 600; line-height: 1.3;
}
/* P1 : « Faire un don » dans l'article - hover = simple soulignement du texte */
.btn-don-black {
  background: #000; color: var(--or); border: 2px solid #000;
}
.btn-don-black:hover {
  background: #000; color: var(--or); border-color: #000;
  text-decoration: underline;
  text-decoration-color: var(--or);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* Articles connexes */
.related-section {
  background: #fafafa;
  padding: 64px 0;
  border-top: 1px solid var(--gray-200);
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.related-card {
  background: #fff; border-radius: 8px; overflow: hidden;
  color: #000; text-decoration: none;
  border: 1px solid var(--gray-200);
  transition: transform 200ms, box-shadow 200ms;
}
.related-card:hover {
  text-decoration: none; color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.related-card .img-moto { aspect-ratio: 16/9; }
.related-card-body { padding: 18px; }
.related-card .tag { margin-bottom: 10px; }
.related-card h3 { font-size: 16px; margin-bottom: 10px; line-height: 1.3; }

@media (max-width: 980px) {
  .article-grid { grid-template-columns: 1fr; gap: 40px; }
  .article-aside { position: static; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ============================================================
  16. TOOLTIP - DEFINITION TERM (3.2)
   ============================================================ */

.def-term {
  position: relative;
  border-bottom: 1px dashed var(--or-fonce);
  cursor: help;
  font-style: normal;
}
.def-term[aria-expanded="true"] { background: var(--or-clair-soft); }

.def-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 280px; max-width: 90vw;
  background: var(--white);
  border: 1px solid var(--gray-300);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.5;
  text-align: left;
  z-index: 10;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 150ms ease, transform 150ms ease, visibility 0s linear 150ms;
}
.def-tooltip[data-position="below"] {
  bottom: auto; top: calc(100% + 8px);
  transform: translateX(-50%) translateY(-4px);
}
.def-term:hover .def-tooltip,
.def-term:focus-within .def-tooltip,
.def-term[aria-expanded="true"] .def-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition: opacity 150ms ease, transform 150ms ease, visibility 0s;
}
.def-tooltip-term {
  font-weight: 700;
  color: var(--or-fonce-deep);
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.def-tooltip-close {
  display: none;
}
/* Tactile : tap-to-open, no :hover */
@media (hover: none) {
  .def-term { cursor: pointer; }
  .def-term:hover .def-tooltip { opacity: 0; pointer-events: none; visibility: hidden; }
  .def-term[aria-expanded="true"] .def-tooltip { opacity: 1; pointer-events: auto; visibility: visible; }
  .def-tooltip-close {
    display: inline-flex;
    position: absolute;
    top: 6px; right: 6px;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--gray-100);
    align-items: center; justify-content: center;
    color: #000;
  }
  .def-tooltip { padding-right: 36px; }
}

/* ============================================================
  17. REDUCED MOTION + SCROLLBAR
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .btn-pulse { animation: none !important; }
}

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }

/* Utility for SR-only text */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================================================
  18. PAGE HEADER (T2a, T4, T15) - bandeau or clair compact
   ============================================================ */

.page-header {
  background: var(--or-clair);
  padding: 64px 0;
  text-align: center;
  border-bottom: 1px solid #e8dfa3;
}
.page-header h1 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0 auto 12px;
  max-width: 880px;
  color: #000;
}
.page-header-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .page-header { padding: 42px 0; min-height: 0; }
}

.page-intro {
  max-width: 800px; margin: 56px auto 0;
  padding: 0 24px;
  text-align: center;
  font-size: 16px; line-height: 1.6;
  color: var(--gray-900);
}
.page-intro p:last-child { margin-bottom: 0; }

/* ============================================================
  19. T2a - Hub navigation : grille de cards
   ============================================================ */

.hub-section { padding: 56px 0 96px; }
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hub-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.hub-card:hover {
  text-decoration: none;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  border-color: var(--or);
}
.hub-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-100);
}
.hub-card-img img {
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  transition: transform 320ms ease;
}
.hub-card:hover .hub-card-img img { transform: scale(1.05); }
.hub-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hub-card .tag { align-self: flex-start; margin-bottom: 14px; }
.hub-card h3 { font-size: 19px; line-height: 1.3; margin-bottom: 10px; }
.hub-card-excerpt {
  font-size: 14px;
  color: var(--fg-muted);
  flex: 1; line-height: 1.5;
  margin-bottom: 18px;
}
.hub-card-arrow {
  align-self: flex-end;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--or-fonce);
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms ease, color 200ms ease;
}
.hub-card:hover .hub-card-arrow {
  background: var(--or);
  color: #000;
}
@media (max-width: 980px) { .hub-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .hub-grid { grid-template-columns: 1fr; } }

/* Bandeau CTA or pleine largeur */
.cta-band-gold {
  background: var(--or);
  padding: 56px 24px;
  text-align: center;
}
.cta-band-gold h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 0 auto 12px;
  max-width: 720px;
  color: #000;
}
.cta-band-gold p {
  font-size: 17px;
  color: rgba(0,0,0,0.78);
  max-width: 640px;
  margin: 0 auto 24px;
}
.cta-band-gold .btn {
  background: #000; color: var(--or); border: 2px solid #000;
}
.cta-band-gold .btn:hover {
  background: #000; color: var(--or); border-color: #000;
  text-decoration: underline;
  text-decoration-color: var(--or);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

/* P3 : variante sombre du bandeau CTA (evite l'accumulation de jaune
   avant le footer newsletter, lui-meme or) */
.cta-band-dark {
  background: #000;
  padding: 56px 24px;
  text-align: center;
}
.cta-band-dark h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 0 auto 12px;
  max-width: 680px;
  color: #fff;
}
.cta-band-dark p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.74);
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.cta-band-dark .btn {
  background: var(--or); color: #000; border: 2px solid var(--or);
}
.cta-band-dark .btn:hover {
  background: var(--or-fonce); border-color: var(--or-fonce); color: #000;
  text-decoration: none;
}

/* Placeholder d'outil interactif (cartes, graphiques, simulateurs, quiz) */
.tool-embed { margin: 28px 0; }
.tool-embed-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--or-fonce-deep); margin-bottom: 10px;
}
.tool-embed-box {
  border: 1px dashed var(--or-fonce); background: var(--or-clair-soft);
  border-radius: 10px; min-height: 190px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 28px;
}
.tool-embed-box .lbl { font-weight: 700; font-size: 16px; color: #000; }
.tool-embed-box .sub { font-size: 13px; color: var(--fg-muted); max-width: 360px; }
.tool-embed-box svg { color: var(--or-fonce); margin-bottom: 4px; }

/* ============================================================
  20. T4 - Page produit
   ============================================================ */

[data-product-theme="urgence"] {
  --product-accent: #ff6b35;
  --product-accent-deep: #c44a1f;
}
[data-product-theme="kit"] {
  --product-accent: var(--or-fonce);
  --product-accent-deep: var(--or-fonce-deep);
}

.product-hero {
  padding: 56px 0 72px;
  background: #fff;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 56px;
  align-items: center;
}
.product-hero-left .tag { margin-bottom: 18px; }
.product-hero-left h1 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.1;
  margin-bottom: 18px;
}
.product-hero-chapo {
  font-size: 18px;
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 540px;
}
.product-args {
  list-style: none; padding: 0;
  margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.product-args li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 16px; font-weight: 600;
  color: #000;
}
.product-args .check {
  width: 26px; height: 26px; border-radius: 50%;
  background: #d8f4cc; color: #2d6e1d;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.product-hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.btn-product-accent {
  background: var(--product-accent); color: #fff; border: 2px solid var(--product-accent);
}
.btn-product-accent:hover {
  background: var(--product-accent-deep);
  border-color: var(--product-accent-deep);
  color: #fff;
  text-decoration: none;
}
.btn-product-outline {
  background: transparent; color: #000; border: 2px solid #000;
}
.btn-product-outline:hover {
  background: #000; color: #fff; text-decoration: none;
}
.product-hero-visual {
  aspect-ratio: 1/1;
  border-radius: 12px;
  background: var(--gray-100);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.product-hero-visual .img-moto-light {
  position: absolute; inset: 0;
}
.product-hero-visual img {
  width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1;
}
@media (max-width: 980px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Comment ça marche */
.howitworks { padding: 80px 0; background: #fafafa; }
.howitworks-head { text-align: center; margin-bottom: 48px; }
.howitworks-head .eyebrow { justify-content: center; }
.howitworks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--or); color: #000;
  font-weight: 800; font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.step-icon {
  width: 28px; height: 28px;
  margin: 0 auto 14px;
  color: var(--or-fonce);
}
.step-card h3 { font-size: 17px; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.5; margin: 0; }
@media (max-width: 980px) { .howitworks-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .howitworks-grid { grid-template-columns: 1fr; } }

/* Vidéo démo */
.video-section { padding: 80px 0; }
.video-section .eyebrow { justify-content: center; display: flex; }
.video-section h2 { text-align: center; margin-bottom: 32px; }
.video-frame {
  max-width: 900px; margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 12px; overflow: hidden;
  background: #000;
  border: 1px solid var(--gray-200);
}
.video-frame iframe {
  width: 100%; height: 100%; display: block; border: 0;
}
.video-caption {
  max-width: 900px; margin: 14px auto 0;
  text-align: center; font-style: italic;
  color: var(--fg-muted); font-size: 14px;
}

/* Comparatif */
.compare-section { padding: 80px 0; background: #fafafa; }
.compare-head { text-align: center; margin-bottom: 36px; }
.compare-head h2 { font-size: clamp(24px, 2.6vw, 32px); }
.compare-table {
  max-width: 860px; margin: 0 auto;
  background: #fff; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--gray-200);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--gray-200);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row.is-head {
  background: var(--or-clair);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.compare-row.is-head > div { padding: 14px 16px; text-align: center; }
.compare-row.is-head > div:first-child { text-align: left; }
.compare-row > div { padding: 16px; align-self: center; }
.compare-row > div:first-child { text-align: left; font-size: 15px; font-weight: 500; }
.compare-row > div:not(:first-child) {
  text-align: center;
  border-left: 1px solid var(--gray-200);
  font-weight: 700;
}
.compare-yes { color: #2d6e1d; }
.compare-no { color: var(--gray-500); }
.compare-asrm { background: rgba(241, 208, 50, 0.07); }
@media (max-width: 640px) {
  .compare-row { grid-template-columns: 1fr; }
  .compare-row.is-head { display: none; }
  .compare-row > div { padding: 12px 16px; }
  .compare-row > div:not(:first-child) {
    border-left: 0;
    border-top: 1px solid var(--gray-200);
    text-align: left;
    font-size: 14px;
    font-weight: 500;
  }
  .compare-row > div:not(:first-child)::before {
    content: attr(data-label);
    font-weight: 700;
    margin-right: 8px;
    color: var(--fg-muted);
  }
  .compare-row > div:first-child {
    background: var(--or-clair);
    font-weight: 700;
  }
}

/* Témoignages */
.testimonials-section { padding: 80px 0; }
.testimonials-head { text-align: center; margin-bottom: 48px; }
.testimonials-head .eyebrow { justify-content: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 28px;
}
.testimonial-quote {
  font-size: 16px; line-height: 1.6;
  color: var(--gray-900);
  margin: 0 0 22px;
  font-style: italic;
}
.testimonial-quote::before {
  content: "« "; color: var(--or-fonce); font-weight: 700;
}
.testimonial-quote::after {
  content: " »"; color: var(--or-fonce); font-weight: 700;
}
.testimonial-author {
  display: flex; gap: 14px; align-items: center;
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--or-clair); color: var(--or-fonce-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 14px;
}
.testimonial-name { font-weight: 700; font-size: 15px; line-height: 1.2; margin-bottom: 2px; }
.testimonial-role { font-size: 13px; color: var(--fg-muted); }
@media (max-width: 980px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* Téléchargement App (badges + QR) */
.download-section {
  padding: 80px 0;
  background: var(--or-clair-soft);
}
.download-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}
.download-left h2 { margin-bottom: 14px; }
.download-left p { font-size: 16px; color: var(--gray-900); margin-bottom: 24px; max-width: 480px; }
.download-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.download-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 18px;
  background: #000; color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 150ms ease;
}
.download-badge:hover { background: #1a1a1a; color: #fff; text-decoration: none; }
.download-badge svg { flex-shrink: 0; }
.download-badge-pre { font-size: 10px; opacity: 0.7; letter-spacing: 0.08em; text-transform: uppercase; }
.download-badge-name { font-size: 16px; font-weight: 700; line-height: 1; }
.download-qr {
  width: 160px; height: 160px;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
}
.download-qr svg { width: 100%; height: 100%; }
@media (max-width: 720px) {
  .download-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .download-left p { margin-left: auto; margin-right: auto; }
  .download-badges { justify-content: center; }
  .download-qr { margin: 0 auto; }
}

/* ============================================================
  21. T15 - Contact : formulaire + coordonnées + FAQ
   ============================================================ */

.contact-section { padding: 64px 0 80px; }
.contact-grid {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 40px;
}
.contact-form-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 36px;
}
.contact-form-card h2 { font-size: 24px; margin-bottom: 24px; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-size: 13px; font-weight: 600;
  margin-bottom: 6px; color: #000;
}
.form-group label .req { color: var(--rouge); margin-left: 4px; }
.form-group .err {
  font-size: 12px; color: var(--rouge); margin-top: 4px;
  display: none;
}
.form-group.is-error .err { display: block; }
.form-group.is-error input,
.form-group.is-error select,
.form-group.is-error textarea {
  border-color: var(--rouge);
  box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-rgpd {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 8px 0 22px;
  font-size: 13px; color: var(--gray-900);
  line-height: 1.5;
  cursor: pointer;
}
.form-rgpd input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.form-rgpd a { color: var(--or-fonce); text-decoration: underline; }
.form-rgpd.is-error { color: var(--rouge); }
.form-legal {
  font-size: 12px; font-style: italic; color: var(--fg-muted);
  margin-top: 14px; line-height: 1.5;
}
.form-success {
  display: none;
  padding: 22px 24px;
  background: var(--vert-bg);
  border-left: 4px solid #2d6e1d;
  border-radius: 6px;
  color: #1a4a0e;
}
.form-success.is-visible { display: block; }
.form-success strong { display: block; font-size: 16px; margin-bottom: 6px; }

/* Contact aside (coordonnées) */
.contact-aside { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 22px;
}
.contact-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--or-fonce);
  margin-bottom: 10px;
}
.contact-card .value {
  font-size: 16px; font-weight: 600; color: #000;
  line-height: 1.4;
  display: block;
}
.contact-card a.value { color: #000; text-decoration: none; }
.contact-card a.value:hover { color: var(--or-fonce); text-decoration: underline; text-underline-offset: 3px; }
.contact-card .meta { font-size: 13px; color: var(--fg-muted); margin-top: 6px; line-height: 1.4; }
.contact-socials {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.contact-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gray-100); color: #000;
  display: flex; align-items: center; justify-content: center;
  transition: all 150ms ease;
}
.contact-socials a:hover {
  background: var(--or); color: #000; text-decoration: none;
}
.contact-press {
  background: var(--or-clair);
  border-color: var(--or);
}
.contact-press .btn { width: 100%; margin-top: 12px; }
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}

/* Accordéon FAQ */
.faq-section { padding: 64px 0 80px; background: #fafafa; }
.faq-head { text-align: center; margin-bottom: 36px; }
.faq-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}
.faq-item[open] { border-color: var(--or-fonce); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  color: var(--or-fonce);
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item-body {
  padding: 0 22px 20px;
  color: var(--gray-900);
  font-size: 15px;
  line-height: 1.6;
}
.faq-foot { text-align: center; margin-top: 28px; }
.faq-foot a {
  color: var(--or-fonce);
  font-weight: 600;
  text-decoration: none;
}
.faq-foot a:hover {
  text-decoration: underline;
  text-decoration-color: var(--or-fonce);
  text-underline-offset: 3px;
}

/* Carte Google Maps (T15) */
.map-section { background: #000; padding: 0; }
.map-frame {
  width: 100%; height: 350px;
  border: 0;
  display: block;
  filter: grayscale(0.3);
}

/* Section head reused for product pages */
.section-head-centered { text-align: center; margin-bottom: 36px; }
.section-head-centered .eyebrow { justify-content: center; }
.section-head-centered h2 { font-size: clamp(24px, 2.6vw, 32px); }
.section-head-centered p { color: var(--fg-muted); max-width: 640px; margin: 12px auto 0; font-size: 16px; }


/* ============================================================
   AJOUTS WORDPRESS (gabarits page/single/404 + reprise inline accueil)
   ============================================================ */

/* Reprise du <style> inline de l'accueil (5 chiffres cles sur une ligne) */
.hero-stats { flex-wrap: nowrap; gap: 20px; }
.hero-stats > div { min-width: 0; }
.hero-stat-lbl { white-space: nowrap; }
@media (max-width: 600px) {
  .hero-stats { flex-wrap: wrap; gap: 16px 22px; }
  .hero-stat-lbl { white-space: normal; }
}

/* Conteneur de contenu WordPress (pages, articles, 404) */
.asrm-wp { padding: 64px 0 88px; }
.asrm-wp-narrow { max-width: 820px; }
.asrm-page-title {
  font-size: var(--h1);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.asrm-entry-content { font-size: 18px; line-height: 1.7; color: var(--fg); }
.asrm-entry-content > * + * { margin-top: 1.1em; }
.asrm-entry-content h2 { font-size: var(--h2); margin-top: 1.6em; letter-spacing: -0.01em; }
.asrm-entry-content h3 { font-size: var(--h3); margin-top: 1.4em; }
.asrm-entry-content a { color: var(--or-fonce-deep); text-decoration: underline; }
.asrm-entry-content img { max-width: 100%; height: auto; border-radius: var(--radius); }
.asrm-entry-content ul, .asrm-entry-content ol { padding-left: 1.4em; }
.asrm-entry-content blockquote {
  border-left: 4px solid var(--or);
  padding: 6px 0 6px 20px;
  margin-left: 0;
  color: var(--fg-muted);
  font-style: italic;
}

/* Liste d'articles (page de blog / actualites) */
.asrm-post-list { display: grid; gap: 28px; }
@media (min-width: 720px) { .asrm-post-list { grid-template-columns: repeat(2, 1fr); } }
.asrm-post-card {
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.asrm-post-meta { font-family: var(--font-mono); font-size: 13px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.asrm-post-title { font-size: 24px; line-height: 1.2; margin: 10px 0 12px; }
.asrm-post-title a { color: var(--fg); text-decoration: none; }
.asrm-post-title a:hover { color: var(--or-fonce-deep); }
.asrm-post-excerpt { color: var(--fg-muted); margin-bottom: 18px; }
.asrm-post-thumb { margin: 8px 0 28px; }
.asrm-post-thumb img { width: 100%; height: auto; border-radius: var(--radius-lg); }

/* Pagination */
.pagination { margin-top: 48px; display: flex; gap: 8px; flex-wrap: wrap; }
.pagination .page-numbers {
  display: inline-flex; min-width: 42px; height: 42px; align-items: center; justify-content: center;
  padding: 0 12px; border: 1px solid var(--rule); border-radius: var(--radius);
  text-decoration: none; color: var(--fg);
}
.pagination .page-numbers.current { background: var(--or); border-color: var(--or); font-weight: 700; }
