/* ====================================================================
   RPS.LU — FEUILLE DE STYLE CENTRALE
   ====================================================================
   Site         : rps.lu (Humental SARL Luxembourg)
   Version      : 1.2
   Date         : juin 2026
   Auteur       : Damien Portolano + Claude (Anthropic)

   ORGANISATION DU FICHIER
   ─────────────────────────────────────────────────────────────────────
   01. VARIABLES GLOBALES (:root) — couleurs, polices, espacements
   02. COMPOSANTS PARTAGÉS — eyebrow, btn, reveal, container
   03. PAGE — Mockup / Accueil (.rps-home — sans wrapper)
   04. PAGE — Cadre Légal RPS
   05. PAGE — À Propos (.rps-about)
   06. PAGE — Contact (.rps-contact)
   07. PAGE — Notre Approche (.rps-approach)
   08. PAGE — Notre Méthode (.rps-methode)
   09. PAGE — Définition des RPS (.rps-def)
   10. PAGE — Fiches Thématiques (.rps-themes)
   11. PAGE — Nos Expertises (.rps-expertises)
   12. PAGE — Mentions Légales (.rps-legal)
   13. PAGE — Politique de Confidentialité (.rps-privacy)
   14. PAGE — 404 (.rps-404)
   15. PAGE — Pourquoi Agir Maintenant (.rps-agir)
   16. FICHES RPS — Template partagé (.rps-fiche)
       Utilisé par les 10 fiches : burn-out, stress, charge mentale,
       conflits, bore-out, brown-out, workaholisme, harcèlement moral,
       harcèlement sexuel, détresse psychologique
   17. PAGE — Offres & Tarifs (.rps-offres)
   18. SECTIONS CONVERSION — intégration Offres dans pages existantes
       (.rps-home .start-here, .rps-expertises .conversion-banner,
        .rps-fiche .fiche-conversion, .rps-contact .contact-offers-reminder)

   NOTES TECHNIQUES
   ─────────────────────────────────────────────────────────────────────
   - Chaque page est wrappée dans une classe unique (ex: .rps-about)
     pour scoper les styles et éviter les conflits.
   - Les variables CSS (:root) sont définies UNE SEULE FOIS au début
     et sont accessibles dans toutes les sections.
   - Les composants partagés (.btn, .eyebrow, .reveal) sont définis
     dans chaque scope de page pour rester explicites et maintenables.
   ==================================================================== */


/* ╔══════════════════════════════════════════════════════════════════╗
   ║  01. VARIABLES GLOBALES                                          ║
   ║  ────────────────────────────────────────────────────────────── ║
   ║  Toutes les couleurs, typos, espacements et ombres du site.      ║
   ║  Modifier une valeur ici = changement sur TOUT le site.          ║
   ╚══════════════════════════════════════════════════════════════════╝ */

:root {
  /* ─── COULEURS PRINCIPALES ─── */
  --rps-navy:        #0D1B3D;  /* Bleu marine profond — titres, fonds sombres */
  --rps-navy-soft:   #1a2a52;  /* Navy adouci — dégradés */
  --rps-navy-deep:   #061026;  /* Navy très foncé — dégradés profonds */

  --rps-blue:        #1E3A8A;  /* Bleu principal — liens, accents */
  --rps-blue-light:  #2d4eb8;  /* Bleu clair — hover */

  --rps-green:       #46B06D;  /* Vert RPS — CTA principal, succès */
  --rps-green-soft:  #5cc384;  /* Vert clair — accents */
  --rps-green-deep:  #2d7a4a;  /* Vert foncé — hover CTA */

  /* ─── COULEURS SECONDAIRES ─── */
  --rps-amber:       #d97706;  /* Ambre — avertissements */
  --rps-amber-soft:  #fef3c7;  /* Ambre clair — fonds */
  --rps-amber-deep:  #92400e;  /* Ambre foncé — texte sur fond clair */

  --rps-red:         #dc2626;  /* Rouge — alertes, urgences */
  --rps-red-soft:    #fef2f2;  /* Rouge clair — fonds */
  --rps-red-deep:    #991b1b;  /* Rouge foncé — texte sur fond clair */

  --rps-purple:      #7c3aed;  /* Violet — catégorie "Crises" */
  --rps-purple-soft: #ede9fe;  /* Violet clair — fonds */

  /* ─── ÉCHELLE DE GRIS ─── */
  --rps-grey-50:     #F8F9FB;  /* Fonds très clairs */
  --rps-grey-100:    #F2F4F7;  /* Fonds clairs */
  --rps-grey-200:    #E5E8EE;  /* Bordures, séparateurs */
  --rps-grey-300:    #CBD5E1;  /* Bordures plus marquées */
  --rps-grey-400:    #94A3B8;  /* Texte tertiaire */
  --rps-grey-500:    #64748B;  /* Texte secondaire */
  --rps-grey-600:    #475569;  /* Texte principal "soft" */
  --rps-grey-800:    #1E293B;  /* Texte principal */
  --rps-white:       #FFFFFF;

  /* ─── TYPOGRAPHIES ─── */
  --font-display:    'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:      'Cormorant Garamond', Georgia, serif;
  --font-mono:       'JetBrains Mono', 'SF Mono', 'Consolas', monospace;

  /* ─── DIMENSIONS ─── */
  --container:       1200px;   /* Largeur max par défaut */
  --container-sm:    880px;    /* Largeur réduite pour textes longs */
  --container-xs:    720px;    /* Largeur très réduite */

  /* ─── RAYONS DE BORDURE ─── */
  --radius-sm:       6px;      /* Boutons, petits éléments */
  --radius:          12px;     /* Cards, blocs */
  --radius-lg:       20px;     /* Sections importantes */
  --radius-xl:       28px;     /* Hero, blocs majeurs */

  /* ─── OMBRES ─── */
  --shadow-sm:       0 2px 8px rgba(13, 27, 61, 0.06);
  --shadow:          0 4px 16px rgba(13, 27, 61, 0.08);
  --shadow-lg:       0 12px 40px rgba(13, 27, 61, 0.12);
  --shadow-xl:       0 24px 60px rgba(13, 27, 61, 0.16);

  /* ─── TRANSITIONS ─── */
  --ease:            cubic-bezier(0.22, 1, 0.36, 1);
  --ease-back:       cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ╔══════════════════════════════════════════════════════════════════╗
   ║  02. PATTERNS PARTAGÉS — Mixins de base                          ║
   ║  ────────────────────────────────────────────────────────────── ║
   ║  Ces patterns sont répétés dans CHAQUE wrapper de page car ils   ║
   ║  doivent être scopés. Modifier ici = pas d'effet, il faut        ║
   ║  modifier dans chaque scope (.rps-about, .rps-methode, etc.)     ║
   ╚══════════════════════════════════════════════════════════════════╝ */

/* Box-sizing universel pour tous les wrappers */
.rps-home *, .rps-about *, .rps-contact *, .rps-approach *,
.rps-methode *, .rps-def *, .rps-themes *, .rps-expertises *,
.rps-legal *, .rps-privacy *, .rps-404 *, .rps-agir *, .rps-fiche *,
.rps-offres * {
  box-sizing: border-box;
}

/* Base typographique partagée */
.rps-home, .rps-about, .rps-contact, .rps-approach,
.rps-methode, .rps-def, .rps-themes, .rps-expertises,
.rps-legal, .rps-privacy, .rps-404, .rps-agir, .rps-fiche,
.rps-offres {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--rps-grey-800);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Titres partagés */
.rps-home h1, .rps-home h2, .rps-home h3, .rps-home h4, .rps-home h5,
.rps-about h1, .rps-about h2, .rps-about h3, .rps-about h4, .rps-about h5,
.rps-contact h1, .rps-contact h2, .rps-contact h3, .rps-contact h4,
.rps-approach h1, .rps-approach h2, .rps-approach h3, .rps-approach h4,
.rps-methode h1, .rps-methode h2, .rps-methode h3, .rps-methode h4,
.rps-def h1, .rps-def h2, .rps-def h3, .rps-def h4,
.rps-themes h1, .rps-themes h2, .rps-themes h3, .rps-themes h4,
.rps-expertises h1, .rps-expertises h2, .rps-expertises h3, .rps-expertises h4,
.rps-legal h1, .rps-legal h2, .rps-legal h3, .rps-legal h4,
.rps-privacy h1, .rps-privacy h2, .rps-privacy h3, .rps-privacy h4,
.rps-404 h1, .rps-404 h2, .rps-404 h3, .rps-404 h4,
.rps-agir h1, .rps-agir h2, .rps-agir h3, .rps-agir h4, .rps-agir h5,
.rps-fiche h1, .rps-fiche h2, .rps-fiche h3, .rps-fiche h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rps-navy);
  margin: 0;
}

/* Paragraphes et liens partagés */
.rps-home p, .rps-about p, .rps-contact p, .rps-approach p,
.rps-methode p, .rps-def p, .rps-themes p, .rps-expertises p,
.rps-legal p, .rps-privacy p, .rps-404 p, .rps-agir p, .rps-fiche p {
  margin: 0;
}

.rps-home a, .rps-about a, .rps-contact a, .rps-approach a,
.rps-methode a, .rps-def a, .rps-themes a, .rps-expertises a,
.rps-legal a, .rps-privacy a, .rps-404 a, .rps-agir a, .rps-fiche a {
  color: inherit;
  text-decoration: none;
}

/* Conteneurs partagés */
.rps-home .container, .rps-about .container, .rps-contact .container,
.rps-approach .container, .rps-methode .container, .rps-def .container,
.rps-themes .container, .rps-expertises .container, .rps-legal .container,
.rps-privacy .container, .rps-404 .container, .rps-agir .container,
.rps-fiche .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.rps-about .container--narrow, .rps-contact .container--narrow,
.rps-approach .container--narrow, .rps-methode .container--narrow,
.rps-def .container--narrow, .rps-themes .container--narrow,
.rps-expertises .container--narrow, .rps-legal .container--narrow,
.rps-privacy .container--narrow, .rps-agir .container--narrow,
.rps-fiche .container--narrow {
  max-width: var(--container-sm);
}


/* ╔══════════════════════════════════════════════════════════════════╗
   ║  ANIMATIONS GLOBALES — Réutilisées partout                       ║
   ╚══════════════════════════════════════════════════════════════════╝ */

@keyframes rps-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes rps-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ╔══════════════════════════════════════════════════════════════════╗
   ║  03. PAGE — Mockup / Accueil (rps-mockup.html)                   ║
   ║  ────────────────────────────────────────────────────────────── ║
   ║  Cette page utilise des classes GLOBALES (sans wrapper).         ║
   ║  Attention si tu intègres dans WordPress : encapsule-la dans     ║
   ║  un wrapper .rps-home pour éviter les conflits avec le thème.    ║
   ╚══════════════════════════════════════════════════════════════════╝ */

/* CSS extrait de : rps-mockup.html
   ATTENTION : Cette page utilisait du CSS global. Pour la centralisation,
   il est recommandé de wrapper tout le contenu dans <div class="rps-home">.
   En attendant, on garde le CSS quasi-global mais préfixé par .rps-home
   pour éviter toute pollution. */

.rps-home * { box-sizing: border-box; }

.rps-home {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--rps-grey-800);
  -webkit-font-smoothing: antialiased;
}

/* Reveal animations */
.rps-home .reveal,
.rps-about .reveal,
.rps-contact .reveal,
.rps-approach .reveal,
.rps-methode .reveal,
.rps-def .reveal,
.rps-themes .reveal,
.rps-expertises .reveal,
.rps-legal .reveal,
.rps-privacy .reveal,
.rps-404 .reveal,
.rps-agir .reveal,
.rps-fiche .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.rps-home .reveal.visible,
.rps-about .reveal.visible,
.rps-contact .reveal.visible,
.rps-approach .reveal.visible,
.rps-methode .reveal.visible,
.rps-def .reveal.visible,
.rps-themes .reveal.visible,
.rps-expertises .reveal.visible,
.rps-legal .reveal.visible,
.rps-privacy .reveal.visible,
.rps-404 .reveal.visible,
.rps-agir .reveal.visible,
.rps-fiche .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delays uniformes */
.rps-home .reveal[data-delay="1"], .rps-about .reveal[data-delay="1"],
.rps-contact .reveal[data-delay="1"], .rps-approach .reveal[data-delay="1"],
.rps-methode .reveal[data-delay="1"], .rps-def .reveal[data-delay="1"],
.rps-themes .reveal[data-delay="1"], .rps-expertises .reveal[data-delay="1"],
.rps-legal .reveal[data-delay="1"], .rps-privacy .reveal[data-delay="1"],
.rps-404 .reveal[data-delay="1"], .rps-agir .reveal[data-delay="1"],
.rps-fiche .reveal[data-delay="1"] { transition-delay: 0.08s; }

.rps-home .reveal[data-delay="2"], .rps-about .reveal[data-delay="2"],
.rps-contact .reveal[data-delay="2"], .rps-approach .reveal[data-delay="2"],
.rps-methode .reveal[data-delay="2"], .rps-def .reveal[data-delay="2"],
.rps-themes .reveal[data-delay="2"], .rps-expertises .reveal[data-delay="2"],
.rps-legal .reveal[data-delay="2"], .rps-privacy .reveal[data-delay="2"],
.rps-404 .reveal[data-delay="2"], .rps-agir .reveal[data-delay="2"],
.rps-fiche .reveal[data-delay="2"] { transition-delay: 0.16s; }

.rps-home .reveal[data-delay="3"], .rps-about .reveal[data-delay="3"],
.rps-contact .reveal[data-delay="3"], .rps-approach .reveal[data-delay="3"],
.rps-methode .reveal[data-delay="3"], .rps-def .reveal[data-delay="3"],
.rps-themes .reveal[data-delay="3"], .rps-expertises .reveal[data-delay="3"],
.rps-legal .reveal[data-delay="3"], .rps-privacy .reveal[data-delay="3"],
.rps-404 .reveal[data-delay="3"], .rps-agir .reveal[data-delay="3"],
.rps-fiche .reveal[data-delay="3"] { transition-delay: 0.24s; }

.rps-agir .reveal[data-delay="4"] { transition-delay: 0.32s; }
.rps-agir .reveal[data-delay="5"] { transition-delay: 0.4s; }

/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  03. PAGE — Accueil / Home
   ║  Wrapper : (global, à wrapper si possible)
   ╚════════════════════════════════════════════════════════════════════════╝ */

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--rps-grey-800);
  background: var(--rps-white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rps-navy);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   COMPOSANTS GÉNÉRIQUES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--rps-blue);
  color: var(--rps-white);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
}
.btn--primary:hover {
  background: var(--rps-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 27, 61, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--rps-navy);
  border: 1.5px solid var(--rps-grey-200);
}
.btn--ghost:hover {
  border-color: var(--rps-navy);
  background: var(--rps-grey-50);
}
.btn--light {
  background: var(--rps-white);
  color: var(--rps-navy);
}
.btn--light:hover {
  background: var(--rps-grey-100);
  transform: translateY(-2px);
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rps-green);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--rps-grey-600);
  max-width: 720px;
}

/* ============================================
   ANIMATIONS — micro-interactions douces
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--rps-grey-200);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
}
.header__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--rps-navy);
}
.header__logo-sub {
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rps-grey-600);
  display: block;
  margin-top: -2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--rps-grey-800);
  transition: color 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rps-green);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  transform-origin: left;
}
.nav__link:hover {
  color: var(--rps-navy);
}
.nav__link:hover::after {
  transform: scaleX(1);
}

.header__cta {
  padding: 11px 22px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--rps-navy);
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: white;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: white;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(70, 176, 109, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(30, 58, 138, 0.05), transparent 60%),
    var(--rps-white);
}

/* Lignes décoratives subtiles (le motif des "vagues" du logo) */
.hero::before {
  content: '';
  position: absolute;
  right: -10%;
  top: 20%;
  width: 600px;
  height: 600px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath d='M0,100 Q100,80 200,100 T400,100' stroke='%231E3A8A' stroke-width='1.5' fill='none' opacity='0.15'/%3E%3Cpath d='M0,140 Q100,120 200,140 T400,140' stroke='%2346B06D' stroke-width='1.5' fill='none' opacity='0.15'/%3E%3Cpath d='M0,180 Q100,160 200,180 T400,180' stroke='%231E3A8A' stroke-width='1.5' fill='none' opacity='0.1'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(70, 176, 109, 0.1);
  border: 1px solid rgba(70, 176, 109, 0.25);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--rps-green);
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--rps-green);
  border-radius: 50%;
  animation: float 2s ease-in-out infinite;
}

.hero__title {
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero__title span:nth-child(2) { color: var(--rps-blue); }
.hero__title span:nth-child(3) { color: var(--rps-green); }

.hero__subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rps-grey-600);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__trust {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rps-grey-200);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--rps-grey-600);
}
.hero__trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--rps-green);
  flex-shrink: 0;
}

/* Visuel hero — placeholder pour photo "humain en réunion" */
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero__visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background:
    linear-gradient(135deg, rgba(13, 27, 61, 0.35), rgba(30, 58, 138, 0.15)),
    url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=800&q=80") center/cover;
}
.hero__visual-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__visual-overlay-icon {
  width: 44px;
  height: 44px;
  background: var(--rps-green);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: white;
}
.hero__visual-overlay-text {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.4;
  color: var(--rps-navy);
}
.hero__visual-overlay-text strong {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
}

/* Carte flottante */
.hero__card-float {
  position: absolute;
  top: 8%;
  left: -8%;
  background: white;
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: float 4s ease-in-out infinite;
}
.hero__card-float-icon {
  width: 40px;
  height: 40px;
  background: rgba(30, 58, 138, 0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--rps-blue);
}
.hero__card-float-text {
  font-size: 13px;
  color: var(--rps-grey-600);
}
.hero__card-float-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--rps-navy);
  font-weight: 700;
}

/* ============================================
   BANDE PILIERS
   ============================================ */
.pillars {
  padding: 60px 0;
  background: var(--rps-grey-50);
  border-top: 1px solid var(--rps-grey-200);
  border-bottom: 1px solid var(--rps-grey-200);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pillar__icon {
  width: 44px;
  height: 44px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--rps-blue);
  transition: all 0.3s var(--ease);
}
.pillar:hover .pillar__icon {
  background: var(--rps-blue);
  color: white;
  transform: translateY(-3px);
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--rps-navy);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.pillar__text {
  font-size: 13.5px;
  color: var(--rps-grey-600);
  line-height: 1.55;
}

/* ============================================
   CONSTAT — chiffres
   ============================================ */
.constat {
  padding: 120px 0;
  background: var(--rps-white);
}
.constat__head {
  text-align: center;
  margin-bottom: 64px;
}
.constat__head .eyebrow {
  justify-content: center;
}
.constat__head .section-intro {
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.stat {
  padding: 36px 28px;
  background: var(--rps-grey-50);
  border-radius: var(--radius);
  border: 1px solid var(--rps-grey-200);
  text-align: left;
  transition: all 0.3s var(--ease);
}
.stat:hover {
  border-color: var(--rps-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.stat__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: var(--rps-navy);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.stat__number span {
  color: var(--rps-green);
  font-size: 32px;
}
.stat__label {
  font-size: 14px;
  color: var(--rps-grey-600);
  line-height: 1.5;
}

.legal-banner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 48px;
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-blue) 100%);
  border-radius: var(--radius-lg);
  color: white;
  position: relative;
  overflow: hidden;
}
.legal-banner::before {
  content: '';
  position: absolute;
  right: -20%;
  top: -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.15), transparent 70%);
  pointer-events: none;
}
.legal-banner__icon {
  width: 64px;
  height: 64px;
  background: rgba(70, 176, 109, 0.2);
  border: 1.5px solid var(--rps-green);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--rps-green-soft);
  position: relative;
  z-index: 1;
}
.legal-banner__content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.legal-banner__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: white;
  margin-bottom: 8px;
}
.legal-banner__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
.legal-banner__text strong {
  color: var(--rps-green-soft);
  font-weight: 600;
}

/* ============================================
   APPROCHE — méthode en étapes
   ============================================ */
.approche {
  padding: 120px 0;
  background: var(--rps-grey-50);
}
.approche__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.approche__intro h2 {
  margin-bottom: 24px;
}
.approche__intro p {
  font-size: 17px;
  color: var(--rps-grey-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rps-grey-200);
  position: relative;
  transition: all 0.3s var(--ease);
}
.step:last-child { border-bottom: none; }
.step:hover { padding-left: 12px; }
.step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--rps-grey-200);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  transition: color 0.3s var(--ease);
}
.step:hover .step__num { color: var(--rps-green); }
.step__content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.step__content p {
  font-size: 14.5px;
  color: var(--rps-grey-600);
  line-height: 1.6;
}

/* ============================================
   EXPERTISES — 3 cards principales
   ============================================ */
.expertises {
  padding: 120px 0;
  background: var(--rps-white);
}
.expertises__head {
  text-align: center;
  margin-bottom: 64px;
}
.expertises__head .eyebrow { justify-content: center; }
.expertises__head .section-intro { margin: 0 auto; }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.expertise-card {
  position: relative;
  padding: 40px 32px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rps-blue), var(--rps-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.expertise-card:hover {
  border-color: var(--rps-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.expertise-card:hover::before { transform: scaleX(1); }

.expertise-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--rps-blue);
  margin-bottom: 24px;
  transition: all 0.3s var(--ease);
}
.expertise-card:hover .expertise-card__icon {
  background: var(--rps-blue);
  color: white;
}
.expertise-card__title {
  font-size: 22px;
  margin-bottom: 12px;
}
.expertise-card__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--rps-green);
  margin-bottom: 20px;
  font-weight: 500;
}
.expertise-card__text {
  font-size: 14.5px;
  color: var(--rps-grey-600);
  line-height: 1.65;
  margin-bottom: 24px;
}
.expertise-card__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--rps-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease);
}
.expertise-card__link:hover { gap: 12px; }

/* ============================================
   POUR QUI
   ============================================ */
.pour-qui {
  padding: 120px 0;
  background: var(--rps-grey-50);
  position: relative;
  overflow: hidden;
}
.pour-qui__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.pour-qui__text h2 {
  margin-bottom: 24px;
}
.pour-qui__text p {
  font-size: 17px;
  color: var(--rps-grey-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.sector {
  padding: 22px 24px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.sector:hover {
  border-color: var(--rps-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.sector__icon {
  width: 38px;
  height: 38px;
  background: var(--rps-grey-100);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--rps-blue);
  transition: all 0.3s var(--ease);
}
.sector:hover .sector__icon {
  background: var(--rps-green);
  color: white;
}
.sector__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--rps-navy);
}

/* ============================================
   RESSOURCES — fiches RPS
   ============================================ */
.ressources {
  padding: 120px 0;
  background: var(--rps-white);
}
.ressources__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
  flex-wrap: wrap;
}
.ressources__head-text { max-width: 600px; }

.fiches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fiche {
  display: block;
  padding: 32px 28px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.fiche:hover {
  border-color: var(--rps-navy);
  background: var(--rps-navy);
  color: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.fiche__num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--rps-green);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.fiche__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  color: var(--rps-navy);
  margin-bottom: 16px;
  transition: color 0.3s var(--ease);
}
.fiche:hover .fiche__title { color: white; }
.fiche__excerpt {
  font-size: 14px;
  color: var(--rps-grey-600);
  line-height: 1.6;
  margin-bottom: 20px;
  transition: color 0.3s var(--ease);
}
.fiche:hover .fiche__excerpt { color: rgba(255, 255, 255, 0.75); }
.fiche__cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--rps-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.fiche:hover .fiche__cta {
  color: var(--rps-green-soft);
  gap: 12px;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: 120px 0;
  background: var(--rps-navy);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-final::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.3), transparent 60%);
  pointer-events: none;
}
.cta-final__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-final h2 {
  color: white;
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 24px;
}
.cta-final h2 span {
  color: var(--rps-green-soft);
}
.cta-final p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-final__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-final__reassurance {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-final__reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #060d22;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand .header__logo-text { color: white; }
.footer__brand .header__logo-sub { color: rgba(255, 255, 255, 0.5); }
.footer__about {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 320px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 12px; }
.footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--rps-green-soft); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--rps-green);
  flex-shrink: 0;
}

/* Mention discrète Humental */
.footer__humental {
  margin-top: 24px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.5;
}
.footer__humental strong { color: white; }
.footer__humental a {
  color: var(--rps-green-soft);
  font-weight: 500;
}
.footer__humental a:hover { text-decoration: underline; }

.footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__card-float { display: none; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .approche__layout,
  .pour-qui__inner { grid-template-columns: 1fr; gap: 48px; }
  .expertise-grid { grid-template-columns: 1fr; }
  .fiches-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav, .header__cta { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding: 130px 0 80px; }
  .hero__title { font-size: 40px; }
  .legal-banner { flex-direction: column; padding: 32px 28px; text-align: center; align-items: center; }
  .pillars__grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .fiches-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}


/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  04. PAGE — Cadre Légal RPS
   ║  Wrapper : (global, à wrapper si possible)
   ╚════════════════════════════════════════════════════════════════════════╝ */

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--rps-grey-800);
  background: var(--rps-white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rps-navy);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--container-sm);
}

/* ============================================
   COMPOSANTS GÉNÉRIQUES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--rps-blue);
  color: var(--rps-white);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
}
.btn--primary:hover {
  background: var(--rps-navy);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--rps-navy);
  border: 1.5px solid var(--rps-grey-200);
}
.btn--ghost:hover {
  border-color: var(--rps-navy);
  background: var(--rps-grey-50);
}
.btn--light {
  background: var(--rps-white);
  color: var(--rps-navy);
}
.btn--light:hover {
  background: var(--rps-grey-100);
  transform: translateY(-2px);
}
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rps-green);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
}

.section-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--rps-grey-600);
  max-width: 720px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ============================================
   HERO PAGE
   ============================================ */
.page-hero {
  position: relative;
  padding: 80px 0 80px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(30, 58, 138, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(70, 176, 109, 0.05), transparent 60%),
    var(--rps-grey-50);
  overflow: hidden;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--rps-grey-600);
  margin-bottom: 24px;
  font-family: var(--font-display);
}
.page-hero__breadcrumb a {
  color: var(--rps-grey-600);
  transition: color 0.2s;
}
.page-hero__breadcrumb a:hover { color: var(--rps-blue); }
.page-hero__breadcrumb-sep {
  color: var(--rps-grey-400);
}
.page-hero__inner {
  max-width: 880px;
}
.page-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  margin-bottom: 24px;
}
.page-hero__title strong {
  color: var(--rps-blue);
  font-weight: 700;
}
.page-hero__subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rps-grey-600);
  margin-bottom: 36px;
  max-width: 720px;
}
.page-hero__meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--rps-grey-200);
}
.page-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--rps-grey-600);
  font-family: var(--font-display);
}
.page-hero__meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--rps-blue);
  flex-shrink: 0;
}
.page-hero__meta-item strong {
  color: var(--rps-navy);
  font-weight: 600;
}

/* ============================================
   TOC — Sommaire latéral / horizontal
   ============================================ */
.toc-section {
  padding: 48px 0;
  background: var(--rps-white);
  border-bottom: 1px solid var(--rps-grey-100);
}
.toc-card {
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  padding: 32px 40px;
}
.toc-card__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-card__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rps-green);
}
.toc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  list-style: none;
  counter-reset: toc;
}
.toc-list li {
  counter-increment: toc;
}
.toc-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--rps-navy);
  transition: all 0.2s var(--ease);
}
.toc-list a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--rps-green);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 28px;
}
.toc-list a:hover {
  color: var(--rps-blue);
  padding-left: 8px;
}

/* ============================================
   SECTION GÉNÉRIQUE CONTENU
   ============================================ */
.content {
  padding: 80px 0;
}
.content--alt {
  background: var(--rps-grey-50);
}
.content__head {
  margin-bottom: 48px;
}

/* Articles de loi : cards */
.law-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.law-card {
  padding: 32px 28px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.law-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--rps-blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.law-card:hover {
  border-color: var(--rps-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.law-card:hover::before { transform: scaleY(1); }

.law-card__article {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(30, 58, 138, 0.08);
  color: var(--rps-blue);
  border-radius: 100px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.law-card__title {
  font-size: 19px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.law-card__text {
  font-size: 14.5px;
  color: var(--rps-grey-600);
  line-height: 1.65;
}

/* ============================================
   PYRAMIDE DES OBLIGATIONS
   ============================================ */
.obligations {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.obligations__text h2 {
  margin-bottom: 24px;
}
.obligations__text p {
  font-size: 17px;
  color: var(--rps-grey-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.obligations__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.obligation-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rps-grey-200);
  transition: padding 0.3s var(--ease);
}
.obligation-item:last-child { border-bottom: none; }
.obligation-item:hover { padding-left: 12px; }
.obligation-item__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--rps-grey-200);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  transition: color 0.3s var(--ease);
}
.obligation-item:hover .obligation-item__num { color: var(--rps-green); }
.obligation-item__content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.obligation-item__content p {
  font-size: 14.5px;
  color: var(--rps-grey-600);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   SECTION HARCÈLEMENT (loi 2023)
   ============================================ */
.harassment-banner {
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-blue) 100%);
  border-radius: var(--radius-lg);
  color: white;
  padding: 56px 56px;
  position: relative;
  overflow: hidden;
  margin-bottom: 56px;
}
.harassment-banner::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.15), transparent 70%);
  pointer-events: none;
}
.harassment-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.harassment-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(70, 176, 109, 0.2);
  border: 1px solid var(--rps-green);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--rps-green-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.harassment-banner h2 {
  color: white;
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 16px;
}
.harassment-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
}
.harassment-banner p strong {
  color: var(--rps-green-soft);
  font-weight: 600;
}

.harassment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.harassment-card {
  padding: 32px 28px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}
.harassment-card:hover {
  border-color: var(--rps-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.harassment-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--rps-blue);
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}
.harassment-card:hover .harassment-card__icon {
  background: var(--rps-blue);
  color: white;
}
.harassment-card h4 {
  font-size: 17px;
  margin-bottom: 12px;
}
.harassment-card p {
  font-size: 14.5px;
  color: var(--rps-grey-600);
  line-height: 1.6;
}

/* ============================================
   SANCTIONS — chiffres
   ============================================ */
.sanctions {
  position: relative;
}
.sanctions__intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}
.sanctions__intro h2 {
  margin-bottom: 24px;
}
.sanctions__intro p {
  font-size: 17px;
  color: var(--rps-grey-600);
  line-height: 1.7;
}
.sanctions-stat-card {
  padding: 40px 36px;
  background: var(--rps-red-soft);
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  text-align: center;
}
.sanctions-stat-card__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  color: var(--rps-red);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.sanctions-stat-card__amount span {
  font-size: 36px;
}
.sanctions-stat-card__label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: #991b1b;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sanctions-stat-card__detail {
  font-size: 13.5px;
  color: var(--rps-grey-600);
  line-height: 1.5;
}

.sanctions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sanction-card {
  padding: 32px 28px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sanction-card__type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--rps-amber-soft);
  color: var(--rps-amber);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: flex-start;
}
.sanction-card__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--rps-navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.sanction-card__desc {
  font-size: 14px;
  color: var(--rps-grey-600);
  line-height: 1.6;
}

/* ============================================
   QUIZ / DIAGNOSTIC RAPIDE
   ============================================ */
.diagnostic-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px;
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-navy-soft) 100%);
  border-radius: var(--radius-lg);
  color: white;
  position: relative;
  overflow: hidden;
}
.diagnostic-banner::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.12), transparent 70%);
  pointer-events: none;
}
.diagnostic-banner__content { position: relative; z-index: 1; }
.diagnostic-banner__content h2 {
  color: white;
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 20px;
}
.diagnostic-banner__content h2 span { color: var(--rps-green-soft); }
.diagnostic-banner__content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}
.diagnostic-banner__checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.diagnostic-banner__check {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  transition: all 0.3s var(--ease);
}
.diagnostic-banner__check:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--rps-green);
}
.diagnostic-banner__check-icon {
  width: 32px;
  height: 32px;
  background: rgba(70, 176, 109, 0.2);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--rps-green-soft);
  flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item:hover {
  border-color: var(--rps-blue);
  box-shadow: var(--shadow);
}
.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--rps-navy);
  cursor: pointer;
}
.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rps-grey-100);
  display: grid;
  place-items: center;
  color: var(--rps-blue);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-item__icon {
  background: var(--rps-blue);
  color: white;
  transform: rotate(45deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-item__answer {
  max-height: 500px;
}
.faq-item__answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--rps-grey-600);
  line-height: 1.7;
}
.faq-item__answer-inner strong {
  color: var(--rps-navy);
}

@media (max-width: 768px) {

  /* ─── FAQ mobile : titres lisibles sur plusieurs lignes ─── */

  /* Le bouton question s'adapte sur plusieurs lignes */
  .faq-item__question {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    font-size: 0.9375rem;          /* 15px au lieu de la taille actuelle */
    line-height: 1.45;
    text-align: left;
    align-items: flex-start;       /* Aligne l'icône + en haut, pas centré */
    gap: 12px;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-right: 18px;
    padding-left: 18px;
    min-height: auto;
  }

  /* L'icône + reste compacte et alignée en haut */
  .faq-item__icon {
    flex-shrink: 0;
    margin-top: 4px;
    width: 28px;
    height: 28px;
  }

  /* Le conteneur de la FAQ ne cache pas le débordement */
  .faq-item {
    overflow: visible;
  }

  /* Ajustement de la réponse aussi pour mobile */
  .faq-item__answer-inner {
    font-size: 0.9375rem;
    line-height: 1.6;
    padding: 0 18px 18px;
  }
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: 120px 0;
  background: var(--rps-navy);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.12), transparent 60%);
}
.cta-final__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-final h2 {
  color: white;
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 20px;
}
.cta-final h2 span { color: var(--rps-green-soft); }
.cta-final p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
}
.cta-final__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .toc-list { grid-template-columns: 1fr; }
  .obligations,
  .sanctions__intro,
  .diagnostic-banner { grid-template-columns: 1fr; gap: 40px; }
  .law-grid,
  .harassment-grid,
  .sanctions-grid { grid-template-columns: 1fr; }
  .harassment-banner,
  .diagnostic-banner { padding: 40px 32px; }
}

@media (max-width: 768px) {
  .page-hero { padding: 60px 0 60px; }
  .page-hero__meta { gap: 16px; }
  .content { padding: 60px 0; }
  .toc-card { padding: 24px 24px; }
}


/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  05. PAGE — À Propos
   ║  Wrapper : .rps-about
   ╚════════════════════════════════════════════════════════════════════════╝ */

.rps-about {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--rps-grey-800);
  -webkit-font-smoothing: antialiased;
}
.rps-about h1, .rps-about h2, .rps-about h3, .rps-about h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rps-navy);
  margin: 0;
}
.rps-about p { margin: 0; }
.rps-about a { color: inherit; text-decoration: none; }
.rps-about button { font-family: inherit; cursor: pointer; border: none; background: none; }

.rps-about .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.rps-about .container--narrow { max-width: var(--container-sm); }

/* ============================================
   COMPOSANTS GÉNÉRIQUES
   ============================================ */
.rps-about .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.rps-about .btn--primary {
  background: var(--rps-blue);
  color: var(--rps-white);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
}
.rps-about .btn--primary:hover { background: var(--rps-navy); transform: translateY(-2px); }
.rps-about .btn--green { background: var(--rps-green); color: var(--rps-white); box-shadow: 0 4px 12px rgba(70, 176, 109, 0.3); }
.rps-about .btn--green:hover { background: #3a9659; transform: translateY(-2px); }
.rps-about .btn--ghost { background: transparent; color: var(--rps-navy); border: 1.5px solid var(--rps-grey-200); }
.rps-about .btn--ghost:hover { border-color: var(--rps-navy); background: var(--rps-grey-50); }
.rps-about .btn--light { background: var(--rps-white); color: var(--rps-navy); }
.rps-about .btn--light:hover { background: var(--rps-grey-100); transform: translateY(-2px); }
.rps-about .btn .arrow { transition: transform 0.3s var(--ease); }
.rps-about .btn:hover .arrow { transform: translateX(4px); }

.rps-about .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 16px;
}
.rps-about .eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rps-green);
}

.rps-about .section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
}
.rps-about .section-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--rps-grey-600);
  max-width: 760px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.rps-about .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.rps-about .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.rps-about .reveal[data-delay="1"] { transition-delay: 0.1s; }
.rps-about .reveal[data-delay="2"] { transition-delay: 0.2s; }
.rps-about .reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ============================================
   HERO
   ============================================ */
.rps-about .hero {
  position: relative;
  padding: 80px 0 80px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(30, 58, 138, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(70, 176, 109, 0.05), transparent 60%),
    var(--rps-grey-50);
  overflow: hidden;
}
.rps-about .hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--rps-grey-600);
  margin-bottom: 24px;
  font-family: var(--font-display);
  flex-wrap: wrap;
}
.rps-about .hero__breadcrumb a { color: var(--rps-grey-600); transition: color 0.2s; }
.rps-about .hero__breadcrumb a:hover { color: var(--rps-blue); }
.rps-about .hero__breadcrumb-sep { color: var(--rps-grey-400); }

.rps-about .hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.rps-about .hero__title {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  margin-bottom: 24px;
}
.rps-about .hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--rps-blue);
  font-size: clamp(46px, 6.1vw, 70px);
}
.rps-about .hero__subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rps-grey-600);
  margin-bottom: 36px;
  max-width: 600px;
}

.rps-about .hero__signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--rps-navy);
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--rps-grey-200);
}
.rps-about .hero__signature::before {
  content: '"';
  font-size: 56px;
  line-height: 0.6;
  color: var(--rps-green);
  margin-right: 6px;
  vertical-align: -0.2em;
}

/* Photo Damien dans le hero */
.rps-about .hero__portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.rps-about .hero__portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background:
    url("/wp-content/uploads/2026/05/damien_1272x1920.webp") top/cover;
}
.rps-about .hero__portrait-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-sm);
}
.rps-about .hero__portrait-caption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--rps-navy);
  margin-bottom: 4px;
}
.rps-about .hero__portrait-caption span {
  font-size: 13px;
  color: var(--rps-grey-600);
}

/* ============================================
   STORY — Le déclic 2016
   ============================================ */
.rps-about .story {
  padding: 100px 0;
  background: var(--rps-white);
}
.rps-about .story__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.rps-about .story__aside {
  position: sticky;
  top: 100px;
}
.rps-about .story__aside h2 {
  margin-bottom: 24px;
}
.rps-about .story__aside-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--rps-grey-200);
  margin-top: 24px;
}
.rps-about .story__aside-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rps-about .story__aside-meta-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rps-blue);
}
.rps-about .story__aside-meta-value {
  font-size: 15px;
  color: var(--rps-navy);
  font-weight: 500;
}

.rps-about .story__content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--rps-grey-800);
}
.rps-about .story__content p {
  margin-bottom: 24px;
}
.rps-about .story__content p:last-child { margin-bottom: 0; }
.rps-about .story__content strong {
  color: var(--rps-navy);
  font-weight: 600;
}

.rps-about .story__pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--rps-blue);
  padding: 32px 0 32px 32px;
  border-left: 3px solid var(--rps-green);
  margin: 40px 0;
}

/* ============================================
   TRANSFORMATION — De l'épreuve à l'expertise
   ============================================ */
.rps-about .transformation {
  padding: 100px 0;
  background: var(--rps-grey-100) !important;
  position: relative;
  z-index: 1;
}

.rps-about .transformation__head {
  text-align: center;
  margin-bottom: 64px;
}
.rps-about .transformation__head .eyebrow { justify-content: center; }
.rps-about .transformation__head .section-intro { margin: 0 auto; }

.rps-about .timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
}
.rps-about .timeline::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, var(--rps-blue), var(--rps-green));
  opacity: 0.2;
  z-index: 0;
}
.rps-about .timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.rps-about .timeline-step__dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--rps-white);
  border: 2px solid var(--rps-blue);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--rps-blue);
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(13, 27, 61, 0.08);
}
.rps-about .timeline-step:hover .timeline-step__dot {
  background: var(--rps-blue);
  color: white;
  transform: scale(1.05);
}
.rps-about .timeline-step__year {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(70, 176, 109, 0.1);
  color: var(--rps-green);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.rps-about .timeline-step h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.rps-about .timeline-step p {
  font-size: 13.5px;
  color: var(--rps-grey-600);
  line-height: 1.55;
}

/* ============================================
   ENGAGEMENTS — 4 principes
   ============================================ */
.rps-about .commitments {
  padding: 100px 0;
  background: var(--rps-white);
}
.rps-about .commitments__head {
  margin-bottom: 56px;
}
.rps-about .commitments__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.rps-about .commitment-card {
  padding: 36px 32px;
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.rps-about .commitment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--rps-green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.rps-about .commitment-card:hover {
  background: var(--rps-white);
  border-color: var(--rps-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.rps-about .commitment-card:hover::before { transform: scaleY(1); }

.rps-about .commitment-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--rps-blue);
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}
.rps-about .commitment-card:hover .commitment-card__icon {
  background: var(--rps-blue);
  color: white;
}
.rps-about .commitment-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.rps-about .commitment-card p {
  font-size: 14.5px;
  color: var(--rps-grey-600);
  line-height: 1.65;
}

/* ============================================
   BIO COMPLÈTE — DAMIEN
   ============================================ */
.rps-about .bio {
  padding: 100px 0;
  background: var(--rps-grey-50);
}
.rps-about .bio__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.rps-about .bio__photo {
  position: sticky;
  top: 100px;
}
.rps-about .bio__photo-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background:
    url("/wp-content/uploads/2026/05/damien_1272x1920.webp") top/cover;
}
.rps-about .bio__photo-meta {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius-sm);
}
.rps-about .bio__photo-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--rps-navy);
  margin-bottom: 4px;
}
.rps-about .bio__photo-meta span {
  font-size: 13px;
  color: var(--rps-grey-600);
  line-height: 1.5;
  display: block;
}

.rps-about .bio__content h2 {
  margin-bottom: 32px;
}

.rps-about .bio__section {
  margin-bottom: 40px;
}
.rps-about .bio__section:last-child { margin-bottom: 0; }
.rps-about .bio__section h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--rps-navy);
  display: flex;
  align-items: center;
  gap: 12px;
}
.rps-about .bio__section h3::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--rps-green);
  border-radius: 50%;
  flex-shrink: 0;
}
.rps-about .bio__section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--rps-grey-800);
  margin-bottom: 12px;
}
.rps-about .bio__section p:last-child { margin-bottom: 0; }
.rps-about .bio__section strong { color: var(--rps-navy); font-weight: 600; }

.rps-about .bio__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.rps-about .credential {
  padding: 8px 16px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--rps-navy);
  transition: all 0.3s var(--ease);
}
.rps-about .credential:hover {
  border-color: var(--rps-blue);
  color: var(--rps-blue);
  transform: translateY(-2px);
}

/* ============================================
   BIO JOANNA — variation visuelle
   ============================================ */
.rps-about .bio--alt {
  background: var(--rps-white);
}
.rps-about .bio--alt .bio__inner {
  grid-template-columns: 1.6fr 1fr;
}
.rps-about .bio--alt .bio__photo-img {
  background:
    url("/wp-content/uploads/2026/05/rps-joanna-prazanowska_1022x1539.webp") top/cover;
}
.rps-about .bio--alt .bio__section h3::before {
  background: var(--rps-blue);
}

/* ============================================
   ÉCOSYSTÈME HUMENTAL
   ============================================ */
.rps-about .ecosystem {
  padding: 100px 0;
  background: var(--rps-navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.rps-about .ecosystem::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.12), transparent 60%);
  pointer-events: none;
}
.rps-about .ecosystem__head {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.rps-about .ecosystem__head .eyebrow {
  color: var(--rps-green-soft);
  justify-content: center;
}
.rps-about .ecosystem__head h2 {
  color: white;
}
.rps-about .ecosystem__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--rps-green-soft);
}
.rps-about .ecosystem__head p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
  margin: 20px auto 0;
}

.rps-about .ecosystem__brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.rps-about .brand-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.rps-about .brand-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--rps-green);
  transform: translateY(-4px);
}
.rps-about .brand-card__domain {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--rps-green-soft);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.rps-about .brand-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: white;
  margin-bottom: 10px;
}
.rps-about .brand-card__role {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.rps-about .brand-card__public {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: rgba(70, 176, 109, 0.15);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--rps-green-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.rps-about .ecosystem__current {
  margin-top: 48px;
  padding: 24px 32px;
  background: rgba(70, 176, 109, 0.1);
  border: 1px solid var(--rps-green);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.rps-about .ecosystem__current-icon {
  width: 44px;
  height: 44px;
  background: var(--rps-green);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
}
.rps-about .ecosystem__current-content {
  flex: 1;
}
.rps-about .ecosystem__current-content strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: white;
  margin-bottom: 4px;
}
.rps-about .ecosystem__current-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

/* ============================================
   DIFFÉRENCIATEURS
   ============================================ */
.rps-about .distinctions {
  padding: 100px 0;
  background: var(--rps-white);
}
.rps-about .distinctions__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.rps-about .distinctions__intro {
  position: sticky;
  top: 100px;
}
.rps-about .distinctions__intro h2 {
  margin-bottom: 24px;
}
.rps-about .distinctions__intro p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--rps-grey-600);
}
.rps-about .distinctions__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rps-about .distinction {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rps-grey-200);
  transition: padding 0.3s var(--ease);
}
.rps-about .distinction:last-child { border-bottom: none; }
.rps-about .distinction:hover { padding-left: 12px; }
.rps-about .distinction__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--rps-grey-200);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  transition: color 0.3s var(--ease);
}
.rps-about .distinction:hover .distinction__num { color: var(--rps-green); }
.rps-about .distinction__content h3 {
  font-size: 19px;
  margin: 0 0 8px 0;
}
.rps-about .distinction__content p {
  font-size: 15px;
  color: var(--rps-grey-600);
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   CTA FINAL
   ============================================ */
.rps-about .cta-final {
  padding: 120px 0;
  background: var(--rps-grey-50);
}
.rps-about .cta-final__card {
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-navy-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rps-about .cta-final__card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.12), transparent 60%);
}
.rps-about .cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.rps-about .cta-final h2 {
  color: white;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}
.rps-about .cta-final h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--rps-green-soft);
}
.rps-about .cta-final p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
}
.rps-about .cta-final__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  CSS ADDITIONNEL — REFONTE PAGE À PROPOS                         ║
   ║  ────────────────────────────────────────────────────────────── ║
   ║  À ajouter dans rps-styles.css                                    ║
   ║  Section : 05. PAGE — À Propos (.rps-about)                       ║
   ║                                                                   ║
   ║  Ce CSS ajoute :                                                  ║
   ║  1. Nouveau hero binôme (photo + texte + mini-cartes)            ║
   ║  2. Section "Genèse" centrée pour le récit Mai 2016              ║
   ║  3. Section "Associée" épurée pour Joanna                        ║
   ╚══════════════════════════════════════════════════════════════════╝ */


/* ─── 1. HERO BINÔME — Photo + texte côte à côte ────────────────── */

.rps-about .hero--binome {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.rps-about .hero--binome::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.rps-about .hero__binome-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  margin: 32px 0 48px;
}

@media (max-width: 980px) {
  .rps-about .hero__binome-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.rps-about .hero__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-green);
  padding: 6px 14px;
  background: rgba(70, 176, 109, 0.1);
  border-radius: 999px;
  margin-bottom: 20px;
}

.rps-about .hero__binome-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--rps-navy);
  margin: 0 0 24px;
}

.rps-about .hero__binome-line-1,
.rps-about .hero__binome-line-2 {
  display: block;
}

.rps-about .hero__binome-line-2 em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--rps-green-deep);
}

.rps-about .hero__binome-subtitle {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--rps-grey-600);
  margin-bottom: 18px;
}

.rps-about .hero__binome-subtitle strong {
  color: var(--rps-navy);
  font-weight: 600;
}

.rps-about .hero__binome-subtitle:last-child {
  margin-bottom: 0;
}

/* Photo binôme */
.rps-about .hero__binome-photo {
  position: relative;
}

.rps-about .hero__binome-photo-wrapper {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.rps-about .hero__binome-photo-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13, 27, 61, 0.08) 100%);
  pointer-events: none;
}

.rps-about .hero__binome-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mini-cartouches du binôme */
.rps-about .hero__binome-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 720px) {
  .rps-about .hero__binome-cards {
    grid-template-columns: 1fr;
  }
}

.rps-about .hero__binome-card {
  background: white;
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.rps-about .hero__binome-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--rps-green-soft);
}

.rps-about .hero__binome-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rps-navy);
  margin-bottom: 4px;
}

.rps-about .hero__binome-card-role {
  font-size: 0.9375rem;
  color: var(--rps-grey-500);
  font-weight: 500;
  margin-bottom: 14px;
}

.rps-about .hero__binome-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rps-about .hero__binome-card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: 999px;
  color: var(--rps-grey-600);
  transition: all 0.3s var(--ease);
}

.rps-about .hero__binome-card:hover .hero__binome-card-tag {
  background: rgba(70, 176, 109, 0.06);
  border-color: rgba(70, 176, 109, 0.2);
  color: var(--rps-green-deep);
}


/* ─── 2. SECTION GENÈSE — Récit Mai 2016 centré ─────────────────── */

.rps-about .genese {
  padding: 100px 0;
  background: var(--rps-grey-50);
  position: relative;
}

.rps-about .genese__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.rps-about .genese__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-grey-500);
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--rps-grey-200);
  border-radius: 999px;
  margin-bottom: 24px;
}

.rps-about .genese__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--rps-navy);
  margin: 0 0 32px;
}

.rps-about .genese__title em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--rps-green-deep);
}

.rps-about .genese__intro {
  margin-bottom: 48px;
}

.rps-about .genese__intro p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--rps-grey-600);
}

/* Métadonnées du récit */
.rps-about .genese__meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto 56px;
  padding: 28px 24px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--rps-grey-200);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

@media (max-width: 768px) {
  .rps-about .genese__meta {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .rps-about .genese__meta {
    grid-template-columns: 1fr;
  }
}

.rps-about .genese__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rps-about .genese__meta-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rps-grey-400);
}

.rps-about .genese__meta-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--rps-navy);
  line-height: 1.3;
}

/* Contenu narratif */
.rps-about .genese__content {
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}

.rps-about .genese__content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--rps-grey-800);
  margin-bottom: 24px;
}

.rps-about .genese__content p strong {
  color: var(--rps-navy);
  font-weight: 700;
}

.rps-about .genese__content p:last-child {
  margin-bottom: 0;
}

/* Citation centrale */
.rps-about .genese__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--rps-navy);
  text-align: center;
  margin: 40px 0;
  padding: 24px 32px;
  border-left: 3px solid var(--rps-green);
  background: white;
  border-radius: var(--radius);
  position: relative;
}

.rps-about .genese__quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 12px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--rps-green-soft);
  opacity: 0.3;
  font-style: normal;
  line-height: 1;
}

/* Signature en fin de section */
.rps-about .genese__signature {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rps-grey-200);
}

.rps-about .genese__signature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--rps-navy);
  margin-bottom: 4px;
}

.rps-about .genese__signature span {
  font-size: 0.9375rem;
  color: var(--rps-grey-500);
}


/* ─── 3. SECTION ASSOCIÉE — Joanna ──────────────────────────────── */

.rps-about .associee {
  padding: 100px 0;
  background: white;
}

.rps-about .associee__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-blue);
  padding: 6px 14px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: 999px;
  margin-bottom: 16px;
}

.rps-about .associee__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rps-navy);
  margin: 0 0 48px;
}

.rps-about .associee__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
}

@media (max-width: 980px) {
  .rps-about .associee__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.rps-about .associee__subtitle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rps-navy);
  margin: 32px 0 12px;
  letter-spacing: -0.01em;
}

.rps-about .associee__subtitle:first-child {
  margin-top: 0;
}

.rps-about .associee__content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--rps-grey-700);
  margin-bottom: 16px;
}

.rps-about .associee__content p strong {
  color: var(--rps-navy);
  font-weight: 600;
}

.rps-about .associee__conclusion {
  margin-top: 32px !important;
  padding: 20px 24px;
  background: var(--rps-grey-50);
  border-left: 3px solid var(--rps-green);
  border-radius: var(--radius-sm);
  font-style: italic;
  color: var(--rps-navy) !important;
}

/* Sidebar */
.rps-about .associee__sidebar {
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

@media (max-width: 980px) {
  .rps-about .associee__sidebar {
    position: static;
  }
}

.rps-about .associee__sidebar-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--rps-navy);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rps-grey-200);
}

.rps-about .associee__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rps-about .associee__tags li {
  font-size: 0.875rem;
  color: var(--rps-grey-700);
  padding: 8px 12px;
  background: white;
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
}

.rps-about .associee__tags li:hover {
  border-color: var(--rps-blue);
  color: var(--rps-blue);
  transform: translateX(2px);
}

.rps-about .associee__signature {
  padding-top: 20px;
  border-top: 1px solid var(--rps-grey-200);
  text-align: center;
}

.rps-about .associee__signature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--rps-navy);
  margin-bottom: 2px;
}

.rps-about .associee__signature span {
  font-size: 0.8125rem;
  color: var(--rps-grey-500);
}


/* ─── RESPONSIVE GLOBAL ──────────────────────────────────────────── */

@media (max-width: 768px) {
  .rps-about .hero--binome {
    padding: 48px 0 60px;
  }

  .rps-about .genese {
    padding: 60px 0;
  }

  .rps-about .genese__content p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .rps-about .genese__quote {
    font-size: 1.25rem;
    padding: 20px 24px;
    margin: 32px 0;
  }

  .rps-about .associee {
    padding: 60px 0;
  }

  .rps-about .hero__binome-cards {
    margin-top: 24px;
  }

  .rps-about .hero__binome-card {
    padding: 20px;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .rps-about .hero__inner,
  .rps-about .story__layout,
  .rps-about .bio__inner,
  .rps-about .bio--alt .bio__inner,
  .rps-about .distinctions__layout { grid-template-columns: 1fr; gap: 48px; }
  .rps-about .story__aside,
  .rps-about .bio__photo,
  .rps-about .distinctions__intro { position: static; }
  .rps-about .timeline { grid-template-columns: repeat(3, 1fr); }
  .rps-about .timeline::before { display: none; }
  .rps-about .commitments__grid { grid-template-columns: 1fr; }
  .rps-about .ecosystem__brands { grid-template-columns: repeat(2, 1fr); }
  .rps-about .cta-final__card { padding: 48px 32px; }
}

@media (max-width: 640px) {
  .rps-about .hero { padding: 60px 0 60px; }
  .rps-about .story,
  .rps-about .transformation,
  .rps-about .commitments,
  .rps-about .bio,
  .rps-about .ecosystem,
  .rps-about .distinctions,
  .rps-about .cta-final { padding: 60px 0; }
  .rps-about .timeline {grid-template-columns: repeat(2, 1fr);}
  .rps-about .ecosystem__brands { grid-template-columns: 1fr; }
  .rps-about .ecosystem__current { flex-direction: column; text-align: center; padding: 24px; }
  .rps-about .story__pullquote { font-size: 21px; padding-left: 20px; }
}

/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  06. PAGE — Contact
   ║  Wrapper : .rps-contact
   ╚════════════════════════════════════════════════════════════════════════╝ */

.rps-contact {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--rps-grey-800);
  -webkit-font-smoothing: antialiased;
}
.rps-contact h1, .rps-contact h2, .rps-contact h3, .rps-contact h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rps-navy);
  margin: 0;
}
.rps-contact p { margin: 0; }
.rps-contact a { color: inherit; text-decoration: none; }
.rps-contact button { font-family: inherit; cursor: pointer; border: none; background: none; }

.rps-contact .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.rps-contact .container--narrow { max-width: var(--container-sm); }

/* ============================================
   COMPOSANTS GÉNÉRIQUES
   ============================================ */
.rps-contact .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.rps-contact .btn--primary {
  background: var(--rps-blue);
  color: var(--rps-white);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
}
.rps-contact .btn--primary:hover { background: var(--rps-navy); transform: translateY(-2px); }
.rps-contact .btn--green { background: var(--rps-green); color: var(--rps-white); box-shadow: 0 4px 12px rgba(70, 176, 109, 0.3); }
.rps-contact .btn--green:hover { background: #3a9659; transform: translateY(-2px); }
.rps-contact .btn--ghost { background: transparent; color: var(--rps-navy); border: 1.5px solid var(--rps-grey-200); }
.rps-contact .btn--ghost:hover { border-color: var(--rps-navy); background: var(--rps-grey-50); }
.rps-contact .btn--light { background: var(--rps-white); color: var(--rps-navy); }
.rps-contact .btn--light:hover { background: var(--rps-grey-100); transform: translateY(-2px); }
.rps-contact .btn .arrow { transition: transform 0.3s var(--ease); }
.rps-contact .btn:hover .arrow { transform: translateX(4px); }

.rps-contact .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 16px;
}
.rps-contact .eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rps-green);
}

.rps-contact .section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
}
.rps-contact .section-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--rps-grey-600);
  max-width: 760px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.rps-contact .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.rps-contact .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.rps-contact .reveal[data-delay="1"] { transition-delay: 0.1s; }
.rps-contact .reveal[data-delay="2"] { transition-delay: 0.2s; }
.rps-contact .reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ============================================
   HERO
   ============================================ */
.rps-contact .hero {
  position: relative;
  padding: 80px 0 80px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(30, 58, 138, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(70, 176, 109, 0.05), transparent 60%),
    var(--rps-grey-50);
  overflow: hidden;
}
.rps-contact .hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--rps-grey-600);
  margin-bottom: 24px;
  font-family: var(--font-display);
  flex-wrap: wrap;
}
.rps-contact .hero__breadcrumb a { color: var(--rps-grey-600); transition: color 0.2s; }
.rps-contact .hero__breadcrumb a:hover { color: var(--rps-blue); }
.rps-contact .hero__breadcrumb-sep { color: var(--rps-grey-400); }

.rps-contact .hero__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.rps-contact .hero__inner .eyebrow { justify-content: center; }

.rps-contact .hero__title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  margin-bottom: 24px;
}
.rps-contact .hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--rps-blue);
  font-size: clamp(46px, 6.1vw, 70px);
}
.rps-contact .hero__subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rps-grey-600);
  margin-bottom: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.rps-contact .hero__quick-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.rps-contact .hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 32px;
  border-top: 1px solid var(--rps-grey-200);
  max-width: 720px;
  margin: 0 auto;
}
.rps-contact .hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--rps-grey-600);
  font-family: var(--font-display);
}
.rps-contact .hero__trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--rps-green);
  flex-shrink: 0;
}

/* ============================================
   MULTI-MODES — 3 cards de contact
   ============================================ */
.rps-contact .modes {
  padding: 100px 0;
  background: var(--rps-white);
}
.rps-contact .modes__head {
  text-align: center;
  margin-bottom: 56px;
}
.rps-contact .modes__head .eyebrow { justify-content: center; }
.rps-contact .modes__head .section-intro { margin: 0 auto; }

.rps-contact .modes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rps-contact .mode-card {
  padding: 36px 32px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.rps-contact .mode-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--rps-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.rps-contact .mode-card:hover {
  border-color: var(--rps-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.rps-contact .mode-card:hover::before { transform: scaleX(1); }

.rps-contact .mode-card--featured {
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-blue) 100%);
  color: white;
  border-color: var(--rps-blue);
}
.rps-contact .mode-card--featured::before { background: var(--rps-green); transform: scaleX(1); }
.rps-contact .mode-card--featured h3 { color: white; }
.rps-contact .mode-card--featured p,
.rps-contact .mode-card--featured .mode-card__detail-item { color: rgba(255, 255, 255, 0.85); }
.rps-contact .mode-card--featured .mode-card__icon { background: rgba(70, 176, 109, 0.2); color: var(--rps-green-soft); }

.rps-contact .mode-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--rps-green);
  color: white;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rps-contact .mode-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--rps-blue);
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}
.rps-contact .mode-card:hover .mode-card__icon {
  transform: scale(1.05);
}

.rps-contact .mode-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.rps-contact .mode-card__intro {
  font-size: 14.5px;
  color: var(--rps-grey-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.rps-contact .mode-card__details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rps-grey-200);
  flex: 1;
}
.rps-contact .mode-card--featured .mode-card__details {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.rps-contact .mode-card__detail-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--rps-grey-800);
  line-height: 1.5;
}
.rps-contact .mode-card__detail-item svg {
  width: 16px;
  height: 16px;
  color: var(--rps-green);
  flex-shrink: 0;
  margin-top: 3px;
}
.rps-contact .mode-card--featured .mode-card__detail-item svg { color: var(--rps-green-soft); }

.rps-contact .mode-card__for {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 8px;
}
.rps-contact .mode-card--featured .mode-card__for { color: var(--rps-green-soft); }
.rps-contact .mode-card__for-detail {
  font-size: 13.5px;
  color: var(--rps-grey-600);
  margin-bottom: 24px;
  line-height: 1.55;
}
.rps-contact .mode-card--featured .mode-card__for-detail { color: rgba(255, 255, 255, 0.75); }

/* ============================================
   FORMULAIRE
   ============================================ */
.rps-contact .form-section {
  padding: 100px 0;
  background: var(--rps-grey-50);
}
.rps-contact .form-section__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.rps-contact .form-section__intro {
  position: sticky;
  top: 100px;
}
.rps-contact .form-section__intro h2 {
  margin-bottom: 24px;
}
.rps-contact .form-section__intro p {
  font-size: 17px;
  color: var(--rps-grey-600);
  line-height: 1.7;
  margin-bottom: 24px;
}
.rps-contact .form-section__intro-reassurance {
  padding: 20px 24px;
  background: var(--rps-white);
  border-left: 3px solid var(--rps-green);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--rps-grey-800);
  line-height: 1.6;
}
.rps-contact .form-section__intro-reassurance strong {
  color: var(--rps-navy);
}

.rps-contact .form-card {
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius-lg);
  padding: 40px 40px;
  box-shadow: var(--shadow);
}
.rps-contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.rps-contact .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.rps-contact .form-field--row { margin-bottom: 0; }
.rps-contact .form-field label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--rps-navy);
  letter-spacing: 0.01em;
}
.rps-contact .form-field label .required {
  color: var(--rps-green);
}
.rps-contact .form-field input,
.rps-contact .form-field select,
.rps-contact .form-field textarea {
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--rps-grey-800);
  background: var(--rps-grey-50);
  border: 1.5px solid var(--rps-grey-200);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
  width: 100%;
}
.rps-contact .form-field input:focus,
.rps-contact .form-field select:focus,
.rps-contact .form-field textarea:focus {
  outline: none;
  border-color: var(--rps-blue);
  background: var(--rps-white);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}
.rps-contact .form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

/* Radio cards : choix d'urgence */
.rps-contact .form-radios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.rps-contact .form-radio {
  position: relative;
}
.rps-contact .form-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.rps-contact .form-radio label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 12px;
  background: var(--rps-grey-50);
  border: 1.5px solid var(--rps-grey-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-align: center;
}
.rps-contact .form-radio label:hover {
  border-color: var(--rps-blue);
  background: var(--rps-white);
}
.rps-contact .form-radio input:checked + label {
  border-color: var(--rps-blue);
  background: rgba(30, 58, 138, 0.05);
  color: var(--rps-blue);
}
.rps-contact .form-radio__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
}
.rps-contact .form-radio__detail {
  font-size: 11.5px;
  color: var(--rps-grey-600);
  line-height: 1.4;
}

/* Checkbox RGPD */
.rps-contact .form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px 18px;
  background: var(--rps-grey-50);
  border-radius: var(--radius-sm);
}
.rps-contact .form-checkbox input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--rps-blue);
  cursor: pointer;
  flex-shrink: 0;
}
.rps-contact .form-checkbox label {
  font-size: 13px;
  color: var(--rps-grey-600);
  line-height: 1.55;
  cursor: pointer;
}
.rps-contact .form-checkbox label a {
  color: var(--rps-blue);
  text-decoration: underline;
}

.rps-contact .form-submit {
  width: 100%;
  padding: 16px 32px;
  background: var(--rps-blue);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
}
.rps-contact .form-submit:hover {
  background: var(--rps-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.rps-contact .form-note {
  margin-top: 16px;
  text-align: center;
  font-size: 12.5px;
  color: var(--rps-grey-600);
}

/* ============================================
   COORDONNÉES + CARTE
   ============================================ */
.rps-contact .locate {
  padding: 100px 0;
  background: var(--rps-white);
}
.rps-contact .locate__head {
  text-align: center;
  margin-bottom: 56px;
}
.rps-contact .locate__head .eyebrow { justify-content: center; }
.rps-contact .locate__head .section-intro { margin: 0 auto; }

.rps-contact .locate__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
}
.rps-contact .info-card {
  padding: 40px 36px;
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.rps-contact .info-card__title {
  font-size: 22px;
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rps-grey-200);
}
.rps-contact .info-item {
  display: flex;
  gap: 16px;
}
.rps-contact .info-item__icon {
  width: 40px;
  height: 40px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--rps-blue);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.rps-contact .info-item:hover .info-item__icon {
  background: var(--rps-blue);
  border-color: var(--rps-blue);
  color: white;
}
.rps-contact .info-item__content {
  flex: 1;
}
.rps-contact .info-item__label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 4px;
}
.rps-contact .info-item__value {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--rps-navy);
  line-height: 1.4;
}
.rps-contact .info-item__value a:hover { color: var(--rps-blue); }
.rps-contact .info-item__detail {
  font-size: 13.5px;
  color: var(--rps-grey-600);
  line-height: 1.5;
  margin-top: 4px;
}

.rps-contact .map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rps-grey-200);
  background: var(--rps-grey-100);
  min-height: 480px;
  position: relative;
}
.rps-contact .map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
}
.rps-contact .map-card__overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}
.rps-contact .map-card__overlay-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--rps-navy);
}
.rps-contact .map-card__overlay-text span {
  font-size: 12.5px;
  color: var(--rps-grey-600);
}
.rps-contact .map-card__overlay-btn {
  padding: 8px 16px;
  background: var(--rps-blue);
  color: white;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  pointer-events: auto;
  transition: background 0.2s;
}
.rps-contact .map-card__overlay-btn:hover { background: var(--rps-navy); }

/* ============================================
   POUR QUI — 3 profils
   ============================================ */
.rps-contact .audiences {
  padding: 100px 0;
  background: var(--rps-grey-50);
}
.rps-contact .audiences__head {
  text-align: center;
  margin-bottom: 56px;
}
.rps-contact .audiences__head .eyebrow { justify-content: center; }
.rps-contact .audiences__head .section-intro { margin: 0 auto; }

.rps-contact .audiences__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rps-contact .audience-card {
  padding: 32px 28px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rps-contact .audience-card:hover {
  border-color: var(--rps-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.rps-contact .audience-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--rps-blue);
}
.rps-contact .audience-card h3 {
  font-size: 19px;
  margin: 0;
}
.rps-contact .audience-card__desc {
  font-size: 14.5px;
  color: var(--rps-grey-600);
  line-height: 1.6;
  margin: 0;
}
.rps-contact .audience-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--rps-blue);
  transition: gap 0.2s var(--ease);
}
.rps-contact .audience-card__cta:hover { gap: 10px; }

/* ============================================
   RÉASSURANCE — 4 garanties
   ============================================ */
.rps-contact .guarantees {
  padding: 100px 0;
  background: var(--rps-white);
}
.rps-contact .guarantees__head { margin-bottom: 56px; }
.rps-contact .guarantees__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rps-contact .guarantee {
  text-align: center;
  padding: 24px 16px;
}
.rps-contact .guarantee__icon {
  width: 56px;
  height: 56px;
  background: rgba(70, 176, 109, 0.1);
  border: 1px solid rgba(70, 176, 109, 0.25);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--rps-green);
  margin: 0 auto 16px;
}
.rps-contact .guarantee h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.rps-contact .guarantee p {
  font-size: 13px;
  color: var(--rps-grey-600);
  line-height: 1.55;
}

/* ============================================
   FAQ CONTACT
   ============================================ */
.rps-contact .faq-section {
  padding: 100px 0;
  background: var(--rps-grey-50);
}
.rps-contact .faq-section__head {
  text-align: center;
  margin-bottom: 48px;
}
.rps-contact .faq-section__head .eyebrow { justify-content: center; }
.rps-contact .faq-section__head .section-intro { margin: 0 auto; }

.rps-contact .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.rps-contact .faq-item {
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.rps-contact .faq-item:hover {
  border-color: var(--rps-blue);
  box-shadow: var(--shadow);
}
.rps-contact .faq-item__question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--rps-navy);
  cursor: pointer;
}
.rps-contact .faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rps-grey-100);
  display: grid;
  place-items: center;
  color: var(--rps-blue);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.rps-contact .faq-item.open .faq-item__icon {
  background: var(--rps-blue);
  color: white;
  transform: rotate(45deg);
}
.rps-contact .faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.rps-contact .faq-item.open .faq-item__answer { max-height: 500px; }
.rps-contact .faq-item__answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--rps-grey-600);
  line-height: 1.7;
}
.rps-contact .faq-item__answer-inner strong { color: var(--rps-navy); }

/* ============================================
   CTA FINAL
   ============================================ */
.rps-contact .cta-final {
  padding: 120px 0;
  background: var(--rps-navy);
  position: relative;
  overflow: hidden;
}
.rps-contact .cta-final::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.12), transparent 60%);
}
.rps-contact .cta-final__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.rps-contact .cta-final h2 {
  color: white;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}
.rps-contact .cta-final h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--rps-green-soft);
}
.rps-contact .cta-final p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
}
.rps-contact .cta-final__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .rps-contact .modes__grid,
  .rps-contact .audiences__grid,
  .rps-contact .guarantees__grid { grid-template-columns: 1fr; }
  .rps-contact .form-section__layout,
  .rps-contact .locate__layout { grid-template-columns: 1fr; gap: 40px; }
  .rps-contact .form-section__intro { position: static; }
  .rps-contact .form-row,
  .rps-contact .form-radios { grid-template-columns: 1fr; }
  .rps-contact .map-card { min-height: 360px; }
  .rps-contact .map-card iframe { min-height: 360px; }
}

@media (max-width: 640px) {
  .rps-contact .hero { padding: 60px 0 60px; }
  .rps-contact .modes,
  .rps-contact .form-section,
  .rps-contact .locate,
  .rps-contact .audiences,
  .rps-contact .guarantees,
  .rps-contact .faq-section,
  .rps-contact .cta-final { padding: 60px 0; }
  .rps-contact .form-card { padding: 28px 24px; }
  .rps-contact .info-card { padding: 28px 24px; }
  .rps-contact .map-card__overlay { flex-direction: column; align-items: flex-start; }
}


/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  07. PAGE — Notre Approche
   ║  Wrapper : .rps-approach
   ╚════════════════════════════════════════════════════════════════════════╝ */

.rps-approach {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--rps-grey-800);
  -webkit-font-smoothing: antialiased;
}
.rps-approach h1, .rps-approach h2, .rps-approach h3, .rps-approach h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rps-navy);
  margin: 0;
}
.rps-approach p { margin: 0; }
.rps-approach a { color: inherit; text-decoration: none; }
.rps-approach button { font-family: inherit; cursor: pointer; border: none; background: none; }

.rps-approach .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.rps-approach .container--narrow { max-width: var(--container-sm); }

/* ============================================
   COMPOSANTS GÉNÉRIQUES
   ============================================ */
.rps-approach .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.rps-approach .btn--primary {
  background: var(--rps-blue);
  color: var(--rps-white);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
}
.rps-approach .btn--primary:hover { background: var(--rps-navy); transform: translateY(-2px); }
.rps-approach .btn--green { background: var(--rps-green); color: var(--rps-white); box-shadow: 0 4px 12px rgba(70, 176, 109, 0.3); }
.rps-approach .btn--green:hover { background: #3a9659; transform: translateY(-2px); }
.rps-approach .btn--ghost { background: transparent; color: var(--rps-navy); border: 1.5px solid var(--rps-grey-200); }
.rps-approach .btn--ghost:hover { border-color: var(--rps-navy); background: var(--rps-grey-50); }
.rps-approach .btn--light { background: var(--rps-white); color: var(--rps-navy); }
.rps-approach .btn--light:hover { background: var(--rps-grey-100); transform: translateY(-2px); }
.rps-approach .btn .arrow { transition: transform 0.3s var(--ease); }
.rps-approach .btn:hover .arrow { transform: translateX(4px); }

.rps-approach .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 16px;
}
.rps-approach .eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rps-green);
}

.rps-approach .section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
}
.rps-approach .section-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--rps-grey-600);
  max-width: 760px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.rps-approach .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.rps-approach .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.rps-approach .reveal[data-delay="1"] { transition-delay: 0.1s; }
.rps-approach .reveal[data-delay="2"] { transition-delay: 0.2s; }
.rps-approach .reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ============================================
   HERO — Manifeste
   ============================================ */
.rps-approach .hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(30, 58, 138, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(70, 176, 109, 0.05), transparent 60%),
    var(--rps-grey-50);
  overflow: hidden;
}
.rps-approach .hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--rps-grey-600);
  margin-bottom: 24px;
  font-family: var(--font-display);
  flex-wrap: wrap;
}
.rps-approach .hero__breadcrumb a { color: var(--rps-grey-600); transition: color 0.2s; }
.rps-approach .hero__breadcrumb a:hover { color: var(--rps-blue); }
.rps-approach .hero__breadcrumb-sep { color: var(--rps-grey-400); }

.rps-approach .hero__inner {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.rps-approach .hero__inner .eyebrow { justify-content: center; }

.rps-approach .hero__title {
  font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}
.rps-approach .hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--rps-blue);
  font-size: clamp(46px, 6.3vw, 70px);
}
.rps-approach .hero__subtitle {
  font-size: 20px;
  line-height: 1.65;
  color: var(--rps-grey-600);
  margin-bottom: 48px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.rps-approach .hero__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid var(--rps-grey-200);
}
.rps-approach .hero__pillar {
  text-align: center;
}
.rps-approach .hero__pillar-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--rps-green);
  margin-bottom: 8px;
}
.rps-approach .hero__pillar-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--rps-navy);
  margin-bottom: 6px;
}
.rps-approach .hero__pillar-desc {
  font-size: 13.5px;
  color: var(--rps-grey-600);
  line-height: 1.55;
}

/* ============================================
   CONVICTION FONDAMENTALE
   ============================================ */
.rps-approach .conviction {
  padding: 120px 0;
  background: var(--rps-white);
}
.rps-approach .conviction__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.rps-approach .conviction__visual {
  position: relative;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
.rps-approach .conviction__circle {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-blue) 100%);
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: 0 30px 80px rgba(13, 27, 61, 0.2);
}
.rps-approach .conviction__circle::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px dashed rgba(30, 58, 138, 0.2);
  border-radius: 50%;
  animation: rotate 60s linear infinite;
}
.rps-approach .conviction__circle::after {
  content: '';
  position: absolute;
  inset: -40px;
  border: 1px dashed rgba(70, 176, 109, 0.15);
  border-radius: 50%;
  animation: rotate 90s linear infinite reverse;
}
@keyframes rotate { to { transform: rotate(360deg); } }

.rps-approach .conviction__core {
  text-align: center;
  color: white;
  padding: 40px;
  position: relative;
  z-index: 1;
}
.rps-approach .conviction__core-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rps-green-soft);
  margin-bottom: 16px;
}
.rps-approach .conviction__core-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.3;
  color: white;
}

.rps-approach .conviction__satellite {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s var(--ease);
}
.rps-approach .conviction__satellite:hover {
  transform: scale(1.08);
  border-color: var(--rps-blue);
  z-index: 2;
}
.rps-approach .conviction__satellite-1 { top: 0%; left: 50%; transform: translateX(-50%); }
.rps-approach .conviction__satellite-1:hover { transform: translateX(-50%) scale(1.08); }
.rps-approach .conviction__satellite-2 { right: 0%; top: 50%; transform: translateY(-50%); }
.rps-approach .conviction__satellite-2:hover { transform: translateY(-50%) scale(1.08); }
.rps-approach .conviction__satellite-3 { bottom: 0%; left: 50%; transform: translateX(-50%); }
.rps-approach .conviction__satellite-3:hover { transform: translateX(-50%) scale(1.08); }
.rps-approach .conviction__satellite-4 { left: 0%; top: 50%; transform: translateY(-50%); }
.rps-approach .conviction__satellite-4:hover { transform: translateY(-50%) scale(1.08); }

.rps-approach .conviction__satellite-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rps-grey-600);
}
.rps-approach .conviction__satellite-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--rps-navy);
  line-height: 1.2;
}

.rps-approach .conviction__content h2 {
  margin-bottom: 24px;
}
.rps-approach .conviction__content > p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--rps-grey-600);
  margin-bottom: 20px;
}
.rps-approach .conviction__content > p:last-child { margin-bottom: 0; }
.rps-approach .conviction__content strong { color: var(--rps-navy); font-weight: 600; }

.rps-approach .conviction__quote {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--rps-grey-50);
  border-left: 3px solid var(--rps-green);
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--rps-navy);
}

/* ============================================
   PEMS — Cœur de page
   ============================================ */
.rps-approach .pems {
  padding: 120px 0;
  background: var(--rps-grey-50);
  position: relative;
  overflow: hidden;
}
.rps-approach .pems::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.04), transparent 60%);
  pointer-events: none;
}

.rps-approach .pems__head {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.rps-approach .pems__head .eyebrow { justify-content: center; }
.rps-approach .pems__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--rps-blue);
}
.rps-approach .pems__head .section-intro { margin: 0 auto; }

.rps-approach .pems__acronym {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 48px auto 0;
  max-width: 760px;
}
.rps-approach .pems__letter {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  color: var(--rps-grey-200);
  letter-spacing: -0.03em;
  transition: color 0.3s var(--ease);
  cursor: default;
}
.rps-approach .pems__letter--active {
  color: var(--rps-blue);
}

.rps-approach .pems__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.rps-approach .pems-dim {
  padding: 40px 36px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.rps-approach .pems-dim::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.rps-approach .pems-dim:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.rps-approach .pems-dim:hover::before { transform: scaleX(1); }

.rps-approach .pems-dim--p::before { background: var(--rps-green); }
.rps-approach .pems-dim--e::before { background: var(--rps-amber); }
.rps-approach .pems-dim--m::before { background: var(--rps-blue); }
.rps-approach .pems-dim--s::before { background: var(--rps-purple); }

.rps-approach .pems-dim__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rps-grey-200);
}
.rps-approach .pems-dim__letter {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: white;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.rps-approach .pems-dim--p .pems-dim__letter { background: var(--rps-green); }
.rps-approach .pems-dim--e .pems-dim__letter { background: var(--rps-amber); }
.rps-approach .pems-dim--m .pems-dim__letter { background: var(--rps-blue); }
.rps-approach .pems-dim--s .pems-dim__letter { background: var(--rps-purple); }

.rps-approach .pems-dim__title {
  font-size: 22px;
  margin: 0 0 4px 0;
}
.rps-approach .pems-dim__subtitle {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rps-approach .pems-dim--p .pems-dim__subtitle { color: var(--rps-green); }
.rps-approach .pems-dim--e .pems-dim__subtitle { color: var(--rps-amber); }
.rps-approach .pems-dim--m .pems-dim__subtitle { color: var(--rps-blue); }
.rps-approach .pems-dim--s .pems-dim__subtitle { color: var(--rps-purple); }

.rps-approach .pems-dim__desc {
  font-size: 15px;
  color: var(--rps-grey-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.rps-approach .pems-dim__signals-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rps-grey-600);
  margin-bottom: 12px;
}
.rps-approach .pems-dim__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rps-approach .pems-dim__signal {
  padding: 6px 12px;
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: 100px;
  font-size: 12.5px;
  color: var(--rps-grey-800);
  font-family: var(--font-display);
  font-weight: 500;
}

.rps-approach .pems__synthesis {
  margin-top: 48px;
  padding: 40px 48px;
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-navy-soft) 100%);
  border-radius: var(--radius-lg);
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.rps-approach .pems__synthesis::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -40%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.15), transparent 60%);
}
.rps-approach .pems__synthesis-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}
.rps-approach .pems__synthesis-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rps-green-soft);
  margin-bottom: 16px;
}
.rps-approach .pems__synthesis-text {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}
.rps-approach .pems__synthesis-text strong { color: white; font-weight: 600; }

/* ============================================
   4 PRINCIPES
   ============================================ */
.rps-approach .principles {
  padding: 120px 0;
  background: var(--rps-white);
}
.rps-approach .principles__head {
  margin-bottom: 64px;
}
.rps-approach .principles__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rps-approach .principle {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--rps-grey-200);
  transition: padding 0.3s var(--ease);
}
.rps-approach .principle:last-child { border-bottom: none; }
.rps-approach .principle:hover { padding-left: 16px; }

.rps-approach .principle__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--rps-grey-200);
  letter-spacing: -0.04em;
  transition: color 0.3s var(--ease);
}
.rps-approach .principle:hover .principle__num { color: var(--rps-green); }

.rps-approach .principle__content h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.rps-approach .principle__content p {
  font-size: 16px;
  color: var(--rps-grey-600);
  line-height: 1.65;
  margin: 0;
}
.rps-approach .principle__keyword {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--rps-blue);
  text-align: right;
  line-height: 1.2;
}

/* ============================================
   POSITIONNEMENT ÉCOSYSTÈME
   ============================================ */
.rps-approach .positioning {
  padding: 120px 0;
  background: var(--rps-grey-50);
}
.rps-approach .positioning__head {
  text-align: center;
  margin-bottom: 64px;
}
.rps-approach .positioning__head .eyebrow { justify-content: center; }
.rps-approach .positioning__head .section-intro { margin: 0 auto; }

.rps-approach .positioning__schema {
  max-width: 980px;
  margin: 0 auto 64px;
  padding: 48px 32px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius-lg);
}
.rps-approach .positioning__axes {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
}
.rps-approach .positioning__axis-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rps-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}
.rps-approach .positioning__axis-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--rps-green);
}

.rps-approach .actor-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--rps-grey-100);
  transition: padding 0.3s var(--ease);
}
.rps-approach .actor-row:last-of-type { border-bottom: none; }
.rps-approach .actor-row:hover { padding-left: 8px; }
.rps-approach .actor-row--us {
  background: linear-gradient(90deg, rgba(70, 176, 109, 0.05) 0%, transparent 100%);
  border-radius: var(--radius-sm);
  padding: 24px 16px;
  border-bottom: none;
  margin-top: 16px;
}

.rps-approach .actor-row__name {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rps-approach .actor-row__name strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--rps-navy);
}
.rps-approach .actor-row__name span {
  font-size: 12.5px;
  color: var(--rps-grey-600);
}
.rps-approach .actor-row--us .actor-row__name strong {
  color: var(--rps-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}
.rps-approach .actor-row--us .actor-row__name strong::after {
  content: '✦';
  color: var(--rps-green);
  font-size: 12px;
}

.rps-approach .actor-row__role {
  font-size: 14.5px;
  color: var(--rps-grey-800);
  line-height: 1.55;
}
.rps-approach .actor-row__role strong { color: var(--rps-navy); font-weight: 600; }

.rps-approach .positioning__bridges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.rps-approach .bridge-card {
  padding: 24px 24px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.rps-approach .bridge-card:hover {
  border-color: var(--rps-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.rps-approach .bridge-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--rps-blue);
  margin-bottom: 14px;
}
.rps-approach .bridge-card h4 {
  font-size: 15px;
  margin-bottom: 6px;
}
.rps-approach .bridge-card p {
  font-size: 13.5px;
  color: var(--rps-grey-600);
  line-height: 1.55;
}

/* ============================================
   ENGAGEMENT LONG TERME
   ============================================ */
.rps-approach .longterm {
  padding: 120px 0;
  background: var(--rps-white);
}
.rps-approach .longterm__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.rps-approach .longterm__intro h2 {
  margin-bottom: 24px;
}
.rps-approach .longterm__intro p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--rps-grey-600);
  margin-bottom: 20px;
}
.rps-approach .longterm__intro p:last-child { margin-bottom: 0; }

.rps-approach .longterm__timeline {
  position: relative;
  padding-left: 32px;
}
.rps-approach .longterm__timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11px;
  width: 2px;
  background: linear-gradient(to bottom, var(--rps-blue), var(--rps-green));
  opacity: 0.2;
}

.rps-approach .longterm-step {
  position: relative;
  padding-bottom: 32px;
}
.rps-approach .longterm-step:last-child { padding-bottom: 0; }
.rps-approach .longterm-step::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--rps-white);
  border: 2px solid var(--rps-blue);
  transition: all 0.3s var(--ease);
}
.rps-approach .longterm-step:hover::before {
  background: var(--rps-blue);
  transform: scale(1.2);
}
.rps-approach .longterm-step__phase {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(30, 58, 138, 0.08);
  color: var(--rps-blue);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.rps-approach .longterm-step h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.rps-approach .longterm-step p {
  font-size: 15px;
  color: var(--rps-grey-600);
  line-height: 1.65;
}

/* ============================================
   CTA FINAL
   ============================================ */
.rps-approach .cta-final {
  padding: 120px 0;
  background: var(--rps-navy);
  position: relative;
  overflow: hidden;
}
.rps-approach .cta-final::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.12), transparent 60%);
}
.rps-approach .cta-final__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.rps-approach .cta-final h2 {
  color: white;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
}
.rps-approach .cta-final h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--rps-green-soft);
}
.rps-approach .cta-final p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
}
.rps-approach .cta-final__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .rps-approach .conviction__layout,
  .rps-approach .longterm__layout { grid-template-columns: 1fr; gap: 48px; }
  .rps-approach .conviction__visual { max-width: 460px; margin: 0 auto; }
  .rps-approach .hero__pillars { grid-template-columns: 1fr; gap: 24px; }
  .rps-approach .pems__grid { grid-template-columns: 1fr; }
  .rps-approach .principle { grid-template-columns: 60px 1fr; gap: 24px; }
  .rps-approach .principle__num { font-size: 40px; }
  .rps-approach .principle__keyword { display: none; }
  .rps-approach .positioning__axes,
  .rps-approach .actor-row { grid-template-columns: 1fr; gap: 12px; }
  .rps-approach .positioning__axis-label { display: none; }
  .rps-approach .positioning__bridges { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .rps-approach .hero { padding: 60px 0 70px; }
  .rps-approach .conviction,
  .rps-approach .pems,
  .rps-approach .principles,
  .rps-approach .positioning,
  .rps-approach .longterm,
  .rps-approach .cta-final { padding: 70px 0; }
  .rps-approach .pems__synthesis { padding: 28px 24px; }
  .rps-approach .pems-dim { padding: 28px 24px; }
  .rps-approach .pems-dim__header { gap: 16px; }
  .rps-approach .pems-dim__letter { width: 52px; height: 52px; font-size: 26px; border-radius: 12px; }
  .rps-approach .pems__letter { font-size: 44px; }
  .rps-approach .positioning__schema { padding: 28px 20px; }
  .rps-approach .conviction__core-text { font-size: 22px; }
  .rps-approach .conviction__satellite { width: 88px; height: 88px; padding: 12px; }
  .rps-approach .conviction__satellite-value { font-size: 12px; }
}


/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  08. PAGE — Notre Méthode
   ║  Wrapper : .rps-methode
   ╚════════════════════════════════════════════════════════════════════════╝ */

/* ============================================
   RESET LOCAL — appliqué uniquement à nos sections
   ============================================ */
.rps-methode *,
.rps-methode *::before,
.rps-methode *::after { box-sizing: border-box; }

.rps-methode {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--rps-grey-800);
  -webkit-font-smoothing: antialiased;
}

.rps-methode h1, .rps-methode h2, .rps-methode h3, .rps-methode h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rps-navy);
  margin: 0;
}

.rps-methode p { margin: 0; }
.rps-methode a { color: inherit; text-decoration: none; }
.rps-methode button { font-family: inherit; cursor: pointer; border: none; background: none; }

.rps-methode .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.rps-methode .container--narrow { max-width: var(--container-sm); }

/* ============================================
   COMPOSANTS GÉNÉRIQUES
   ============================================ */
.rps-methode .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.rps-methode .btn--primary {
  background: var(--rps-blue);
  color: var(--rps-white);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
}
.rps-methode .btn--primary:hover {
  background: var(--rps-navy);
  transform: translateY(-2px);
}
.rps-methode .btn--green {
  background: var(--rps-green);
  color: var(--rps-white);
  box-shadow: 0 4px 12px rgba(70, 176, 109, 0.3);
}
.rps-methode .btn--green:hover {
  background: #3a9659;
  transform: translateY(-2px);
}
.rps-methode .btn--ghost {
  background: transparent;
  color: var(--rps-navy);
  border: 1.5px solid var(--rps-grey-200);
}
.rps-methode .btn--ghost:hover {
  border-color: var(--rps-navy);
  background: var(--rps-grey-50);
}
.rps-methode .btn--light {
  background: var(--rps-white);
  color: var(--rps-navy);
}
.rps-methode .btn--light:hover {
  background: var(--rps-grey-100);
  transform: translateY(-2px);
}
.rps-methode .btn .arrow { transition: transform 0.3s var(--ease); }
.rps-methode .btn:hover .arrow { transform: translateX(4px); }

.rps-methode .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 16px;
}
.rps-methode .eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rps-green);
}

.rps-methode .section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
}

.rps-methode .section-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--rps-grey-600);
  max-width: 720px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.rps-methode .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.rps-methode .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.rps-methode .reveal[data-delay="1"] { transition-delay: 0.1s; }
.rps-methode .reveal[data-delay="2"] { transition-delay: 0.2s; }
.rps-methode .reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ============================================
   HERO PAGE
   ============================================ */
.rps-methode .page-hero {
  position: relative;
  padding: 80px 0 80px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(30, 58, 138, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(70, 176, 109, 0.05), transparent 60%),
    var(--rps-grey-50);
  overflow: hidden;
}
.rps-methode .page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--rps-grey-600);
  margin-bottom: 24px;
  font-family: var(--font-display);
}
.rps-methode .page-hero__breadcrumb a { color: var(--rps-grey-600); transition: color 0.2s; }
.rps-methode .page-hero__breadcrumb a:hover { color: var(--rps-blue); }
.rps-methode .page-hero__breadcrumb-sep { color: var(--rps-grey-400); }

.rps-methode .page-hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.rps-methode .page-hero__title {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  margin-bottom: 24px;
}
.rps-methode .page-hero__title strong {
  color: var(--rps-blue);
  font-weight: 700;
}
.rps-methode .page-hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--rps-grey-600);
  margin-bottom: 36px;
  max-width: 600px;
}

.rps-methode .page-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.rps-methode .page-hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--rps-grey-200);
}
.rps-methode .page-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--rps-grey-600);
  font-family: var(--font-display);
}
.rps-methode .page-hero__trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--rps-green);
  flex-shrink: 0;
}

/* Carte de promesse "avant/après" */
.rps-methode .promise-card {
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.rps-methode .promise-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background: rgba(70, 176, 109, 0.1);
  border: 1px solid rgba(70, 176, 109, 0.25);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--rps-green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.rps-methode .promise-card__title {
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--rps-navy);
}
.rps-methode .promise-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}
.rps-methode .promise-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--rps-grey-800);
  line-height: 1.5;
}
.rps-methode .promise-card__list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--rps-green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.rps-methode .promise-card__list li strong {
  color: var(--rps-navy);
  font-weight: 600;
}

/* ============================================
   BANDEAU DIFFÉRENCIATEURS
   ============================================ */
.rps-methode .differentiators {
  padding: 64px 0;
  background: var(--rps-white);
  border-bottom: 1px solid var(--rps-grey-100);
}
.rps-methode .differentiators__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.rps-methode .differentiator {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.rps-methode .differentiator__icon {
  width: 52px;
  height: 52px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--rps-blue);
  margin-bottom: 8px;
  transition: all 0.3s var(--ease);
}
.rps-methode .differentiator:hover .differentiator__icon {
  background: var(--rps-blue);
  color: white;
  transform: scale(1.05);
}
.rps-methode .differentiator h3 {
  font-size: 19px;
  color: var(--rps-navy);
  margin: 0;
}
.rps-methode .differentiator p {
  font-size: 14.5px;
  color: var(--rps-grey-600);
  line-height: 1.6;
}

/* ============================================
   MÉTHODE EN 5 ÉTAPES — TIMELINE
   ============================================ */
.rps-methode .timeline {
  padding: 100px 0;
  background: var(--rps-grey-50);
}
.rps-methode .timeline__head {
  text-align: center;
  margin-bottom: 64px;
}
.rps-methode .timeline__head .eyebrow { justify-content: center; }
.rps-methode .timeline__head .section-intro { margin: 0 auto; }

.rps-methode .timeline__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
/* Ligne verticale entre les étapes */
.rps-methode .timeline__steps::before {
  content: '';
  position: absolute;
  top: 60px;
  bottom: 60px;
  left: 30px;
  width: 2px;
  background: linear-gradient(to bottom, var(--rps-blue), var(--rps-green));
  opacity: 0.25;
}

.rps-methode .timeline-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.rps-methode .timeline-step__num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--rps-white);
  border: 2px solid var(--rps-blue);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--rps-blue);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 12px rgba(13, 27, 61, 0.08);
}
.rps-methode .timeline-step:hover .timeline-step__num {
  background: var(--rps-blue);
  color: white;
  transform: scale(1.05);
}

.rps-methode .timeline-step__content {
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: all 0.3s var(--ease);
}
.rps-methode .timeline-step:hover .timeline-step__content {
  border-color: var(--rps-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.rps-methode .timeline-step__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.rps-methode .timeline-step__title {
  font-size: 22px;
  color: var(--rps-navy);
  margin: 0;
}
.rps-methode .timeline-step__duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(70, 176, 109, 0.1);
  color: #15803d;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.rps-methode .timeline-step__desc {
  font-size: 15px;
  color: var(--rps-grey-600);
  line-height: 1.65;
  margin-bottom: 20px;
}
.rps-methode .timeline-step__deliverables {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rps-methode .timeline-step__deliverables-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 4px;
}
.rps-methode .timeline-step__deliverables ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rps-methode .timeline-step__deliverables li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--rps-grey-800);
  line-height: 1.5;
}
.rps-methode .timeline-step__deliverables li::before {
  content: '→';
  color: var(--rps-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* Pastilles des 4 piliers PEMS-RPS™ (étape 2 — Diagnostic)
   Couleurs alignées sur la page Approche : P=vert, E=ambre, M=bleu, S=violet */
.rps-methode .timeline-step__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.rps-methode .timeline-pillar {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px 5px 6px;
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--rps-navy);
  line-height: 1;
}
.rps-methode .timeline-pillar__dot {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
}
.rps-methode .timeline-pillar--p .timeline-pillar__dot { background: var(--rps-green); }
.rps-methode .timeline-pillar--e .timeline-pillar__dot { background: var(--rps-amber); }
.rps-methode .timeline-pillar--m .timeline-pillar__dot { background: var(--rps-blue); }
.rps-methode .timeline-pillar--s .timeline-pillar__dot { background: var(--rps-purple); }

/* ============================================
   LIVRABLES CONCRETS
   ============================================ */
.rps-methode .deliverables {
  padding: 100px 0;
  background: var(--rps-white);
}
.rps-methode .deliverables__head {
  text-align: center;
  margin-bottom: 56px;
}
.rps-methode .deliverables__head .eyebrow { justify-content: center; }
.rps-methode .deliverables__head .section-intro { margin: 0 auto; }

.rps-methode .deliverables__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rps-methode .deliverable-card {
  padding: 28px 24px;
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rps-methode .deliverable-card:hover {
  border-color: var(--rps-blue);
  background: var(--rps-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.rps-methode .deliverable-card__icon {
  width: 44px;
  height: 44px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--rps-blue);
  transition: all 0.3s var(--ease);
}
.rps-methode .deliverable-card:hover .deliverable-card__icon {
  background: var(--rps-blue);
  border-color: var(--rps-blue);
  color: white;
}
.rps-methode .deliverable-card h4 {
  font-size: 16px;
  color: var(--rps-navy);
  letter-spacing: -0.01em;
  margin: 0;
}
.rps-methode .deliverable-card p {
  font-size: 13.5px;
  color: var(--rps-grey-600);
  line-height: 1.55;
}

/* ============================================
   FORMATS & DURÉE — 2 colonnes
   ============================================ */
.rps-methode .formats {
  padding: 100px 0;
  background: var(--rps-grey-50);
}
.rps-methode .formats__intro {
  text-align: center;
  margin-bottom: 56px;
}
.rps-methode .formats__intro .eyebrow { justify-content: center; }
.rps-methode .formats__intro .section-intro { margin: 0 auto; }

.rps-methode .formats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.rps-methode .format-card {
  padding: 40px 36px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.rps-methode .format-card:hover {
  border-color: var(--rps-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.rps-methode .format-card--featured {
  border-color: var(--rps-blue);
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-blue) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.rps-methode .format-card--featured::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.15), transparent 60%);
  pointer-events: none;
}
.rps-methode .format-card--featured h3,
.rps-methode .format-card--featured .format-card__price,
.rps-methode .format-card--featured .format-card__list strong { color: white; }
.rps-methode .format-card--featured p,
.rps-methode .format-card--featured .format-card__list li { color: rgba(255, 255, 255, 0.85); }

.rps-methode .format-card__badge {
  position: absolute;
  top: 20px;
  right: 24px;
  padding: 4px 12px;
  background: var(--rps-green);
  color: white;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rps-methode .format-card__label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 12px;
}
.rps-methode .format-card--featured .format-card__label {
  color: var(--rps-green-soft);
}
.rps-methode .format-card h3 {
  font-size: 24px;
  margin: 0 0 12px 0;
}
.rps-methode .format-card__desc {
  font-size: 15px;
  color: var(--rps-grey-600);
  line-height: 1.6;
  margin: 0 0 28px 0;
}
.rps-methode .format-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rps-grey-200);
}
.rps-methode .format-card--featured .format-card__price-row {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.rps-methode .format-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--rps-navy);
  letter-spacing: -0.02em;
}
.rps-methode .format-card__price-detail {
  font-size: 13.5px;
  color: var(--rps-grey-600);
}
.rps-methode .format-card--featured .format-card__price-detail {
  color: rgba(255, 255, 255, 0.75);
}

.rps-methode .format-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.rps-methode .format-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--rps-grey-800);
  line-height: 1.55;
}
.rps-methode .format-card__list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--rps-green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================
   POURQUOI NOUS
   ============================================ */
.rps-methode .why-us {
  padding: 100px 0;
  background: var(--rps-white);
}
.rps-methode .why-us__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.rps-methode .why-us__text h2 {
  margin-bottom: 24px;
}
.rps-methode .why-us__text p {
  font-size: 17px;
  color: var(--rps-grey-600);
  line-height: 1.7;
}
.rps-methode .why-us__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rps-methode .why-us-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rps-grey-200);
  transition: padding 0.3s var(--ease);
}
.rps-methode .why-us-item:last-child { border-bottom: none; }
.rps-methode .why-us-item:hover { padding-left: 12px; }
.rps-methode .why-us-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(70, 176, 109, 0.1);
  border: 1px solid rgba(70, 176, 109, 0.2);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--rps-green);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.rps-methode .why-us-item:hover .why-us-item__icon {
  background: var(--rps-green);
  color: white;
}
.rps-methode .why-us-item__content h3 {
  font-size: 18px;
  margin: 0 0 6px 0;
}
.rps-methode .why-us-item__content p {
  font-size: 14.5px;
  color: var(--rps-grey-600);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   FAQ
   ============================================ */
.rps-methode .faq-section {
  padding: 100px 0;
  background: var(--rps-grey-50);
}
.rps-methode .faq-section__head {
  text-align: center;
  margin-bottom: 48px;
}
.rps-methode .faq-section__head .eyebrow { justify-content: center; }
.rps-methode .faq-section__head .section-intro { margin: 0 auto; }

.rps-methode .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.rps-methode .faq-item {
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.rps-methode .faq-item:hover {
  border-color: var(--rps-blue);
  box-shadow: var(--shadow);
}
.rps-methode .faq-item__question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--rps-navy);
  cursor: pointer;
}

.rps-methode .faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rps-grey-100);
  display: grid;
  place-items: center;
  color: var(--rps-blue);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.rps-methode .faq-item.open .faq-item__icon {
  background: var(--rps-blue);
  color: white;
  transform: rotate(45deg);
}
.rps-methode .faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.rps-methode .faq-item.open .faq-item__answer { max-height: 500px; }
.rps-methode .faq-item__answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--rps-grey-600);
  line-height: 1.7;
}
.rps-methode .faq-item__answer-inner strong { color: var(--rps-navy); }

/* ============================================
   CTA FINAL
   ============================================ */
.rps-methode .cta-final {
  padding: 120px 0;
  background: var(--rps-navy);
  position: relative;
  overflow: hidden;
}
.rps-methode .cta-final::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.12), transparent 60%);
}
.rps-methode .cta-final__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.rps-methode .cta-final h2 {
  color: white;
  font-size: clamp(32px, 4.5vw, 48px);
  margin-bottom: 20px;
}
.rps-methode .cta-final h2 span { color: var(--rps-green-soft); }
.rps-methode .cta-final p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
}
.rps-methode .cta-final__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.rps-methode .cta-final__reassurance {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.rps-methode .cta-final__reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .rps-methode .page-hero__inner,
  .rps-methode .why-us__layout { grid-template-columns: 1fr; gap: 48px; }
  .rps-methode .differentiators__grid,
  .rps-methode .deliverables__grid { grid-template-columns: repeat(2, 1fr); }
  .rps-methode .formats__grid { grid-template-columns: 1fr; }
  .rps-methode .timeline-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .rps-methode .timeline-step__num { width: 48px; height: 48px; font-size: 17px; }
  .rps-methode .timeline__steps::before { left: 24px; }
}

@media (max-width: 640px) {
  .rps-methode .page-hero { padding: 60px 0 60px; }
  .rps-methode .differentiators__grid,
  .rps-methode .deliverables__grid { grid-template-columns: 1fr; }
  .rps-methode .timeline-step__content { padding: 20px 22px; }
  .rps-methode .format-card { padding: 28px 24px; }
}


/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  09. PAGE — Définition des RPS
   ║  Wrapper : .rps-def
   ╚════════════════════════════════════════════════════════════════════════╝ */

.rps-def { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--rps-grey-800); -webkit-font-smoothing: antialiased; }
.rps-def h1, .rps-def h2, .rps-def h3, .rps-def h4 {
  font-family: var(--font-display); font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--rps-navy); margin: 0;
}
.rps-def p { margin: 0; }
.rps-def a { color: inherit; text-decoration: none; }
.rps-def .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.rps-def .container--narrow { max-width: var(--container-sm); }

.rps-def .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--rps-blue);
  margin-bottom: 16px;
}
.rps-def .eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--rps-green); }

.rps-def .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-family: var(--font-display); font-weight: 500;
  font-size: 15px; border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease); text-decoration: none;
}
.rps-def .btn--green { background: var(--rps-green); color: white; }
.rps-def .btn--green:hover { background: #3a9659; transform: translateY(-2px); }
.rps-def .btn--light { background: white; color: var(--rps-navy); }
.rps-def .btn--light:hover { background: var(--rps-grey-100); transform: translateY(-2px); }

.rps-def .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.rps-def .reveal.visible { opacity: 1; transform: translateY(0); }
.rps-def .reveal[data-delay="1"] { transition-delay: 0.1s; }
.rps-def .reveal[data-delay="2"] { transition-delay: 0.2s; }
.rps-def .reveal[data-delay="3"] { transition-delay: 0.3s; }

/* HERO */
.rps-def .hero {
  padding: 80px 0 80px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(30, 58, 138, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(70, 176, 109, 0.05), transparent 60%),
    var(--rps-grey-50);
}
.rps-def .hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--rps-grey-600); margin-bottom: 24px;
  font-family: var(--font-display); flex-wrap: wrap;
}
.rps-def .hero__breadcrumb a { color: var(--rps-grey-600); transition: color 0.2s; }
.rps-def .hero__breadcrumb a:hover { color: var(--rps-blue); }
.rps-def .hero__breadcrumb-sep { color: var(--rps-grey-400); }
.rps-def .hero__inner { text-align: center; max-width: 820px; margin: 0 auto; }
.rps-def .hero__inner .eyebrow { justify-content: center; }
.rps-def .hero__title {
  font-size: clamp(36px, 5vw, 56px); line-height: 1.08; margin-bottom: 24px;
}
.rps-def .hero__title em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--rps-blue); font-size: clamp(42px, 6.1vw, 70px);}
.rps-def .hero__subtitle {
  font-size: 19px; line-height: 1.65; color: var(--rps-grey-600);
  max-width: 720px; margin: 0 auto;
}

/* DÉFINITION CENTRALE */
.rps-def .definition-section { padding: 100px 0; background: white; }
.rps-def .definition__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.rps-def .definition__head .eyebrow { justify-content: center; }
.rps-def .definition__head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 20px; }
.rps-def .definition__head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--rps-blue); font-size: clamp(36px, 5vw, 70px); }

.rps-def .definition-box {
  max-width: 880px; margin: 0 auto 48px;
  padding: 40px 48px;
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-navy-soft) 100%);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.rps-def .definition-box::before {
  content: '"'; position: absolute; top: -40px; left: 20px;
  font-family: var(--font-serif); font-size: 240px;
  color: rgba(70, 176, 109, 0.15); line-height: 1;
}
.rps-def .definition-box__label {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--rps-green-soft); margin-bottom: 16px;
}
.rps-def .definition-box p {
  position: relative; z-index: 1;
  color: white; font-size: 22px; line-height: 1.55;
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  margin-bottom: 16px;
}
.rps-def .definition-box__source {
  position: relative; z-index: 1;
  font-size: 14px; color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
}

.rps-def .definition__prose {
  max-width: 720px; margin: 0 auto;
  font-size: 17px; line-height: 1.8; color: var(--rps-grey-600);
}
.rps-def .definition__prose p { margin-bottom: 20px; }
.rps-def .definition__prose strong { color: var(--rps-navy); font-weight: 600; }

/* 6 FAMILLES */
.rps-def .families {
  padding: 100px 0;
  background: var(--rps-grey-50);
}
.rps-def .families__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.rps-def .families__head .eyebrow { justify-content: center; }
.rps-def .families__head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 20px; }
.rps-def .families__head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--rps-blue); font-size: clamp(36px, 5vw, 70px); }
.rps-def .families__head p { font-size: 17px; color: var(--rps-grey-600); line-height: 1.7; }

.rps-def .families__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 1080px; margin: 0 auto;
}

.rps-def .family-card {
  display: flex; gap: 20px;
  padding: 28px 32px; background: white;
  border: 1px solid var(--rps-grey-200); border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.rps-def .family-card:hover {
  transform: translateY(-4px); border-color: var(--rps-blue);
  box-shadow: var(--shadow-lg);
}
.rps-def .family-card__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  display: grid; place-items: center;
}
.rps-def .family-card__num {
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  color: var(--rps-blue);
}
.rps-def .family-card h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.3; }
.rps-def .family-card p { font-size: 14px; color: var(--rps-grey-600); line-height: 1.6; }
.rps-def .family-card--1 .family-card__icon { background: rgba(30, 58, 138, 0.08); }
.rps-def .family-card--2 .family-card__icon { background: rgba(217, 119, 6, 0.1); }
.rps-def .family-card--2 .family-card__num { color: var(--rps-amber); }
.rps-def .family-card--3 .family-card__icon { background: rgba(220, 38, 38, 0.08); }
.rps-def .family-card--3 .family-card__num { color: var(--rps-red); }
.rps-def .family-card--4 .family-card__icon { background: rgba(70, 176, 109, 0.1); }
.rps-def .family-card--4 .family-card__num { color: var(--rps-green); }
.rps-def .family-card--5 .family-card__icon { background: rgba(124, 58, 237, 0.08); }
.rps-def .family-card--5 .family-card__num { color: var(--rps-purple); }
.rps-def .family-card--6 .family-card__icon { background: rgba(13, 27, 61, 0.06); }

/* CADRE LÉGAL */
.rps-def .legal-frame {
  padding: 100px 0; background: white;
}
.rps-def .legal-frame__layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
.rps-def .legal-frame__intro h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 20px; }
.rps-def .legal-frame__intro h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--rps-blue); font-size: clamp(34px, 4.8vw, 70px); }
.rps-def .legal-frame__intro p {
  font-size: 17px; color: var(--rps-grey-600); line-height: 1.75;
  margin-bottom: 16px;
}
.rps-def .legal-frame__intro strong { color: var(--rps-navy); }

.rps-def .legal-articles {
  display: flex; flex-direction: column; gap: 16px;
}
.rps-def .legal-article {
  padding: 24px 28px;
  background: var(--rps-grey-50);
  border-left: 4px solid var(--rps-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: all 0.3s var(--ease);
}
.rps-def .legal-article:hover {
  background: white;
  border-left-color: var(--rps-green);
  box-shadow: var(--shadow);
}
.rps-def .legal-article__num {
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 12px; font-weight: 700;
  color: var(--rps-blue); margin-bottom: 8px; letter-spacing: 0.05em;
}
.rps-def .legal-article h4 { font-size: 16px; margin-bottom: 8px; }
.rps-def .legal-article p { font-size: 14px; color: var(--rps-grey-600); line-height: 1.6; }

/* PASSERELLES → FICHES */
.rps-def .bridges {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-navy-soft) 100%);
  position: relative; overflow: hidden;
}
.rps-def .bridges::before {
  content: ''; position: absolute.rps-def .families__head h2 em; top: -30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.1), transparent 60%);
}
.rps-def .bridges__head { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto 48px; }
.rps-def .bridges__head .eyebrow { justify-content: center; color: var(--rps-green-soft); }
.rps-def .bridges__head .eyebrow::before { background: var(--rps-green-soft); }
.rps-def .bridges__head h2 { color: white; font-size: clamp(28px, 4vw, 38px); margin-bottom: 20px; }
.rps-def .bridges__head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--rps-green-soft); font-size: clamp(40px, 5.5vw, 70px); }
.rps-def .bridges__head p { color: rgba(255, 255, 255, 0.85); font-size: 17px; line-height: 1.7; }

.rps-def .bridges__cta {
  position: relative; z-index: 1; text-align: center; margin-top: 32px;
}

/* MÉTHODE BRIDGE */
.rps-def .method-link {
  padding: 100px 0; background: var(--rps-grey-50);
}
.rps-def .method-link__inner {
  max-width: 880px; margin: 0 auto; text-align: center;
}
.rps-def .method-link__inner h2 {
  font-size: clamp(28px, 4vw, 38px); margin-bottom: 20px;
}
.rps-def .method-link__inner h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--rps-blue); font-size: clamp(36px, 5vw, 70px); }
.rps-def .method-link__inner p {
  font-size: 17px; color: var(--rps-grey-600); line-height: 1.75;
  margin-bottom: 32px;
}
.rps-def .method-link__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* CTA FINAL */
.rps-def .cta-final {
  padding: 100px 0; background: var(--rps-navy);
  position: relative; overflow: hidden;
}
.rps-def .cta-final::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.12), transparent 60%);
}
.rps-def .cta-final__inner {
  position: relative; z-index: 1; text-align: center;
  max-width: 720px; margin: 0 auto;
}
.rps-def .cta-final h2 { color: white; font-size: clamp(28px, 4vw, 40px); margin-bottom: 20px; }
.rps-def .cta-final h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--rps-green-soft); font-size: clamp(36px, 5vw, 70px); }
.rps-def .cta-final p { font-size: 17px; color: rgba(255, 255, 255, 0.85); line-height: 1.7; margin-bottom: 36px; }
.rps-def .cta-final__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .rps-def .hero { padding: 60px 0; }
  .rps-def .definition-section, .rps-def .families, .rps-def .legal-frame,
  .rps-def .bridges, .rps-def .method-link, .rps-def .cta-final { padding: 60px 0; }
  .rps-def .families__grid { grid-template-columns: 1fr; }
  .rps-def .legal-frame__layout { grid-template-columns: 1fr; gap: 40px; }
  .rps-def .definition-box { padding: 28px 24px; }
  .rps-def .definition-box p { font-size: 18px; }
}


/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  10. PAGE — Fiches Thématiques (parapluie)
   ║  Wrapper : .rps-themes
   ╚════════════════════════════════════════════════════════════════════════╝ */

.rps-themes {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--rps-grey-800);
  -webkit-font-smoothing: antialiased;
}
.rps-themes h1, .rps-themes h2, .rps-themes h3, .rps-themes h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rps-navy);
  margin: 0;
}
.rps-themes p { margin: 0; }
.rps-themes a { color: inherit; text-decoration: none; }

.rps-themes .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.rps-themes .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--rps-blue);
  margin-bottom: 16px;
}
.rps-themes .eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--rps-green); }

.rps-themes .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.rps-themes .reveal.visible { opacity: 1; transform: translateY(0); }
.rps-themes .reveal[data-delay="1"] { transition-delay: 0.1s; }
.rps-themes .reveal[data-delay="2"] { transition-delay: 0.2s; }

/* HERO */
.rps-themes .hero {
  padding: 80px 0 80px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(30, 58, 138, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(70, 176, 109, 0.05), transparent 60%),
    var(--rps-grey-50);
}
.rps-themes .hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--rps-grey-600); margin-bottom: 24px;
  font-family: var(--font-display); flex-wrap: wrap;
}
.rps-themes .hero__breadcrumb a { color: var(--rps-grey-600); transition: color 0.2s; }
.rps-themes .hero__breadcrumb a:hover { color: var(--rps-blue); }
.rps-themes .hero__breadcrumb-sep { color: var(--rps-grey-400); }
.rps-themes .hero__inner { text-align: center; max-width: 820px; margin: 0 auto; }
.rps-themes .hero__inner .eyebrow { justify-content: center; }
.rps-themes .hero__title {
  font-size: clamp(36px, 5vw, 56px); line-height: 1.08; margin-bottom: 24px;
}
.rps-themes .hero__title em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--rps-blue); font-size: clamp(46px, 6.2vw, 70px); }
.rps-themes .hero__subtitle {
  font-size: 19px; line-height: 1.65; color: var(--rps-grey-600);
  max-width: 720px; margin: 0 auto 32px;
}
.rps-themes .hero__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 720px; margin: 0 auto;
  padding-top: 36px; border-top: 1px solid var(--rps-grey-200);
}
.rps-themes .hero__stat { text-align: center; }
.rps-themes .hero__stat-num {
  font-family: var(--font-display); font-weight: 800; font-size: 36px;
  color: var(--rps-blue); line-height: 1; margin-bottom: 4px;
}
.rps-themes .hero__stat-label {
  font-size: 13px; color: var(--rps-grey-600); line-height: 1.4;
}

/* FILTRE / NAVIGATION */
.rps-themes .filter-section { padding: 40px 0 0; background: var(--rps-white); }
.rps-themes .filter-card {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  padding: 20px 24px; background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200); border-radius: 100px;
  max-width: fit-content; margin: 0 auto;
}
.rps-themes .filter-btn {
  padding: 8px 18px; background: transparent; border: 1px solid transparent;
  border-radius: 100px; cursor: pointer;
  font-family: var(--font-display); font-weight: 500; font-size: 13.5px;
  color: var(--rps-grey-600); transition: all 0.2s var(--ease);
}
.rps-themes .filter-btn:hover { background: var(--rps-white); color: var(--rps-navy); }
.rps-themes .filter-btn--active {
  background: var(--rps-navy); color: var(--rps-white); border-color: var(--rps-navy);
}
.rps-themes .filter-btn--active:hover { background: var(--rps-navy); color: white; }

/* CATÉGORIES */
.rps-themes .category {
  padding: 64px 0;
  background: var(--rps-white);
}
.rps-themes .category--alt { background: var(--rps-grey-50); }

.rps-themes .category__head {
  display: grid; grid-template-columns: auto 1fr; gap: 24px;
  align-items: center; max-width: 980px; margin: 0 auto 40px;
  padding-bottom: 24px; border-bottom: 2px solid var(--rps-grey-200);
}
.rps-themes .category__icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: grid; place-items: center; color: white; flex-shrink: 0;
}
.rps-themes .category__icon--epuisement { background: linear-gradient(135deg, var(--rps-amber) 0%, #b45309 100%); }
.rps-themes .category__icon--tension { background: linear-gradient(135deg, var(--rps-blue) 0%, var(--rps-navy) 100%); }
.rps-themes .category__icon--violence { background: linear-gradient(135deg, var(--rps-red) 0%, #991b1b 100%); }
.rps-themes .category__icon--crise { background: linear-gradient(135deg, var(--rps-purple) 0%, #5b21b6 100%); }

.rps-themes .category__title-wrap h2 {
  font-size: clamp(24px, 3vw, 32px); margin-bottom: 6px;
}
.rps-themes .category__title-wrap p {
  font-size: 15px; color: var(--rps-grey-600); line-height: 1.55;
}

.rps-themes .fiches-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px; max-width: 1200px; margin: 0 auto;
}

.rps-themes .fiche-card {
  display: flex; flex-direction: column;
  padding: 28px 28px; background: var(--rps-white);
  border: 1px solid var(--rps-grey-200); border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit;
}
.rps-themes .fiche-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.rps-themes .fiche-card--epuisement::before { background: var(--rps-amber); }
.rps-themes .fiche-card--tension::before { background: var(--rps-blue); }
.rps-themes .fiche-card--violence::before { background: var(--rps-red); }
.rps-themes .fiche-card--crise::before { background: var(--rps-purple); }
.rps-themes .fiche-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.rps-themes .fiche-card:hover::before { transform: scaleX(1); }

.rps-themes .fiche-card__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 12px; margin-bottom: 16px;
}
.rps-themes .fiche-card__num {
  display: inline-block; padding: 4px 12px;
  background: var(--rps-grey-100); color: var(--rps-grey-600);
  border-radius: 100px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 11px; font-weight: 600;
}
.rps-themes .fiche-card--epuisement .fiche-card__num { background: var(--rps-amber-soft); color: #92400e; }
.rps-themes .fiche-card--tension .fiche-card__num { background: rgba(30, 58, 138, 0.08); color: var(--rps-blue); }
.rps-themes .fiche-card--violence .fiche-card__num { background: var(--rps-red-soft); color: var(--rps-red); }
.rps-themes .fiche-card--crise .fiche-card__num { background: var(--rps-purple-soft); color: var(--rps-purple); }

.rps-themes .fiche-card__badge {
  font-size: 11px; padding: 3px 10px;
  background: var(--rps-green-soft); color: #14532d;
  border-radius: 100px; font-family: var(--font-display); font-weight: 600;
  letter-spacing: 0.05em;
}

.rps-themes .fiche-card h3 {
  font-size: 19px; margin-bottom: 10px; line-height: 1.3;
}
.rps-themes .fiche-card__desc {
  font-size: 14px; color: var(--rps-grey-600); line-height: 1.6; margin-bottom: 20px;
  flex: 1;
}

.rps-themes .fiche-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--rps-grey-100);
}
.rps-themes .fiche-card__meta {
  font-size: 12px; color: var(--rps-grey-400);
  font-family: var(--font-display); font-weight: 500;
}
.rps-themes .fiche-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  color: var(--rps-blue); transition: gap 0.2s var(--ease);
}
.rps-themes .fiche-card:hover .fiche-card__cta { gap: 10px; }

/* CTA */
.rps-themes .cta-final {
  padding: 100px 0; background: var(--rps-navy);
  position: relative; overflow: hidden;
}
.rps-themes .cta-final::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.12), transparent 60%);
}
.rps-themes .cta-final__inner {
  position: relative; z-index: 1; text-align: center;
  max-width: 720px; margin: 0 auto;
}
.rps-themes .cta-final h2 { color: white; font-size: clamp(28px, 4vw, 40px); margin-bottom: 20px; }
.rps-themes .cta-final h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--rps-green-soft); }
.rps-themes .cta-final p { font-size: 17px; color: rgba(255, 255, 255, 0.85); line-height: 1.7; margin-bottom: 36px; }
.rps-themes .cta-final__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.rps-themes .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-family: var(--font-display); font-weight: 500;
  font-size: 15px; border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease); text-decoration: none;
}
.rps-themes .btn--green { background: var(--rps-green); color: var(--rps-white); }
.rps-themes .btn--green:hover { background: #3a9659; transform: translateY(-2px); }
.rps-themes .btn--light { background: var(--rps-white); color: var(--rps-navy); }
.rps-themes .btn--light:hover { background: var(--rps-grey-100); transform: translateY(-2px); }

@media (max-width: 768px) {
  .rps-themes .hero { padding: 60px 0; }
  .rps-themes .hero__stats { grid-template-columns: 1fr; gap: 16px; }
  .rps-themes .category { padding: 48px 0; }
  .rps-themes .category__head { grid-template-columns: 1fr; text-align: center; }
  .rps-themes .category__icon { margin: 0 auto; }
  .rps-themes .fiches-grid { grid-template-columns: 1fr; }
  .rps-themes .cta-final { padding: 70px 0; }
}


/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  11. PAGE — Nos Expertises
   ║  Wrapper : .rps-expertises
   ╚════════════════════════════════════════════════════════════════════════╝ */

.rps-expertises { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--rps-grey-800); -webkit-font-smoothing: antialiased; }
.rps-expertises h1, .rps-expertises h2, .rps-expertises h3, .rps-expertises h4 {
  font-family: var(--font-display); font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--rps-navy); margin: 0;
}
.rps-expertises p { margin: 0; }
.rps-expertises a { color: inherit; text-decoration: none; }
.rps-expertises .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.rps-expertises .container--narrow { max-width: var(--container-sm); }

.rps-expertises .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--rps-blue);
  margin-bottom: 16px;
}
.rps-expertises .eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--rps-green); }

.rps-expertises .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-family: var(--font-display); font-weight: 500;
  font-size: 15px; border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease); text-decoration: none;
}
.rps-expertises .btn--primary { background: var(--rps-blue); color: white; }
.rps-expertises .btn--primary:hover { background: var(--rps-navy); transform: translateY(-2px); }
.rps-expertises .btn--green { background: var(--rps-green); color: white; }
.rps-expertises .btn--green:hover { background: #3a9659; transform: translateY(-2px); }
.rps-expertises .btn--light { background: white; color: var(--rps-navy); }
.rps-expertises .btn--light:hover { background: var(--rps-grey-100); transform: translateY(-2px); }
.rps-expertises .btn--ghost { background: transparent; color: var(--rps-navy); border: 1.5px solid var(--rps-grey-200); }
.rps-expertises .btn--ghost:hover { border-color: var(--rps-navy); background: var(--rps-grey-50); }

.rps-expertises .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.rps-expertises .reveal.visible { opacity: 1; transform: translateY(0); }
.rps-expertises .reveal[data-delay="1"] { transition-delay: 0.1s; }
.rps-expertises .reveal[data-delay="2"] { transition-delay: 0.2s; }
.rps-expertises .reveal[data-delay="3"] { transition-delay: 0.3s; }

/* HERO */
.rps-expertises .hero {
  padding: 80px 0 80px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(30, 58, 138, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(70, 176, 109, 0.05), transparent 60%),
    var(--rps-grey-50);
}
.rps-expertises .hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--rps-grey-600); margin-bottom: 24px;
  font-family: var(--font-display); flex-wrap: wrap;
}
.rps-expertises .hero__breadcrumb a { color: var(--rps-grey-600); transition: color 0.2s; }
.rps-expertises .hero__breadcrumb a:hover { color: var(--rps-blue); }
.rps-expertises .hero__breadcrumb-sep { color: var(--rps-grey-400); }
.rps-expertises .hero__inner { text-align: center; max-width: 820px; margin: 0 auto; }
.rps-expertises .hero__inner .eyebrow { justify-content: center; }
.rps-expertises .hero__title {
  font-size: clamp(36px, 5vw, 56px); line-height: 1.08; margin-bottom: 24px;
}
.rps-expertises .hero__title em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--rps-blue); font-size: clamp(46px, 6.1vw, 70px); }
.rps-expertises .hero__subtitle {
  font-size: 19px; line-height: 1.65; color: var(--rps-grey-600);
  max-width: 720px; margin: 0 auto;
}

/* OFFRES */
.rps-expertises .offers { padding: 100px 0; background: var(--rps-white); }
.rps-expertises .offers__intro { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.rps-expertises .offers__intro .eyebrow { justify-content: center; }
.rps-expertises .offers__intro h2 {
  font-size: clamp(28px, 4vw, 42px); margin-bottom: 20px;
}
.rps-expertises .offers__intro p { font-size: 18px; color: var(--rps-grey-600); line-height: 1.7; }

.rps-expertises .offers__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.rps-expertises .offer-card {
  display: flex; flex-direction: column;
  padding: 36px 32px; background: var(--rps-white);
  border: 1px solid var(--rps-grey-200); border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.rps-expertises .offer-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.rps-expertises .offer-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-color: var(--rps-blue);
}
.rps-expertises .offer-card:hover::before { transform: scaleX(1); }
.rps-expertises .offer-card--diagnostic::before { background: var(--rps-green); }
.rps-expertises .offer-card--crisis::before { background: var(--rps-amber); }
.rps-expertises .offer-card--academy::before { background: var(--rps-blue); }

.rps-expertises .offer-card--featured {
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-navy-soft) 100%);
  color: white; border-color: var(--rps-navy);
}
.rps-expertises .offer-card--featured::before { background: var(--rps-green); transform: scaleX(1); }
.rps-expertises .offer-card--featured h3 { color: white; }
.rps-expertises .offer-card--featured .offer-card__desc,
.rps-expertises .offer-card--featured .offer-card__item { color: rgba(255, 255, 255, 0.85); }

.rps-expertises .offer-card__num {
  display: inline-block; padding: 4px 12px;
  background: var(--rps-grey-100); color: var(--rps-grey-600);
  border-radius: 100px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 11px; font-weight: 600; margin-bottom: 16px; width: fit-content;
}
.rps-expertises .offer-card--featured .offer-card__num {
  background: rgba(70, 176, 109, 0.2); color: var(--rps-green-soft);
}

.rps-expertises .offer-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
}
.rps-expertises .offer-card--diagnostic .offer-card__icon { background: rgba(70, 176, 109, 0.1); color: var(--rps-green); }
.rps-expertises .offer-card--crisis .offer-card__icon { background: rgba(217, 119, 6, 0.1); color: var(--rps-amber); }
.rps-expertises .offer-card--academy .offer-card__icon { background: rgba(30, 58, 138, 0.08); color: var(--rps-blue); }
.rps-expertises .offer-card--featured .offer-card__icon { background: rgba(70, 176, 109, 0.2); color: var(--rps-green-soft); }

.rps-expertises .offer-card h3 {
  font-size: 22px; margin-bottom: 10px;
}
.rps-expertises .offer-card__subtitle {
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--rps-blue); margin-bottom: 16px; letter-spacing: 0.05em;
}
.rps-expertises .offer-card--featured .offer-card__subtitle { color: var(--rps-green-soft); }
.rps-expertises .offer-card__desc {
  font-size: 14.5px; color: var(--rps-grey-600); line-height: 1.65;
  margin-bottom: 24px;
}

.rps-expertises .offer-card__divider {
  height: 1px; background: var(--rps-grey-200); margin: 20px 0;
}
.rps-expertises .offer-card--featured .offer-card__divider { background: rgba(255, 255, 255, 0.15); }

.rps-expertises .offer-card__items {
  list-style: none; padding: 0; margin: 0 0 24px 0;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.rps-expertises .offer-card__item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.55;
}
.rps-expertises .offer-card__item-icon {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  color: var(--rps-green);
}
.rps-expertises .offer-card--featured .offer-card__item-icon { color: var(--rps-green-soft); }

.rps-expertises .offer-card__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; width: 100%;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  border-radius: var(--radius-sm); transition: all 0.3s var(--ease);
}
.rps-expertises .offer-card--diagnostic .offer-card__cta { background: var(--rps-green); color: white; }
.rps-expertises .offer-card--diagnostic .offer-card__cta:hover { background: #3a9659; }
.rps-expertises .offer-card--crisis .offer-card__cta { background: var(--rps-amber); color: white; }
.rps-expertises .offer-card--crisis .offer-card__cta:hover { background: #b45309; }
.rps-expertises .offer-card--academy .offer-card__cta { background: var(--rps-blue); color: white; }
.rps-expertises .offer-card--academy .offer-card__cta:hover { background: var(--rps-navy); }
.rps-expertises .offer-card--featured .offer-card__cta {
  background: white; color: var(--rps-navy);
}
.rps-expertises .offer-card--featured .offer-card__cta:hover { background: var(--rps-grey-100); }

/* APPROCHE */
.rps-expertises .approach {
  padding: 100px 0; background: var(--rps-grey-50);
}
.rps-expertises .approach__layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.rps-expertises .approach__content h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 20px; }
.rps-expertises .approach__content h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--rps-blue); }
.rps-expertises .approach__content p { font-size: 17px; color: var(--rps-grey-600); line-height: 1.75; margin-bottom: 16px; }
.rps-expertises .approach__content strong { color: var(--rps-navy); }

.rps-expertises .approach__pillars {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.rps-expertises .pillar {
  display: flex; gap: 16px;
  padding: 20px 24px; background: white;
  border: 1px solid var(--rps-grey-200); border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.rps-expertises .pillar:hover {
  transform: translateX(4px); border-color: var(--rps-blue);
  box-shadow: var(--shadow);
}
.rps-expertises .pillar__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(30, 58, 138, 0.08); border-radius: 10px;
  display: grid; place-items: center; color: var(--rps-blue);
}
.rps-expertises .pillar h4 { font-size: 16px; margin-bottom: 4px; }
.rps-expertises .pillar p { font-size: 14px; color: var(--rps-grey-600); line-height: 1.55; }

/* SECTEURS */
.rps-expertises .sectors { padding: 100px 0; background: var(--rps-white); }
.rps-expertises .sectors__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.rps-expertises .sectors__head .eyebrow { justify-content: center; }
.rps-expertises .sectors__head h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 20px; }
.rps-expertises .sectors__head p { font-size: 17px; color: var(--rps-grey-600); line-height: 1.7; }

/* Correction section secteurs — Nos expertises */
.rps-expertises section.sectors .sectors__grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

@media (max-width: 900px) {
  .rps-expertises section.sectors .sectors__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .rps-expertises section.sectors .sectors__grid {
    grid-template-columns: 1fr !important;
  }
}

.rps-expertises .sector-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 20px; background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200); border-radius: var(--radius);
  text-align: center; transition: all 0.3s var(--ease);
}
.rps-expertises .sector-card:hover {
  transform: translateY(-4px); border-color: var(--rps-blue);
  background: white; box-shadow: var(--shadow);
}
.rps-expertises .sector-card__icon {
  width: 44px; height: 44px; background: white;
  border: 1px solid var(--rps-grey-200); border-radius: 10px;
  display: grid; place-items: center; color: var(--rps-blue);
  transition: all 0.3s var(--ease);
}
.rps-expertises .sector-card:hover .sector-card__icon {
  background: var(--rps-blue); border-color: var(--rps-blue); color: white;
}
.rps-expertises .sector-card h4 { font-size: 14px; line-height: 1.3; }

/* PROCESS */
.rps-expertises .process { padding: 100px 0; background: var(--rps-grey-50); }
.rps-expertises .process__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.rps-expertises .process__head .eyebrow { justify-content: center; }
.rps-expertises .process__head h2 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 20px; }
.rps-expertises .process__head p { font-size: 17px; color: var(--rps-grey-600); line-height: 1.7; }

.rps-expertises .process__steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
  position: relative;
}
.rps-expertises .process__steps::before {
  content: ''; position: absolute; top: 28px; left: 8%; right: 8%;
  height: 2px; background: linear-gradient(to right, var(--rps-blue), var(--rps-green));
  opacity: 0.2;
}
.rps-expertises .process-step {
  position: relative; text-align: center;
}
.rps-expertises .process-step__num {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: white; border: 2px solid var(--rps-blue);
  border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: var(--rps-blue); position: relative; z-index: 1;
  transition: all 0.3s var(--ease);
}
.rps-expertises .process-step:hover .process-step__num {
  background: var(--rps-blue); color: white; transform: scale(1.05);
}
.rps-expertises .process-step h4 { font-size: 16px; margin-bottom: 8px; }
.rps-expertises .process-step p { font-size: 13.5px; color: var(--rps-grey-600); line-height: 1.55; }

/* CTA */
.rps-expertises .cta-final {
  padding: 100px 0; background: var(--rps-navy);
  position: relative; overflow: hidden;
}
.rps-expertises .cta-final::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.12), transparent 60%);
}
.rps-expertises .cta-final__inner {
  position: relative; z-index: 1; text-align: center;
  max-width: 720px; margin: 0 auto;
}
.rps-expertises .cta-final h2 { color: white; font-size: clamp(28px, 4vw, 40px); margin-bottom: 20px; }
.rps-expertises .cta-final h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--rps-green-soft); }
.rps-expertises .cta-final p { font-size: 17px; color: rgba(255, 255, 255, 0.85); line-height: 1.7; margin-bottom: 36px; }
.rps-expertises .cta-final__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .rps-expertises .offers__grid { grid-template-columns: 1fr; }
  .rps-expertises .approach__layout { grid-template-columns: 1fr; gap: 40px; }
  .rps-expertises .process__steps { grid-template-columns: repeat(2, 1fr); }
  .rps-expertises .process__steps::before { display: none; }
}
@media (max-width: 640px) {
  .rps-expertises .hero { padding: 60px 0; }
  .rps-expertises .offers, .rps-expertises .approach, .rps-expertises .sectors,
  .rps-expertises .process, .rps-expertises .cta-final { padding: 60px 0; }
  .rps-expertises .process__steps { grid-template-columns: 1fr; }
}


/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  12. PAGE — Mentions Légales
   ║  Wrapper : .rps-legal
   ╚════════════════════════════════════════════════════════════════════════╝ */

.rps-legal {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--rps-grey-800);
  -webkit-font-smoothing: antialiased;
}
.rps-legal h1, .rps-legal h2, .rps-legal h3, .rps-legal h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--rps-navy);
  margin: 0;
}
.rps-legal p { margin: 0; }
.rps-legal a { color: var(--rps-blue); text-decoration: underline; transition: color 0.2s; }
.rps-legal a:hover { color: var(--rps-navy); }
.rps-legal strong { color: var(--rps-navy); font-weight: 600; }

.rps-legal .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.rps-legal .container--narrow { max-width: var(--container-sm); }

/* ============================================
   ANIMATIONS
   ============================================ */
.rps-legal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.rps-legal .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.rps-legal .reveal[data-delay="1"] { transition-delay: 0.1s; }
.rps-legal .reveal[data-delay="2"] { transition-delay: 0.2s; }

/* ============================================
   HERO
   ============================================ */
.rps-legal .hero {
  position: relative;
  padding: 80px 0 64px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(30, 58, 138, 0.06), transparent 60%),
    var(--rps-grey-50);
  overflow: hidden;
}
.rps-legal .hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--rps-grey-600);
  margin-bottom: 24px;
  font-family: var(--font-display);
  flex-wrap: wrap;
}
.rps-legal .hero__breadcrumb a { color: var(--rps-grey-600); text-decoration: none; transition: color 0.2s; }
.rps-legal .hero__breadcrumb a:hover { color: var(--rps-blue); }
.rps-legal .hero__breadcrumb-sep { color: var(--rps-grey-400); }

.rps-legal .hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--rps-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.rps-legal .hero__title {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.rps-legal .hero__subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: var(--rps-grey-600);
  max-width: 720px;
}
.rps-legal .hero__meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  margin-top: 32px;
  border-top: 1px solid var(--rps-grey-200);
}
.rps-legal .hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--rps-grey-600);
  font-family: var(--font-display);
}
.rps-legal .hero__meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--rps-blue);
  flex-shrink: 0;
}
.rps-legal .hero__meta-item strong { color: var(--rps-navy); font-weight: 600; }

/* ============================================
   TOC
   ============================================ */
.rps-legal .toc-section {
  padding: 40px 0;
  background: var(--rps-white);
  border-bottom: 1px solid var(--rps-grey-100);
}
.rps-legal .toc-card {
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  padding: 28px 36px;
}
.rps-legal .toc-card__label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rps-legal .toc-card__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rps-green);
}
.rps-legal .toc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px;
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
}
.rps-legal .toc-list li { counter-increment: toc; }
.rps-legal .toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--rps-navy);
  text-decoration: none;
  transition: all 0.2s var(--ease);
}
.rps-legal .toc-list a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--rps-green);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 24px;
}
.rps-legal .toc-list a:hover { color: var(--rps-blue); padding-left: 4px; }

/* ============================================
   PLACEHOLDER WARNING
   ============================================ */
.rps-legal .placeholder-warning {
  padding: 28px 32px;
  background: var(--rps-amber-soft);
  border: 1px solid #fde68a;
  border-left: 4px solid var(--rps-amber);
  border-radius: var(--radius);
  margin: 32px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.rps-legal .placeholder-warning__icon {
  width: 32px;
  height: 32px;
  background: var(--rps-amber);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
}
.rps-legal .placeholder-warning h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #92400e;
}
.rps-legal .placeholder-warning p {
  font-size: 14px;
  color: #78350f;
  line-height: 1.6;
}

/* ============================================
   CONTENT
   ============================================ */
.rps-legal .content {
  padding: 56px 0;
}
.rps-legal .content--alt {
  background: var(--rps-grey-50);
}

.rps-legal .legal-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--rps-grey-200);
}
.rps-legal .legal-section:last-of-type { border-bottom: none; }
.rps-legal .legal-section__num {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(30, 58, 138, 0.08);
  color: var(--rps-blue);
  border-radius: 100px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.rps-legal .legal-section h2 {
  font-size: 28px;
  margin-bottom: 24px;
  scroll-margin-top: 100px;
}
.rps-legal .legal-section h3 {
  font-size: 18px;
  margin: 28px 0 12px;
}
.rps-legal .legal-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--rps-grey-800);
  margin-bottom: 16px;
}
.rps-legal .legal-section p:last-child { margin-bottom: 0; }
.rps-legal .legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rps-legal .legal-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--rps-grey-800);
  line-height: 1.65;
}
.rps-legal .legal-section ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--rps-green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}

/* Boîte de coordonnées */
.rps-legal .info-box {
  padding: 28px 32px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  margin: 24px 0;
}
.rps-legal .info-box__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--rps-navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rps-grey-100);
}
.rps-legal .info-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 14px 24px;
}
.rps-legal .info-grid__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--rps-grey-600);
  letter-spacing: 0.02em;
}
.rps-legal .info-grid__value {
  font-size: 14.5px;
  color: var(--rps-grey-800);
  line-height: 1.5;
}
.rps-legal .info-grid__value strong { color: var(--rps-navy); }

/* Placeholder visible */
.rps-legal .placeholder {
  display: inline-block;
  padding: 2px 8px;
  background: var(--rps-amber-soft);
  color: #92400e;
  border-radius: 4px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  border: 1px dashed var(--rps-amber);
}

/* ============================================
   CTA FINAL — version sobre
   ============================================ */
.rps-legal .cta-final {
  padding: 80px 0;
  background: var(--rps-navy);
  text-align: center;
}
.rps-legal .cta-final__inner {
  max-width: 600px;
  margin: 0 auto;
}
.rps-legal .cta-final h2 {
  color: white;
  font-size: clamp(24px, 3.5vw, 32px);
  margin-bottom: 16px;
}
.rps-legal .cta-final p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 28px;
}
.rps-legal .cta-final__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.rps-legal .cta-final .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.rps-legal .cta-final .btn--light {
  background: var(--rps-white);
  color: var(--rps-navy);
}
.rps-legal .cta-final .btn--light:hover {
  background: var(--rps-grey-100);
  transform: translateY(-2px);
}
.rps-legal .cta-final .btn--ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.rps-legal .cta-final .btn--ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .rps-legal .hero { padding: 60px 0 48px; }
  .rps-legal .toc-list { grid-template-columns: 1fr; }
  .rps-legal .info-grid { grid-template-columns: 1fr; gap: 4px 0; }
  .rps-legal .info-grid__label { padding-top: 12px; border-top: 1px solid var(--rps-grey-100); }
  .rps-legal .info-grid > div:first-child { padding-top: 0; border-top: none; }
  .rps-legal .legal-section { padding: 28px 0; }
  .rps-legal .legal-section h2 { font-size: 22px; }
}


/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  13. PAGE — Politique de Confidentialité
   ║  Wrapper : .rps-privacy
   ╚════════════════════════════════════════════════════════════════════════╝ */

.rps-privacy {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--rps-grey-800);
  -webkit-font-smoothing: antialiased;
}
.rps-privacy h1, .rps-privacy h2, .rps-privacy h3, .rps-privacy h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--rps-navy);
  margin: 0;
}
.rps-privacy p { margin: 0; }
.rps-privacy a { color: var(--rps-blue); text-decoration: underline; transition: color 0.2s; }
.rps-privacy a:hover { color: var(--rps-navy); }
.rps-privacy strong { color: var(--rps-navy); font-weight: 600; }

.rps-privacy .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.rps-privacy .container--narrow { max-width: var(--container-sm); }

/* ============================================
   ANIMATIONS
   ============================================ */
.rps-privacy .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.rps-privacy .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.rps-privacy .reveal[data-delay="1"] { transition-delay: 0.1s; }
.rps-privacy .reveal[data-delay="2"] { transition-delay: 0.2s; }

/* ============================================
   HERO
   ============================================ */
.rps-privacy .hero {
  position: relative;
  padding: 80px 0 64px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(70, 176, 109, 0.06), transparent 60%),
    var(--rps-grey-50);
  overflow: hidden;
}
.rps-privacy .hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--rps-grey-600);
  margin-bottom: 24px;
  font-family: var(--font-display);
  flex-wrap: wrap;
}
.rps-privacy .hero__breadcrumb a { color: var(--rps-grey-600); text-decoration: none; transition: color 0.2s; }
.rps-privacy .hero__breadcrumb a:hover { color: var(--rps-blue); }
.rps-privacy .hero__breadcrumb-sep { color: var(--rps-grey-400); }

.rps-privacy .hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(70, 176, 109, 0.1);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--rps-green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.rps-privacy .hero__title {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.rps-privacy .hero__subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: var(--rps-grey-600);
  max-width: 720px;
}
.rps-privacy .hero__meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  margin-top: 32px;
  border-top: 1px solid var(--rps-grey-200);
}
.rps-privacy .hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--rps-grey-600);
  font-family: var(--font-display);
}
.rps-privacy .hero__meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--rps-green);
  flex-shrink: 0;
}
.rps-privacy .hero__meta-item strong { color: var(--rps-navy); font-weight: 600; }

/* ============================================
   ENGAGEMENT BANNER
   ============================================ */
.rps-privacy .commitment {
  padding: 40px 0;
  background: var(--rps-white);
}
.rps-privacy .commitment__card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--rps-navy) 0%, #1a2a52 100%);
  border-radius: var(--radius-lg);
  color: white;
  position: relative;
  overflow: hidden;
}
.rps-privacy .commitment__card::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.15), transparent 70%);
}
.rps-privacy .commitment__icon {
  width: 56px;
  height: 56px;
  background: rgba(70, 176, 109, 0.2);
  border: 1.5px solid var(--rps-green);
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #5cc384;
  position: relative;
  z-index: 1;
}
.rps-privacy .commitment__content { position: relative; z-index: 1; }
.rps-privacy .commitment__content h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 10px;
}
.rps-privacy .commitment__content p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin: 0;
}
.rps-privacy .commitment__content strong { color: #5cc384; }

/* ============================================
   TOC
   ============================================ */
.rps-privacy .toc-section {
  padding: 24px 0 40px;
  background: var(--rps-white);
  border-bottom: 1px solid var(--rps-grey-100);
}
.rps-privacy .toc-card {
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  padding: 28px 36px;
}
.rps-privacy .toc-card__label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rps-privacy .toc-card__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rps-green);
}
.rps-privacy .toc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px;
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
}
.rps-privacy .toc-list li { counter-increment: toc; }
.rps-privacy .toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--rps-navy);
  text-decoration: none;
  transition: all 0.2s var(--ease);
}
.rps-privacy .toc-list a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--rps-green);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 24px;
}
.rps-privacy .toc-list a:hover { color: var(--rps-blue); padding-left: 4px; }

/* ============================================
   PLACEHOLDER WARNING
   ============================================ */
.rps-privacy .placeholder-warning {
  padding: 28px 32px;
  background: var(--rps-amber-soft);
  border: 1px solid #fde68a;
  border-left: 4px solid var(--rps-amber);
  border-radius: var(--radius);
  margin: 32px 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.rps-privacy .placeholder-warning__icon {
  width: 32px;
  height: 32px;
  background: var(--rps-amber);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
}
.rps-privacy .placeholder-warning h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #92400e;
}
.rps-privacy .placeholder-warning p {
  font-size: 14px;
  color: #78350f;
  line-height: 1.6;
}
.rps-privacy .placeholder {
  display: inline-block;
  padding: 2px 8px;
  background: var(--rps-amber-soft);
  color: #92400e;
  border-radius: 4px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  border: 1px dashed var(--rps-amber);
}

/* ============================================
   CONTENT
   ============================================ */
.rps-privacy .content { padding: 56px 0; }

.rps-privacy .legal-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--rps-grey-200);
}
.rps-privacy .legal-section:last-of-type { border-bottom: none; }
.rps-privacy .legal-section__num {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(70, 176, 109, 0.1);
  color: var(--rps-green);
  border-radius: 100px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.rps-privacy .legal-section h2 {
  font-size: 28px;
  margin-bottom: 24px;
  scroll-margin-top: 100px;
}
.rps-privacy .legal-section h3 {
  font-size: 18px;
  margin: 28px 0 12px;
}
.rps-privacy .legal-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--rps-grey-800);
  margin-bottom: 16px;
}
.rps-privacy .legal-section p:last-child { margin-bottom: 0; }
.rps-privacy .legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rps-privacy .legal-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--rps-grey-800);
  line-height: 1.65;
}
.rps-privacy .legal-section ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--rps-green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 10px;
}

/* Tableaux RGPD */
.rps-privacy .data-table {
  margin: 20px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rps-grey-200);
}
.rps-privacy .data-table__head,
.rps-privacy .data-table__row {
  display: grid;
  grid-template-columns: 1.4fr 2fr 1fr;
  gap: 0;
}
.rps-privacy .data-table__head {
  background: var(--rps-navy);
}
.rps-privacy .data-table__head > div {
  padding: 14px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.rps-privacy .data-table__head > div:last-child { border-right: none; }

.rps-privacy .data-table__row {
  background: var(--rps-white);
  border-top: 1px solid var(--rps-grey-100);
  transition: background 0.2s;
}
.rps-privacy .data-table__row:hover { background: var(--rps-grey-50); }
.rps-privacy .data-table__row > div {
  padding: 16px 20px;
  font-size: 14.5px;
  color: var(--rps-grey-800);
  line-height: 1.55;
  border-right: 1px solid var(--rps-grey-100);
}
.rps-privacy .data-table__row > div:last-child { border-right: none; }
.rps-privacy .data-table__row > div:first-child {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--rps-navy);
}

/* Cookie cards */
.rps-privacy .cookies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.rps-privacy .cookie-card {
  padding: 24px 24px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.rps-privacy .cookie-card:hover {
  border-color: var(--rps-blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.rps-privacy .cookie-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.rps-privacy .cookie-card h4 {
  font-size: 16px;
  margin: 0;
}
.rps-privacy .cookie-card__type {
  padding: 3px 10px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.rps-privacy .cookie-card__type--essential {
  background: rgba(70, 176, 109, 0.1);
  color: var(--rps-green);
}
.rps-privacy .cookie-card__type--analytics {
  background: rgba(217, 119, 6, 0.1);
  color: var(--rps-amber);
}
.rps-privacy .cookie-card__type--functional {
  background: rgba(30, 58, 138, 0.08);
  color: var(--rps-blue);
}
.rps-privacy .cookie-card__desc {
  font-size: 13.5px;
  color: var(--rps-grey-600);
  line-height: 1.6;
  margin-bottom: 12px;
}
.rps-privacy .cookie-card__details {
  display: flex;
  gap: 16px;
  font-size: 12.5px;
  color: var(--rps-grey-600);
  padding-top: 12px;
  border-top: 1px solid var(--rps-grey-100);
  font-family: var(--font-display);
}
.rps-privacy .cookie-card__details strong { color: var(--rps-navy); }

/* Droits RGPD */
.rps-privacy .rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.rps-privacy .right-card {
  padding: 24px 24px;
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
}
.rps-privacy .right-card:hover {
  background: var(--rps-white);
  border-color: var(--rps-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.rps-privacy .right-card__icon {
  width: 40px;
  height: 40px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--rps-green);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.rps-privacy .right-card:hover .right-card__icon {
  background: var(--rps-green);
  border-color: var(--rps-green);
  color: white;
}
.rps-privacy .right-card h4 {
  font-size: 15px;
  margin: 0 0 4px 0;
}
.rps-privacy .right-card p {
  font-size: 13px;
  color: var(--rps-grey-600);
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   CTA FINAL
   ============================================ */
.rps-privacy .cta-final {
  padding: 80px 0;
  background: var(--rps-navy);
  text-align: center;
}
.rps-privacy .cta-final__inner {
  max-width: 600px;
  margin: 0 auto;
}
.rps-privacy .cta-final h2 {
  color: white;
  font-size: clamp(24px, 3.5vw, 32px);
  margin-bottom: 16px;
}
.rps-privacy .cta-final p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 28px;
}
.rps-privacy .cta-final__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.rps-privacy .cta-final .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.rps-privacy .cta-final .btn--light {
  background: var(--rps-white);
  color: var(--rps-navy);
}
.rps-privacy .cta-final .btn--light:hover {
  background: var(--rps-grey-100);
  transform: translateY(-2px);
}
.rps-privacy .cta-final .btn--ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.rps-privacy .cta-final .btn--ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .rps-privacy .hero { padding: 60px 0 48px; }
  .rps-privacy .toc-list { grid-template-columns: 1fr; }
  .rps-privacy .commitment__card { flex-direction: column; padding: 28px 24px; }
  .rps-privacy .cookies-grid, .rps-privacy .rights-grid { grid-template-columns: 1fr; }
  .rps-privacy .data-table__head,
  .rps-privacy .data-table__row { grid-template-columns: 1fr; }
  .rps-privacy .data-table__head > div { display: none; }
  .rps-privacy .data-table__row > div {
    border-right: none;
    border-bottom: 1px solid var(--rps-grey-100);
    padding: 12px 20px;
  }
  .rps-privacy .data-table__row > div::before {
    content: attr(data-label);
    display: block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: var(--rps-green);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .rps-privacy .legal-section h2 { font-size: 22px; }
}


/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  14. PAGE — 404 - Page erreur
   ║  Wrapper : .rps-404
   ╚════════════════════════════════════════════════════════════════════════╝ */

.rps-404 
.rps-404 { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--rps-grey-800); -webkit-font-smoothing: antialiased; }
.rps-404 h1, .rps-404 h2, .rps-404 h3, .rps-404 h4 {
  font-family: var(--font-display); font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--rps-navy); margin: 0;
}
.rps-404 p { margin: 0; }
.rps-404 a { color: inherit; text-decoration: none; }
.rps-404 .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.rps-404 .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--rps-red);
  margin-bottom: 16px;
}
.rps-404 .eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--rps-red); }

.rps-404 .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-family: var(--font-display); font-weight: 500;
  font-size: 15px; border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease); text-decoration: none;
}
.rps-404 .btn--green { background: var(--rps-green); color: white; }
.rps-404 .btn--green:hover { background: #3a9659; transform: translateY(-2px); }
.rps-404 .btn--ghost { background: white; color: var(--rps-navy); border: 1.5px solid var(--rps-grey-200); }
.rps-404 .btn--ghost:hover { border-color: var(--rps-navy); background: var(--rps-grey-50); }

.rps-404 .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.rps-404 .reveal.visible { opacity: 1; transform: translateY(0); }
.rps-404 .reveal[data-delay="1"] { transition-delay: 0.1s; }
.rps-404 .reveal[data-delay="2"] { transition-delay: 0.2s; }
.rps-404 .reveal[data-delay="3"] { transition-delay: 0.3s; }

/* HERO 404 */
.rps-404 .hero {
  padding: 80px 0 80px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(30, 58, 138, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(220, 38, 38, 0.04), transparent 60%),
    var(--rps-grey-50);
  position: relative; overflow: hidden;
}

.rps-404 .hero__inner {
  text-align: center; max-width: 780px; margin: 0 auto; position: relative; z-index: 1;
}

.rps-404 .hero__number {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(120px, 18vw, 200px); line-height: 0.85;
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-blue) 60%, var(--rps-red) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em; margin-bottom: 24px;
  position: relative;
}
.rps-404 .hero__number::after {
  content: ''; position: absolute; left: 50%; bottom: -8px;
  width: 80px; height: 4px;
  background: var(--rps-green); border-radius: 4px;
  transform: translateX(-50%);
}

.rps-404 .hero__title {
  font-size: clamp(28px, 4vw, 38px); line-height: 1.15; margin-bottom: 20px;
}
.rps-404 .hero__title em {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 500; color: var(--rps-blue);
}

.rps-404 .hero__subtitle {
  font-size: 18px; line-height: 1.7; color: var(--rps-grey-600);
  max-width: 600px; margin: 0 auto 36px;
}

.rps-404 .hero__buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* RESSOURCES POPULAIRES */
.rps-404 .resources {
  padding: 80px 0 100px; background: white;
}
.rps-404 .resources__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.rps-404 .resources__head .eyebrow { justify-content: center; color: var(--rps-blue); }
.rps-404 .resources__head .eyebrow::before { background: var(--rps-green); }
.rps-404 .resources__head h2 {
  font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px;
}
.rps-404 .resources__head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--rps-blue); }
.rps-404 .resources__head p {
  font-size: 16px; color: var(--rps-grey-600); line-height: 1.7;
}

.rps-404 .resources__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 980px; margin: 0 auto;
}

.rps-404 .resource-card {
  display: flex; flex-direction: column;
  padding: 24px 24px;
  background: white;
  border: 1px solid var(--rps-grey-200); border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit;
}
.rps-404 .resource-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.rps-404 .resource-card--methode::before { background: var(--rps-blue); }
.rps-404 .resource-card--fiches::before { background: var(--rps-green); }
.rps-404 .resource-card--expertise::before { background: var(--rps-amber); }
.rps-404 .resource-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.rps-404 .resource-card:hover::before { transform: scaleX(1); }

.rps-404 .resource-card__icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center; margin-bottom: 16px;
}
.rps-404 .resource-card--methode .resource-card__icon { background: rgba(30, 58, 138, 0.08); color: var(--rps-blue); }
.rps-404 .resource-card--fiches .resource-card__icon { background: rgba(70, 176, 109, 0.1); color: var(--rps-green); }
.rps-404 .resource-card--expertise .resource-card__icon { background: rgba(217, 119, 6, 0.1); color: var(--rps-amber); }

.rps-404 .resource-card h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.3; }
.rps-404 .resource-card p {
  font-size: 14px; color: var(--rps-grey-600); line-height: 1.55;
  margin-bottom: 16px; flex: 1;
}
.rps-404 .resource-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  color: var(--rps-blue); transition: gap 0.2s var(--ease);
}
.rps-404 .resource-card--fiches .resource-card__cta { color: var(--rps-green); }
.rps-404 .resource-card--expertise .resource-card__cta { color: var(--rps-amber); }
.rps-404 .resource-card:hover .resource-card__cta { gap: 10px; }

/* CONTACT BAS */
.rps-404 .contact-strip {
  padding: 56px 0;
  background: var(--rps-grey-50);
  border-top: 1px solid var(--rps-grey-200);
}
.rps-404 .contact-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  max-width: 880px; margin: 0 auto; text-align: center;
}
.rps-404 .contact-strip__text {
  display: flex; align-items: center; gap: 16px;
  flex: 1; min-width: 280px; text-align: left;
}
.rps-404 .contact-strip__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: white; border: 1px solid var(--rps-grey-200);
  border-radius: 12px;
  display: grid; place-items: center; color: var(--rps-blue);
}
.rps-404 .contact-strip h3 { font-size: 17px; margin-bottom: 4px; }
.rps-404 .contact-strip p { font-size: 14px; color: var(--rps-grey-600); }

@media (max-width: 768px) {
  .rps-404 .hero { padding: 60px 0; }
  .rps-404 .resources { padding: 60px 0 80px; }
  .rps-404 .resources__grid { grid-template-columns: 1fr; }
  .rps-404 .contact-strip__inner { flex-direction: column; }
  .rps-404 .contact-strip__text { text-align: center; flex-direction: column; }
}


/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  15. PAGE — Pourquoi Agir Maintenant
   ║  Wrapper : .rps-agir
   ╚════════════════════════════════════════════════════════════════════════╝ */

.rps-agir {
  font-family: var(--font-body);
  font-size: 16px; line-height: 1.65;
  color: var(--rps-grey-800);
  -webkit-font-smoothing: antialiased;
}
.rps-agir h1, .rps-agir h2, .rps-agir h3, .rps-agir h4, .rps-agir h5 {
  font-family: var(--font-display); font-weight: 700; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--rps-navy); margin: 0;
}
.rps-agir p { margin: 0; }
.rps-agir a { color: inherit; text-decoration: none; }
.rps-agir strong { color: var(--rps-navy); font-weight: 600; }
.rps-agir .container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.rps-agir .container--narrow { max-width: var(--container-sm); }
.rps-agir .container--xs { max-width: var(--container-xs); }

/* Eyebrow */
.rps-agir .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--rps-blue);
  margin-bottom: 16px;
}
.rps-agir .eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--rps-green); }
.rps-agir .eyebrow--white { color: var(--rps-green-soft); }
.rps-agir .eyebrow--white::before { background: var(--rps-green-soft); }
.rps-agir .eyebrow--amber { color: var(--rps-amber); }
.rps-agir .eyebrow--amber::before { background: var(--rps-amber); }
.rps-agir .eyebrow--red { color: var(--rps-red); }
.rps-agir .eyebrow--red::before { background: var(--rps-red); }

/* Buttons */
.rps-agir .btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-family: var(--font-display); font-weight: 500;
  font-size: 15px; border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease); text-decoration: none;
  cursor: pointer; border: none;
}
.rps-agir .btn--green { background: var(--rps-green); color: white; }
.rps-agir .btn--green:hover { background: var(--rps-green-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.rps-agir .btn--white { background: white; color: var(--rps-navy); }
.rps-agir .btn--white:hover { background: var(--rps-grey-100); transform: translateY(-2px); }
.rps-agir .btn--outline { background: transparent; color: var(--rps-navy); border: 1.5px solid var(--rps-grey-300); }
.rps-agir .btn--outline:hover { border-color: var(--rps-navy); background: var(--rps-grey-50); }
.rps-agir .btn--lg { padding: 18px 36px; font-size: 16px; }

/* Reveal */
.rps-agir .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.rps-agir .reveal.visible { opacity: 1; transform: translateY(0); }
.rps-agir .reveal[data-delay="1"] { transition-delay: 0.08s; }
.rps-agir .reveal[data-delay="2"] { transition-delay: 0.16s; }
.rps-agir .reveal[data-delay="3"] { transition-delay: 0.24s; }
.rps-agir .reveal[data-delay="4"] { transition-delay: 0.32s; }
.rps-agir .reveal[data-delay="5"] { transition-delay: 0.4s; }

/* ============================================
   HERO — Le réveil
   ============================================ */
.rps-agir .hero {
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(220, 38, 38, 0.06), transparent 60%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(30, 58, 138, 0.08), transparent 60%),
    var(--rps-grey-50);
  position: relative; overflow: hidden;
}
.rps-agir .hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--rps-grey-600); margin-bottom: 32px;
  font-family: var(--font-display); flex-wrap: wrap;
}
.rps-agir .hero__breadcrumb a { color: var(--rps-grey-600); transition: color 0.2s; }
.rps-agir .hero__breadcrumb a:hover { color: var(--rps-blue); }
.rps-agir .hero__breadcrumb-sep { color: var(--rps-grey-400); }

.rps-agir .hero__layout {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 64px; align-items: center;
}

.rps-agir .hero__content {}
.rps-agir .hero__alert {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; background: var(--rps-red-soft);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 100px; margin-bottom: 24px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  color: var(--rps-red-deep);
}
.rps-agir .hero__alert::before {
  content: ''; width: 8px; height: 8px;
  background: var(--rps-red); border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.rps-agir .hero__title {
  font-size: clamp(40px, 5.5vw, 64px); line-height: 1.05;
  margin-bottom: 24px; letter-spacing: -0.03em;
}
.rps-agir .hero__title em {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 500; color: var(--rps-blue);
}
.rps-agir .hero__title strong {
  background: linear-gradient(135deg, var(--rps-blue) 0%, var(--rps-red) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 700;
}

.rps-agir .hero__subtitle {
  font-size: 19px; line-height: 1.65; color: var(--rps-grey-600);
  margin-bottom: 32px; max-width: 580px;
}

.rps-agir .hero__cta {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* Hero shock stat */
.rps-agir .hero__shock {
  position: relative;
  padding: 40px;
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-navy-soft) 100%);
  border-radius: var(--radius-xl);
  color: white; overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.rps-agir .hero__shock::before {
  content: ''; position: absolute; top: -30%; right: -30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.15), transparent 60%);
}
.rps-agir .hero__shock::after {
  content: '€'; position: absolute; bottom: -50px; right: -20px;
  font-family: var(--font-display); font-weight: 900;
  font-size: 280px; line-height: 1;
  color: rgba(255, 255, 255, 0.04);
}
.rps-agir .hero__shock-label {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--rps-green-soft); margin-bottom: 16px;
}
.rps-agir .hero__shock-number {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(56px, 7vw, 80px); line-height: 1;
  margin-bottom: 16px; letter-spacing: -0.04em;
}
.rps-agir .hero__shock-number sup {
  font-size: 0.5em; vertical-align: super; color: var(--rps-green-soft);
  font-weight: 700; margin-left: 4px;
}
.rps-agir .hero__shock-desc {
  position: relative; z-index: 1;
  font-size: 16px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.85); margin-bottom: 20px;
}
.rps-agir .hero__shock-source {
  position: relative; z-index: 1;
  display: inline-block; padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255, 255, 255, 0.7); letter-spacing: 0.05em;
}

/* ─── Source cliquable avec icône lien ─── */

.rps-agir .hero__shock-source--link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 2;
}

.rps-agir .hero__shock-source--link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
  transform: translateY(-1px);
}

.rps-agir .hero__shock-source-icon {
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  opacity: 0.8;
  display: block;
}

.rps-agir .hero__shock-source--link:hover .hero__shock-source-icon {
  transform: translate(2px, -2px) rotate(8deg);
  opacity: 1;
}

.rps-agir .hero__shock-source--link:focus-visible {
  outline: 2px solid var(--rps-green-soft);
  outline-offset: 3px;
}

/* ============================================
   ACT 1 — État des lieux Luxembourg
   ============================================ */
.rps-agir .act-luxembourg {
  padding: 100px 0;
  background: white;
  position: relative;
}
.rps-agir .act__head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.rps-agir .act__head .eyebrow { justify-content: center; }
.rps-agir .act__head h2 {
  font-size: clamp(32px, 4.5vw, 46px); line-height: 1.1;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.rps-agir .act__head h2 em {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 500; color: var(--rps-blue); font-size: clamp(40px, 5.6vw, 56px);
}
.rps-agir .act__head p { font-size: 18px; color: var(--rps-grey-600); line-height: 1.7; }

.rps-agir .lux-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 64px;
}
.rps-agir .lux-stat {
  padding: 32px 24px;
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.rps-agir .lux-stat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--rps-blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.rps-agir .lux-stat:hover {
  transform: translateY(-6px);
  border-color: var(--rps-blue);
  background: white;
  box-shadow: var(--shadow-lg);
}
.rps-agir .lux-stat:hover::before { transform: scaleX(1); }
.rps-agir .lux-stat--alert::before { background: var(--rps-red); }
.rps-agir .lux-stat--warning::before { background: var(--rps-amber); }
.rps-agir .lux-stat--info::before { background: var(--rps-blue); }
.rps-agir .lux-stat--positive::before { background: var(--rps-green); }

.rps-agir .lux-stat__icon {
  width: 48px; height: 48px; margin: 0 auto 16px;
  background: white;
  border-radius: 12px;
  display: grid; place-items: center;
  border: 1px solid var(--rps-grey-200);
  color: var(--rps-blue);
}
.rps-agir .lux-stat--alert .lux-stat__icon { color: var(--rps-red); }
.rps-agir .lux-stat--warning .lux-stat__icon { color: var(--rps-amber); }
.rps-agir .lux-stat--positive .lux-stat__icon { color: var(--rps-green); }

.rps-agir .lux-stat__number {
  font-family: var(--font-display); font-weight: 900;
  font-size: 40px; line-height: 1;
  color: var(--rps-navy); margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.rps-agir .lux-stat__number sup {
  font-size: 0.45em; vertical-align: super;
  color: var(--rps-grey-500); font-weight: 700; margin-left: 2px;
}
.rps-agir .lux-stat__label {
  font-size: 13.5px; color: var(--rps-grey-600); line-height: 1.45;
}
.rps-agir .lux-stat__source {
  display: inline-block; margin-top: 12px;
  padding: 3px 8px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--rps-grey-500);
  background: white; border: 1px solid var(--rps-grey-200); border-radius: 4px;
}

/* Evolution chart */
.rps-agir .evolution {
  max-width: 980px; margin: 0 auto;
  padding: 48px;
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius-lg);
}
.rps-agir .evolution__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px; border-bottom: 1px solid var(--rps-grey-200);
}
.rps-agir .evolution__title h3 {
  font-size: 22px; margin-bottom: 8px;
}
.rps-agir .evolution__title p {
  font-size: 14px; color: var(--rps-grey-600);
}
.rps-agir .evolution__legend {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.rps-agir .evolution__legend-item {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 13px; font-weight: 500;
  color: var(--rps-grey-600);
}
.rps-agir .evolution__legend-dot {
  width: 12px; height: 12px; border-radius: 3px;
}
.rps-agir .evolution__chart {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  align-items: end;
  padding: 24px 0;
  min-height: 280px;
  position: relative;
}
.rps-agir .evolution__bar-group {
  display: flex; flex-direction: column; gap: 4px; align-items: center;
  height: 100%; justify-content: flex-end;
}
.rps-agir .evolution__bar-stack {
  width: 100%; display: flex; flex-direction: column; gap: 3px;
  align-items: center; justify-content: flex-end; height: 100%;
}
.rps-agir .evolution__bar {
  width: 100%; max-width: 38px;
  border-radius: 4px 4px 0 0;
  transition: all 0.3s var(--ease);
  position: relative;
  transform: scaleY(0); transform-origin: bottom;
}
.rps-agir .evolution__bar.animated { transform: scaleY(1); }
.rps-agir .evolution__bar:hover {
  filter: brightness(1.1);
}
.rps-agir .evolution__bar-value {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: var(--rps-navy); margin-bottom: 4px;
}
.rps-agir .evolution__bar--burnout { background: var(--rps-red); }
.rps-agir .evolution__bar--stress { background: var(--rps-amber); }
.rps-agir .evolution__bar--absent { background: var(--rps-blue); }
.rps-agir .evolution__year {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  color: var(--rps-grey-600);
}
.rps-agir .evolution__caption {
  font-size: 12px; color: var(--rps-grey-500);
  font-style: italic; text-align: center;
}

/* ============================================
   ACT 2 — Absentéisme invisible
   ============================================ */
.rps-agir .act-absenteeism {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-navy-deep) 100%);
  position: relative; overflow: hidden;
}
.rps-agir .act-absenteeism::before {
  content: ''; position: absolute; top: -30%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.08), transparent 60%);
}
.rps-agir .act-absenteeism .act__head h2 { color: white; }
.rps-agir .act-absenteeism .act__head p { color: rgba(255, 255, 255, 0.8); }
.rps-agir .act-absenteeism .act__head h2 em { color: var(--rps-amber); }

.rps-agir .iceberg {
  max-width: 1000px; margin: 0 auto;
  position: relative;
}
.rps-agir .iceberg__visible,
.rps-agir .iceberg__hidden {
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  position: relative;
}
.rps-agir .iceberg__visible {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
}
.rps-agir .iceberg__hidden {
  background: rgba(217, 119, 6, 0.1);
  border: 1px solid rgba(217, 119, 6, 0.2);
}
.rps-agir .iceberg__label {
  display: inline-block;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  margin-bottom: 16px;
}
.rps-agir .iceberg__visible .iceberg__label {
  background: rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.9);
}
.rps-agir .iceberg__hidden .iceberg__label {
  background: rgba(217, 119, 6, 0.25); color: var(--rps-amber);
}
.rps-agir .iceberg h3 {
  color: white; font-size: 24px; margin-bottom: 16px;
}
.rps-agir .iceberg__hidden h3 { color: var(--rps-amber); }
.rps-agir .iceberg p {
  color: rgba(255, 255, 255, 0.8); font-size: 15px; line-height: 1.7;
  margin-bottom: 20px;
}
.rps-agir .iceberg__costs {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px;
  margin-top: 20px;
}
.rps-agir .iceberg__cost {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
.rps-agir .iceberg__hidden .iceberg__cost {
  background: rgba(217, 119, 6, 0.12);
  border-color: rgba(217, 119, 6, 0.2);
}
.rps-agir .iceberg__cost-label {
  font-size: 12px; color: rgba(255, 255, 255, 0.6); margin-bottom: 4px;
  font-family: var(--font-display);
}
.rps-agir .iceberg__cost-value {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: white;
}
.rps-agir .iceberg__separator {
  display: flex; align-items: center; gap: 12px;
  margin: 24px 0;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em; text-transform: uppercase;
  justify-content: center;
}
.rps-agir .iceberg__separator::before,
.rps-agir .iceberg__separator::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* ============================================
   ACT 3 — Calculateur RPS
   ============================================ */
.rps-agir .calculator {
  padding: 100px 0;
  background: var(--rps-grey-50);
  position: relative;
}
.rps-agir .calculator__inner {
  max-width: 980px; margin: 0 auto;
}

.rps-agir .calc-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--rps-grey-200);
}
.rps-agir .calc-card__head {
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--rps-blue) 0%, var(--rps-navy) 100%);
  color: white;
  position: relative; overflow: hidden;
}
.rps-agir .calc-card__head::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.2), transparent 60%);
}
.rps-agir .calc-card__head-content { position: relative; z-index: 1; }
.rps-agir .calc-card__head h3 {
  color: white; font-size: 26px; margin-bottom: 8px;
}
.rps-agir .calc-card__head p {
  color: rgba(255, 255, 255, 0.85); font-size: 15px; line-height: 1.55;
}

.rps-agir .calc-card__body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.rps-agir .calc-inputs {
  padding: 36px 40px;
  border-right: 1px solid var(--rps-grey-200);
}
.rps-agir .calc-inputs h4 {
  font-size: 16px; margin-bottom: 24px;
  color: var(--rps-grey-800);
}

.rps-agir .calc-field {
  margin-bottom: 24px;
}
.rps-agir .calc-field__label {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.rps-agir .calc-field__label-text {
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--rps-navy);
}
.rps-agir .calc-field__label-value {
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  color: var(--rps-blue);
  padding: 3px 10px;
  background: rgba(30, 58, 138, 0.08);
  border-radius: 6px;
}

.rps-agir .calc-field__input-wrapper {
  position: relative;
}
.rps-agir .calc-field__input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  color: var(--rps-grey-800);
  background: var(--rps-grey-50);
  border: 1.5px solid var(--rps-grey-200);
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}
.rps-agir .calc-field__input:focus {
  outline: none;
  border-color: var(--rps-blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.rps-agir .calc-field__slider {
  width: 100%; height: 6px;
  background: var(--rps-grey-200);
  border-radius: 3px; outline: none; cursor: pointer;
  -webkit-appearance: none; appearance: none;
  margin-top: 12px;
}
.rps-agir .calc-field__slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px;
  background: var(--rps-blue);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}
.rps-agir .calc-field__slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: var(--rps-navy);
}
.rps-agir .calc-field__slider::-moz-range-thumb {
  width: 20px; height: 20px;
  background: var(--rps-blue);
  border-radius: 50%;
  cursor: pointer; border: none;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

.rps-agir .calc-field__hint {
  margin-top: 8px;
  font-size: 12px; color: var(--rps-grey-500);
  font-style: italic;
}

.rps-agir .calc-results {
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--rps-grey-50) 0%, white 100%);
  position: relative;
}
.rps-agir .calc-results h4 {
  font-size: 16px; margin-bottom: 8px;
  color: var(--rps-grey-800);
}
.rps-agir .calc-results__intro {
  font-size: 13px; color: var(--rps-grey-600); margin-bottom: 28px;
  font-style: italic;
}

.rps-agir .calc-result-main {
  padding: 24px;
  background: linear-gradient(135deg, var(--rps-red) 0%, var(--rps-red-deep) 100%);
  border-radius: var(--radius);
  color: white;
  margin-bottom: 20px;
  position: relative; overflow: hidden;
}
.rps-agir .calc-result-main::before {
  content: '€'; position: absolute; bottom: -30px; right: -10px;
  font-family: var(--font-display); font-weight: 900;
  font-size: 140px; line-height: 1;
  color: rgba(255, 255, 255, 0.1);
}
.rps-agir .calc-result-main__label {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85); margin-bottom: 8px;
}
.rps-agir .calc-result-main__value {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 900;
  font-size: 42px; line-height: 1;
  letter-spacing: -0.03em;
}
.rps-agir .calc-result-main__per {
  font-size: 14px; font-weight: 500; opacity: 0.85;
  margin-left: 8px;
}

.rps-agir .calc-result-breakdown {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 24px;
}
.rps-agir .calc-result-item {
  padding: 14px 16px;
  background: white;
  border: 1px solid var(--rps-grey-200);
  border-radius: 10px;
}
.rps-agir .calc-result-item__label {
  font-size: 11.5px; color: var(--rps-grey-600); margin-bottom: 4px;
  font-family: var(--font-display); font-weight: 500;
}
.rps-agir .calc-result-item__value {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: var(--rps-navy);
}

.rps-agir .calc-results__action {
  padding: 16px;
  background: var(--rps-green-soft);
  border-radius: 10px;
  border: 1px solid rgba(70, 176, 109, 0.3);
  display: flex; align-items: center; gap: 12px;
}
.rps-agir .calc-results__action-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--rps-green); color: white;
  border-radius: 8px;
  display: grid; place-items: center;
}
.rps-agir .calc-results__action-text {
  flex: 1;
  font-size: 13.5px; color: var(--rps-green-deep);
  line-height: 1.4;
}
.rps-agir .calc-results__action-text strong { color: var(--rps-green-deep); }

.rps-agir .calc-card__footer {
  padding: 24px 40px;
  background: var(--rps-grey-50);
  border-top: 1px solid var(--rps-grey-200);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.rps-agir .calc-card__footer-note {
  font-size: 12px; color: var(--rps-grey-500);
  font-style: italic;
  max-width: 60%;
}

/* ============================================
   ACT 4 — Guerre des talents
   ============================================ */
.rps-agir .act-talents {
  padding: 100px 0; background: white;
}
.rps-agir .talents-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.rps-agir .talents-content h2 {
  font-size: clamp(28px, 4vw, 40px); line-height: 1.1;
  margin-bottom: 20px;
}
.rps-agir .talents-content h2 em {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 500; color: var(--rps-blue);
}
.rps-agir .talents-content p {
  font-size: 17px; color: var(--rps-grey-600); line-height: 1.75;
  margin-bottom: 16px;
}

.rps-agir .talents-quote {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--rps-grey-50);
  border-left: 3px solid var(--rps-blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.rps-agir .talents-quote p {
  font-family: var(--font-serif); font-style: italic;
  font-size: 17px; line-height: 1.6;
  color: var(--rps-grey-800); margin-bottom: 8px;
}
.rps-agir .talents-quote__source {
  font-family: var(--font-display); font-size: 12px;
  color: var(--rps-grey-500); font-weight: 600;
  letter-spacing: 0.05em;
}

.rps-agir .talents-blocks {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.rps-agir .talents-block {
  padding: 24px 28px;
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.rps-agir .talents-block:hover {
  transform: translateX(4px);
  background: white;
  border-color: var(--rps-blue);
  box-shadow: var(--shadow);
}
.rps-agir .talents-block__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.rps-agir .talents-block__title {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  color: var(--rps-navy);
}
.rps-agir .talents-block__pct {
  font-family: var(--font-display); font-weight: 900; font-size: 28px;
  color: var(--rps-blue); letter-spacing: -0.02em;
}
.rps-agir .talents-block p {
  font-size: 14px; color: var(--rps-grey-600); line-height: 1.55;
  margin: 0;
}

/* ============================================
   ACT 5 — Burn-out épidémie
   ============================================ */
.rps-agir .act-burnout {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(220, 38, 38, 0.04), transparent 60%),
    var(--rps-grey-50);
}
.rps-agir .burnout-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start;
}
.rps-agir .burnout-key {
  padding: 40px;
  background: linear-gradient(135deg, var(--rps-red) 0%, var(--rps-red-deep) 100%);
  color: white;
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  position: sticky; top: 100px;
}
.rps-agir .burnout-key::before {
  content: ''; position: absolute; bottom: -50%; right: -30%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 60%);
}
.rps-agir .burnout-key__label {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85); margin-bottom: 16px;
}
.rps-agir .burnout-key__number {
  position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 900;
  font-size: 80px; line-height: 1;
  margin-bottom: 16px; letter-spacing: -0.04em;
}
.rps-agir .burnout-key h3 {
  position: relative; z-index: 1;
  color: white; font-size: 22px; line-height: 1.3;
  margin-bottom: 16px;
}
.rps-agir .burnout-key p {
  position: relative; z-index: 1;
  font-size: 14.5px; line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.rps-agir .burnout-detail h3 {
  font-size: 26px; margin-bottom: 20px;
}
.rps-agir .burnout-detail h3 em {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 500; color: var(--rps-red);
}
.rps-agir .burnout-detail p {
  font-size: 17px; color: var(--rps-grey-600); line-height: 1.75;
  margin-bottom: 24px;
}

.rps-agir .burnout-sectors {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  margin-top: 32px;
}
.rps-agir .burnout-sector {
  display: grid; grid-template-columns: 1fr auto; gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--rps-grey-200);
  border-radius: 10px;
  transition: all 0.3s var(--ease);
}
.rps-agir .burnout-sector:hover { border-color: var(--rps-red); transform: translateX(4px); }
.rps-agir .burnout-sector__name {
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  color: var(--rps-navy);
}
.rps-agir .burnout-sector__bar-wrap {
  display: flex; align-items: center; gap: 12px;
  min-width: 200px;
}
.rps-agir .burnout-sector__bar {
  flex: 1; height: 8px;
  background: var(--rps-grey-100); border-radius: 4px;
  overflow: hidden;
  min-width: 100px;
}
.rps-agir .burnout-sector__bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--rps-amber), var(--rps-red));
  border-radius: 4px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.5s var(--ease);
}
.rps-agir .burnout-sector__bar-fill.animated { transform: scaleX(1); }
.rps-agir .burnout-sector__value {
  font-family: var(--font-mono); font-weight: 700; font-size: 14px;
  color: var(--rps-red-deep);
  min-width: 38px; text-align: right;
}

/* ============================================
   ACT 6 — Obligations légales
   ============================================ */
.rps-agir .act-legal {
  padding: 100px 0;
  background: white;
}
.rps-agir .legal-timeline {
  max-width: 1000px; margin: 0 auto;
  position: relative;
}
.rps-agir .legal-timeline::before {
  content: ''; position: absolute;
  left: 32px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--rps-blue), var(--rps-green));
}
.rps-agir .legal-event {
  position: relative;
  padding-left: 88px; padding-bottom: 40px;
}
.rps-agir .legal-event:last-child { padding-bottom: 0; }

.rps-agir .legal-event__dot {
  position: absolute; left: 18px; top: 4px;
  width: 30px; height: 30px;
  background: white;
  border: 3px solid var(--rps-blue);
  border-radius: 50%;
  display: grid; place-items: center;
}
.rps-agir .legal-event__dot::before {
  content: ''; width: 10px; height: 10px;
  background: var(--rps-blue); border-radius: 50%;
}
.rps-agir .legal-event--past .legal-event__dot { border-color: var(--rps-grey-400); }
.rps-agir .legal-event--past .legal-event__dot::before { background: var(--rps-grey-400); }
.rps-agir .legal-event--current .legal-event__dot { border-color: var(--rps-red); }
.rps-agir .legal-event--current .legal-event__dot::before {
  background: var(--rps-red);
  animation: pulse 2s ease-in-out infinite;
}
.rps-agir .legal-event--future .legal-event__dot { border-color: var(--rps-green); }
.rps-agir .legal-event--future .legal-event__dot::before { background: var(--rps-green); }

.rps-agir .legal-event__date {
  font-family: var(--font-mono); font-size: 12px; font-weight: 700;
  color: var(--rps-blue); margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.rps-agir .legal-event--past .legal-event__date { color: var(--rps-grey-500); }
.rps-agir .legal-event--current .legal-event__date { color: var(--rps-red); }
.rps-agir .legal-event--future .legal-event__date { color: var(--rps-green-deep); }

.rps-agir .legal-event h4 {
  font-size: 18px; margin-bottom: 12px; line-height: 1.3;
}
.rps-agir .legal-event p {
  font-size: 15px; color: var(--rps-grey-600); line-height: 1.7;
  margin-bottom: 16px;
}
.rps-agir .legal-event__badges {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.rps-agir .legal-event__badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: var(--rps-grey-100);
  border-radius: 100px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  color: var(--rps-grey-700);
}
.rps-agir .legal-event__badge--alert {
  background: var(--rps-red-soft); color: var(--rps-red-deep);
}
.rps-agir .legal-event__badge--info {
  background: rgba(30, 58, 138, 0.08); color: var(--rps-blue);
}

/* ============================================
   ACT 7 — Équation DRH
   ============================================ */
.rps-agir .act-equation {
  padding: 100px 0;
  background: var(--rps-grey-50);
}
.rps-agir .equation-card {
  max-width: 1000px; margin: 0 auto;
  padding: 56px 64px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--rps-grey-200);
}
.rps-agir .equation-card h3 {
  font-size: clamp(24px, 3vw, 32px); line-height: 1.2;
  margin-bottom: 16px; text-align: center;
}
.rps-agir .equation-card h3 em {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 500; color: var(--rps-blue);
}
.rps-agir .equation-card__intro {
  font-size: 17px; color: var(--rps-grey-600); line-height: 1.7;
  text-align: center; max-width: 720px; margin: 0 auto 48px;
}

.rps-agir .equation-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px;
  align-items: center; margin-bottom: 40px;
}
.rps-agir .equation-side {
  padding: 28px;
  border-radius: var(--radius);
  text-align: center;
}
.rps-agir .equation-side--cost {
  background: var(--rps-red-soft);
  border: 1px solid rgba(220, 38, 38, 0.2);
}
.rps-agir .equation-side--invest {
  background: var(--rps-green-soft);
  border: 1px solid rgba(70, 176, 109, 0.3);
}
.rps-agir .equation-side__label {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 12px;
}
.rps-agir .equation-side--cost .equation-side__label { color: var(--rps-red-deep); }
.rps-agir .equation-side--invest .equation-side__label { color: var(--rps-green-deep); }
.rps-agir .equation-side__title {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  margin-bottom: 16px;
}
.rps-agir .equation-side--cost .equation-side__title { color: var(--rps-red-deep); }
.rps-agir .equation-side--invest .equation-side__title { color: var(--rps-green-deep); }
.rps-agir .equation-side ul {
  list-style: none; padding: 0; margin: 0;
  text-align: left;
}
.rps-agir .equation-side li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 14px; line-height: 1.5;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}
.rps-agir .equation-side li:last-child { border-bottom: none; }
.rps-agir .equation-side--cost li { color: var(--rps-red-deep); }
.rps-agir .equation-side--invest li { color: var(--rps-green-deep); }
.rps-agir .equation-side li::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; flex-shrink: 0;
  margin-top: 7px;
}
.rps-agir .equation-side--cost li::before { background: var(--rps-red); }
.rps-agir .equation-side--invest li::before { background: var(--rps-green); }

.rps-agir .equation-vs {
  width: 56px; height: 56px;
  background: var(--rps-navy);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 900; font-size: 18px;
  letter-spacing: -0.02em;
}

.rps-agir .equation-conclusion {
  padding: 28px;
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-navy-soft) 100%);
  color: white;
  border-radius: var(--radius);
  text-align: center;
}
.rps-agir .equation-conclusion p {
  font-size: 17px; line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
}
.rps-agir .equation-conclusion p strong {
  color: var(--rps-green-soft);
  font-family: var(--font-display); font-style: normal;
}

/* ============================================
   CTA FINAL
   ============================================ */
.rps-agir .cta-final {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-navy-deep) 100%);
  position: relative; overflow: hidden;
}
.rps-agir .cta-final::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.15), transparent 60%);
}
.rps-agir .cta-final::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30, 58, 138, 0.2), transparent 60%);
}
.rps-agir .cta-final__inner {
  position: relative; z-index: 1; text-align: center;
  max-width: 820px; margin: 0 auto;
}
.rps-agir .cta-final h2 {
  color: white; font-size: clamp(36px, 5vw, 54px);
  line-height: 1.1; margin-bottom: 24px;
}
.rps-agir .cta-final h2 em {
  font-family: var(--font-serif); font-style: italic;
  font-weight: 500; color: var(--rps-green-soft);
}
.rps-agir .cta-final p {
  font-size: 19px; color: rgba(255, 255, 255, 0.85);
  line-height: 1.7; margin-bottom: 40px;
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.rps-agir .cta-final__buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}
.rps-agir .cta-final__trust {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.rps-agir .cta-final__trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 13.5px; font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.rps-agir .cta-final__trust-icon {
  width: 18px; height: 18px; color: var(--rps-green-soft);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .rps-agir .hero__layout,
  .rps-agir .talents-layout,
  .rps-agir .burnout-grid { grid-template-columns: 1fr; gap: 40px; }
  .rps-agir .lux-stats { grid-template-columns: repeat(2, 1fr); }
  .rps-agir .calc-card__body { grid-template-columns: 1fr; }
  .rps-agir .calc-inputs { border-right: none; border-bottom: 1px solid var(--rps-grey-200); }
  .rps-agir .equation-grid { grid-template-columns: 1fr; gap: 16px; }
  .rps-agir .equation-vs { margin: 0 auto; }
  .rps-agir .burnout-key { position: static; }
}

@media (max-width: 768px) {

  /* ═══════════════════════════════════════════════════════════
     GRAPHIQUE ÉVOLUTION — OPTION A : barres bien visibles mobile
     ═══════════════════════════════════════════════════════════ */

  /* Conteneur evolution avec un peu plus de respiration */
  .rps-agir .evolution {
    padding: 24px 16px;
  }

  /* Le graphique passe en 4 colonnes x 2 lignes avec ESPACE VERTICAL augmenté */
  .rps-agir .evolution__chart {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 6px;            /* 32px entre les 2 lignes, 6px entre colonnes */
    min-height: auto;
    padding: 16px 0 8px;
  }

  /* Chaque colonne (année) prend de la hauteur pour que les barres soient visibles */
  .rps-agir .evolution__bar-group {
    min-height: 200px;        /* Hauteur min pour que les barres soient lisibles */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  /* Le stack utilise toute la hauteur disponible */
  .rps-agir .evolution__bar-stack {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 4px;
    min-height: 170px;        /* Garantit que les barres aient de l'espace */
  }

  /* Les chiffres sont compacts mais lisibles */
  .rps-agir .evolution__bar-value {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
  }

  /* Les barres conservent leur visibilité, hauteur min de 6px */
  .rps-agir .evolution__bar {
    min-height: 6px;
    border-radius: 3px;
    width: 100%;
  }

  /* Label année sous chaque colonne */
  .rps-agir .evolution__year {
    font-size: 0.8125rem;
    font-weight: 600;
    margin-top: 8px;
    text-align: center;
  }

  /* Encadré pulsant 2025 : repositionné pour mobile */
  .rps-agir .evolution__bar-group--peak .evolution__bar-stack::after {
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-width: 2px;
    border-radius: 8px;
  }

  /* Légende reste lisible verticalement */
  .rps-agir .evolution__legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }

  /* Caption finale plus aérée */
  .rps-agir .evolution__caption {
    margin-top: 24px;
    padding: 16px;
    font-size: 0.875rem;
    background: var(--rps-grey-50);
    border-radius: var(--radius);
    border-left: 3px solid var(--rps-navy);
    line-height: 1.6;
  }

  /* Note d'échelle plus compacte */
  .rps-agir .evolution__scale-note {
    font-size: 0.75rem;
    padding: 8px 12px;
    margin-top: 8px;
  }

  /* ═══════════════════════════════════════════════════════════
     AUTRES RÈGLES MOBILE (à garder de ton bloc existant)
     ═══════════════════════════════════════════════════════════ */

  .rps-agir .hero, .rps-agir .act-luxembourg, .rps-agir .act-absenteeism,
  .rps-agir .calculator, .rps-agir .act-talents, .rps-agir .act-burnout,
  .rps-agir .act-legal, .rps-agir .act-equation, .rps-agir .cta-final { padding: 60px 0; }
  .rps-agir .lux-stats { grid-template-columns: 1fr; }
  .rps-agir .calc-inputs, .rps-agir .calc-results { padding: 28px 24px; }
  .rps-agir .calc-card__head { padding: 28px 24px; }
  .rps-agir .calc-result-breakdown { grid-template-columns: 1fr; }
  .rps-agir .legal-event { padding-left: 64px; }
  .rps-agir .legal-timeline::before { left: 18px; }
  .rps-agir .legal-event__dot { left: 4px; }
  .rps-agir .equation-card { padding: 32px 24px; }
  .rps-agir .iceberg__visible, .rps-agir .iceberg__hidden { padding: 24px; }
}

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  CSS ADDITIONNEL — REFONTE PAGE "POURQUOI AGIR" AVEC DONNÉES 2025 ║
   ║  ────────────────────────────────────────────────────────────── ║
   ║  À ajouter dans rps-styles.css                                    ║
   ║  Section : 15. PAGE — Pourquoi Agir Maintenant (.rps-agir)        ║
   ║                                                                   ║
   ║  Ce CSS complète les styles existants. Il ajoute :                ║
   ║  1. Style hero refondu (53,4 / 100)                               ║
   ║  2. Mise à jour graphique évolution (8 années, peak 2025)         ║
   ║  3. Nouveau bloc "Chiffres choc 2025"                             ║
   ║  4. Bandeau encadrement éthique (idéation suicidaire)             ║
   ╚══════════════════════════════════════════════════════════════════╝ */


/* ─── 1. HERO — Stat refondu 53,4 / 100 ─────────────────────────── */

.rps-agir .hero__shock-stat-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.rps-agir .hero__shock-stat-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}

.rps-agir .hero__shock-stat-suffix {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.02em;
}

.rps-agir .hero__shock-label strong {
  color: #fef3c7;
  font-weight: 700;
}

/* Source CSL cliquable dans le hero */
.rps-agir .hero__shock-source--link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  position: relative;
  z-index: 2;
}

.rps-agir .hero__shock-source--link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
  transform: translateY(-1px);
}

.rps-agir .hero__shock-source-icon {
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  opacity: 0.8;
}

.rps-agir .hero__shock-source--link:hover .hero__shock-source-icon {
  transform: translate(3px, -3px);
  opacity: 1;
}

.rps-agir .hero__shock-source--link:focus-visible {
  outline: 2px solid var(--rps-green-soft);
  outline-offset: 3px;
}


/* ─── 2. GRAPHIQUE ÉVOLUTION — Mise à jour 8 années ─────────────── */

/* Lien "Consulter le rapport" dans l'en-tête */
.rps-agir .evolution__source-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--rps-blue);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  background: rgba(30, 58, 138, 0.06);
  transition: all 0.3s var(--ease);
}

.rps-agir .evolution__source-link:hover {
  background: rgba(30, 58, 138, 0.12);
  transform: translateY(-1px);
}

.rps-agir .evolution__source-link svg {
  transition: transform 0.3s var(--ease);
}

.rps-agir .evolution__source-link:hover svg {
  transform: translate(2px, -2px);
}

/* Note d'échelle */
.rps-agir .evolution__scale-note {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 8px 14px;
  background: rgba(217, 119, 6, 0.08);
  border-left: 3px solid var(--rps-amber);
  border-radius: var(--radius-sm);
  color: var(--rps-amber-deep);
  font-size: 0.8125rem;
  font-weight: 500;
}

/* Mise en avant du pic 2025 */
.rps-agir .evolution__bar-group--peak .evolution__bar-stack {
  position: relative;
}

.rps-agir .evolution__bar-group--peak .evolution__bar-stack::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px dashed var(--rps-red);
  border-radius: var(--radius);
  opacity: 0.5;
  pointer-events: none;
  animation: rps-pulse-peak 2s ease-in-out infinite;
}

@keyframes rps-pulse-peak {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

.rps-agir .evolution__year--peak {
  color: var(--rps-red);
  font-weight: 700;
}

.rps-agir .evolution__bar-value--peak {
  color: var(--rps-red);
  font-weight: 700;
  font-size: 1.05em;
}

/* Barre "donnée manquante" (n/d pour 2021 santé physique) */
.rps-agir .evolution__bar--missing {
  background: repeating-linear-gradient(
    45deg,
    var(--rps-grey-200),
    var(--rps-grey-200) 4px,
    var(--rps-grey-100) 4px,
    var(--rps-grey-100) 8px
  );
  opacity: 0.5;
  min-height: 8px !important;
}


/* ─── 3. NOUVEAU BLOC "CHIFFRES CHOC 2025" ──────────────────────── */

.rps-agir .shock-2025 {
  margin: 60px auto;
  padding: 48px 32px;
  background: linear-gradient(135deg, #fef2f2 0%, #fef3c7 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(220, 38, 38, 0.15);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.rps-agir .shock-2025::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--rps-red) 0%, var(--rps-amber) 100%);
}

/* Header du bloc */
.rps-agir .shock-2025__header {
  text-align: center;
  margin-bottom: 40px;
}

.rps-agir .shock-2025__badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--rps-red);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.rps-agir .shock-2025__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.rps-agir .shock-2025__subtitle {
  font-size: 1rem;
  color: var(--rps-grey-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.rps-agir .shock-2025__source-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--rps-blue);
  font-weight: 600;
  text-decoration: none;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  background: rgba(30, 58, 138, 0.08);
  transition: all 0.3s var(--ease);
  margin-left: 4px;
}

.rps-agir .shock-2025__source-link:hover {
  background: rgba(30, 58, 138, 0.15);
}

.rps-agir .shock-2025__source-link svg {
  transition: transform 0.3s var(--ease);
}

.rps-agir .shock-2025__source-link:hover svg {
  transform: translate(2px, -2px);
}

/* Grille des cards */
.rps-agir .shock-2025__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 980px) {
  .rps-agir .shock-2025__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .rps-agir .shock-2025__grid {
    grid-template-columns: 1fr;
  }
}

/* Card individuelle */
.rps-agir .shock-2025__card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.rps-agir .shock-2025__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: currentColor;
  opacity: 0.8;
}

.rps-agir .shock-2025__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Couleurs par card */
.rps-agir .shock-2025__card--burnout {
  color: var(--rps-red);
}

.rps-agir .shock-2025__card--depression {
  color: var(--rps-purple);
}

.rps-agir .shock-2025__card--wellbeing {
  color: var(--rps-amber);
}

.rps-agir .shock-2025__card--sleep {
  color: var(--rps-blue);
}

/* Icône de chaque card */
.rps-agir .shock-2025__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: currentColor;
  color: white;
  margin-bottom: 16px;
  position: relative;
}

.rps-agir .shock-2025__card--burnout .shock-2025__icon { background: var(--rps-red); }
.rps-agir .shock-2025__card--depression .shock-2025__icon { background: var(--rps-purple); }
.rps-agir .shock-2025__card--wellbeing .shock-2025__icon { background: var(--rps-amber); }
.rps-agir .shock-2025__card--sleep .shock-2025__icon { background: var(--rps-blue); }

/* Chiffre principal animé */
.rps-agir .shock-2025__stat {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  color: inherit;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.rps-agir .shock-2025__label {
  font-size: 0.9375rem;
  color: var(--rps-grey-800);
  line-height: 1.5;
  margin-bottom: 12px;
  min-height: 48px;
}

.rps-agir .shock-2025__label strong {
  color: var(--rps-navy);
  font-weight: 700;
}

.rps-agir .shock-2025__trend {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: currentColor;
  color: white;
  display: inline-block;
  opacity: 0.9;
}


/* ─── 4. BANDEAU ENCADREMENT ÉTHIQUE (idéation suicidaire) ──────── */

.rps-agir .shock-2025__sensitive {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  background: var(--rps-navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 12px 32px rgba(13, 27, 61, 0.25);
}

@media (max-width: 768px) {
  .rps-agir .shock-2025__sensitive {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
}

.rps-agir .shock-2025__sensitive-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: rgba(220, 38, 38, 0.15);
  border: 2px solid rgba(220, 38, 38, 0.4);
  border-radius: var(--radius);
  min-width: 160px;
}

.rps-agir .shock-2025__sensitive-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: white;
  letter-spacing: -0.02em;
}

.rps-agir .shock-2025__sensitive-multi {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  background: var(--rps-red);
  color: white;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.rps-agir .shock-2025__sensitive-title {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.rps-agir .shock-2025__sensitive-text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.rps-agir .shock-2025__sensitive-text strong {
  color: white;
  font-weight: 700;
}

.rps-agir .shock-2025__sensitive-help {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--rps-green);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
}

.rps-agir .shock-2025__sensitive-help strong {
  color: white;
  display: block;
  margin-bottom: 8px;
}

.rps-agir .shock-2025__sensitive-help ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.rps-agir .shock-2025__sensitive-help ul li {
  position: relative;
  padding-left: 4px;
  margin-bottom: 4px;
}

.rps-agir .shock-2025__sensitive-help ul li::before {
  content: '→';
  position: absolute;
  left: -16px;
  color: var(--rps-green);
  font-weight: 700;
}

.rps-agir .shock-2025__sensitive-help a {
  color: var(--rps-green-soft);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(92, 195, 132, 0.5);
  transition: all 0.3s var(--ease);
}

.rps-agir .shock-2025__sensitive-help a:hover {
  color: white;
  border-bottom-color: white;
}

/* CTA texte sous le bandeau */
.rps-agir .shock-2025__cta-text {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--rps-grey-800);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.rps-agir .shock-2025__cta-text strong {
  color: var(--rps-navy);
  font-weight: 700;
}


/* ─── 5. RESPONSIVE GLOBAL ───────────────────────────────────────── */

@media (max-width: 768px) {
  .rps-agir .shock-2025 {
    padding: 32px 20px;
    margin: 40px auto;
  }

  .rps-agir .shock-2025__sensitive {
    padding: 24px 20px;
  }

  .rps-agir .shock-2025__sensitive-stat {
    min-width: unset;
    width: 100%;
  }
}

/* ╔════════════════════════════════════════════════════════════════════════╗
   ║  16. PAGE — Template Fiche RPS (×10 fiches)
   ║  Wrapper : .rps-fiche
   ╚════════════════════════════════════════════════════════════════════════╝ */

.rps-fiche {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--rps-grey-800);
  -webkit-font-smoothing: antialiased;
}
.rps-fiche h1, .rps-fiche h2, .rps-fiche h3, .rps-fiche h4, .rps-fiche h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rps-navy);
  margin: 0;
}
.rps-fiche p { margin: 0; }
.rps-fiche a { color: inherit; text-decoration: none; }
.rps-fiche button { font-family: inherit; cursor: pointer; border: none; background: none; }

.rps-fiche .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.rps-fiche .container--narrow { max-width: var(--container-sm); }

/* ============================================
   COMPOSANTS GÉNÉRIQUES
   ============================================ */
.rps-fiche .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.rps-fiche .btn--primary {
  background: var(--rps-blue);
  color: var(--rps-white);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
}
.rps-fiche .btn--primary:hover { background: var(--rps-navy); transform: translateY(-2px); }
.rps-fiche .btn--green { background: var(--rps-green); color: var(--rps-white); box-shadow: 0 4px 12px rgba(70, 176, 109, 0.3); }
.rps-fiche .btn--green:hover { background: #3a9659; transform: translateY(-2px); }
.rps-fiche .btn--ghost { background: transparent; color: var(--rps-navy); border: 1.5px solid var(--rps-grey-200); }
.rps-fiche .btn--ghost:hover { border-color: var(--rps-navy); background: var(--rps-grey-50); }
.rps-fiche .btn--light { background: var(--rps-white); color: var(--rps-navy); }
.rps-fiche .btn--light:hover { background: var(--rps-grey-100); transform: translateY(-2px); }
.rps-fiche .btn .arrow { transition: transform 0.3s var(--ease); }
.rps-fiche .btn:hover .arrow { transform: translateX(4px); }

.rps-fiche .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 16px;
}
.rps-fiche .eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rps-green);
}

.rps-fiche .section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}
.rps-fiche .section-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--rps-grey-600);
  max-width: 760px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.rps-fiche .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.rps-fiche .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.rps-fiche .reveal[data-delay="1"] { transition-delay: 0.1s; }
.rps-fiche .reveal[data-delay="2"] { transition-delay: 0.2s; }
.rps-fiche .reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ============================================
   HERO
   ============================================ */
.rps-fiche .hero {
  position: relative;
  padding: 80px 0 64px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(220, 38, 38, 0.06), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(70, 176, 109, 0.05), transparent 60%),
    var(--rps-grey-50);
  overflow: hidden;
}
.rps-fiche .hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--rps-grey-600);
  margin-bottom: 24px;
  font-family: var(--font-display);
  flex-wrap: wrap;
}
.rps-fiche .hero__breadcrumb a { color: var(--rps-grey-600); transition: color 0.2s; }
.rps-fiche .hero__breadcrumb a:hover { color: var(--rps-blue); }
.rps-fiche .hero__breadcrumb-sep { color: var(--rps-grey-400); }

.rps-fiche .hero__num {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(30, 58, 138, 0.08);
  border: 1px solid rgba(30, 58, 138, 0.15);
  border-radius: 100px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--rps-blue);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.rps-fiche .hero__inner { max-width: 880px; }
.rps-fiche .hero__title {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  margin-bottom: 24px;
}
.rps-fiche .hero__title strong { color: var(--rps-blue); }
.rps-fiche .hero__subtitle {
  font-size: 19px;
  line-height: 1.7;
  color: var(--rps-grey-600);
  margin-bottom: 36px;
  max-width: 720px;
}

.rps-fiche .hero__meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--rps-grey-200);
}
.rps-fiche .hero__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--rps-grey-600);
  font-family: var(--font-display);
}
.rps-fiche .hero__meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--rps-blue);
  flex-shrink: 0;
}
.rps-fiche .hero__meta-item strong { color: var(--rps-navy); font-weight: 600; }

/* ============================================
   TOC
   ============================================ */
.rps-fiche .toc-section {
  padding: 48px 0;
  background: var(--rps-white);
  border-bottom: 1px solid var(--rps-grey-100);
}
.rps-fiche .toc-card {
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  padding: 32px 40px;
}
.rps-fiche .toc-card__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rps-fiche .toc-card__label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rps-green);
}
.rps-fiche .toc-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 32px;
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
}
.rps-fiche .toc-list li { counter-increment: toc; }
.rps-fiche .toc-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--rps-navy);
  transition: all 0.2s var(--ease);
}
.rps-fiche .toc-list a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--rps-green);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 24px;
}
.rps-fiche .toc-list a:hover { color: var(--rps-blue); padding-left: 6px; }

/* ============================================
   SECTIONS DE CONTENU
   ============================================ */
.rps-fiche .content { padding: 72px 0; }
.rps-fiche .content--alt { background: var(--rps-grey-50); }
.rps-fiche .content__head { margin-bottom: 40px; }
.rps-fiche .prose {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--rps-grey-800);
}
.rps-fiche .prose p { margin-bottom: 18px; }
.rps-fiche .prose p:last-child { margin-bottom: 0; }
.rps-fiche .prose strong { color: var(--rps-navy); font-weight: 600; }

/* Encadré "Définition courte" */
.rps-fiche .definition-box {
  padding: 28px 32px;
  background: var(--rps-white);
  border-left: 4px solid var(--rps-blue);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin: 32px 0;
}
.rps-fiche .definition-box__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rps-blue);
  margin-bottom: 8px;
}
.rps-fiche .definition-box p {
  font-size: 16px;
  color: var(--rps-grey-800);
  font-style: italic;
  line-height: 1.7;
}
.rps-fiche .definition-box__source {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--rps-grey-600);
  font-style: normal;
}

/* ============================================
   CHIFFRES CLÉS
   ============================================ */
.rps-fiche .stats {
  padding: 72px 0;
  background: var(--rps-white);
}
.rps-fiche .stats__head { text-align: center; margin-bottom: 48px; }
.rps-fiche .stats__head .eyebrow { justify-content: center; }
.rps-fiche .stats__head .section-intro { margin: 0 auto; }

.rps-fiche .stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rps-fiche .stat-card {
  padding: 32px 24px;
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.rps-fiche .stat-card:hover {
  border-color: var(--rps-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.rps-fiche .stat-card__number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: var(--rps-navy);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.rps-fiche .stat-card__number span {
  color: var(--rps-green);
  font-size: 28px;
}
.rps-fiche .stat-card__label {
  font-size: 13.5px;
  color: var(--rps-grey-600);
  line-height: 1.5;
}
.rps-fiche .stats__source {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--rps-grey-600);
  font-style: italic;
}

/* ============================================
   CADRE LÉGAL — bandeau navy
   ============================================ */
.rps-fiche .legal-banner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-blue) 100%);
  border-radius: var(--radius-lg);
  color: white;
  position: relative;
  overflow: hidden;
  margin: 32px 0;
}
.rps-fiche .legal-banner::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.15), transparent 70%);
  pointer-events: none;
}
.rps-fiche .legal-banner__icon {
  width: 56px;
  height: 56px;
  background: rgba(70, 176, 109, 0.2);
  border: 1.5px solid var(--rps-green);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--rps-green-soft);
  position: relative;
  z-index: 1;
}
.rps-fiche .legal-banner__content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.rps-fiche .legal-banner__content h3 {
  color: white;
  font-size: 20px;
  margin: 0 0 12px 0;
}
.rps-fiche .legal-banner__content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}
.rps-fiche .legal-banner__content strong {
  color: var(--rps-green-soft);
  font-weight: 600;
}

/* ============================================
   SIGNAUX — 3 niveaux
   ============================================ */
.rps-fiche .signals {
  padding: 72px 0;
  background: var(--rps-grey-50);
}
.rps-fiche .signals__head { margin-bottom: 48px; }
.rps-fiche .signals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rps-fiche .signal-card {
  padding: 32px 28px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  height: 100%;
}
.rps-fiche .signal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.rps-fiche .signal-card--individual { border-top: 3px solid var(--rps-amber); }
.rps-fiche .signal-card--collective { border-top: 3px solid var(--rps-blue); }
.rps-fiche .signal-card--organizational { border-top: 3px solid var(--rps-navy); }

.rps-fiche .signal-card__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.rps-fiche .signal-card--individual .signal-card__label { background: var(--rps-amber-soft); color: var(--rps-amber); }
.rps-fiche .signal-card--collective .signal-card__label { background: rgba(30, 58, 138, 0.1); color: var(--rps-blue); }
.rps-fiche .signal-card--organizational .signal-card__label { background: rgba(13, 27, 61, 0.1); color: var(--rps-navy); }

.rps-fiche .signal-card h3 {
  font-size: 19px;
  margin: 0 0 16px 0;
}
.rps-fiche .signal-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rps-fiche .signal-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--rps-grey-800);
  line-height: 1.55;
}
.rps-fiche .signal-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--rps-green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 9px;
}

/* ============================================
   CAUSES — liste hiérarchisée
   ============================================ */
.rps-fiche .causes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.rps-fiche .cause-item {
  display: flex;
  gap: 16px;
  padding: 24px 24px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.rps-fiche .cause-item:hover {
  border-color: var(--rps-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.rps-fiche .cause-item__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(30, 58, 138, 0.08);
  color: var(--rps-blue);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.rps-fiche .cause-item:hover .cause-item__num {
  background: var(--rps-blue);
  color: white;
}
.rps-fiche .cause-item__content h4 {
  font-size: 16px;
  margin: 0 0 6px 0;
}
.rps-fiche .cause-item__content p {
  font-size: 14px;
  color: var(--rps-grey-600);
  line-height: 1.55;
  margin: 0;
}

/* ============================================
   CONSÉQUENCES — 3 colonnes
   ============================================ */
.rps-fiche .consequences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rps-fiche .consequence-card {
  padding: 32px 28px;
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.rps-fiche .consequence-card:hover {
  background: var(--rps-white);
  border-color: var(--rps-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.rps-fiche .consequence-card__icon {
  width: 48px;
  height: 48px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--rps-blue);
  margin-bottom: 20px;
  transition: all 0.3s var(--ease);
}
.rps-fiche .consequence-card:hover .consequence-card__icon {
  background: var(--rps-blue);
  border-color: var(--rps-blue);
  color: white;
}
.rps-fiche .consequence-card h3 {
  font-size: 18px;
  margin: 0 0 16px 0;
}
.rps-fiche .consequence-card p {
  font-size: 14px;
  color: var(--rps-grey-600);
  line-height: 1.6;
  margin: 0;
}

/* ============================================
   AGIR — 3 NIVEAUX
   ============================================ */
.rps-fiche .actions {
  padding: 72px 0;
  background: var(--rps-white);
}
.rps-fiche .actions__head { text-align: center; margin-bottom: 48px; }
.rps-fiche .actions__head .eyebrow { justify-content: center; }
.rps-fiche .actions__head .section-intro { margin: 0 auto; }

.rps-fiche .action-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rps-fiche .action-level {
  padding: 36px 32px;
  background: var(--rps-grey-50);
  border-radius: var(--radius);
  position: relative;
  border-top: 4px solid;
}
.rps-fiche .action-level--prevent { border-top-color: var(--rps-green); }
.rps-fiche .action-level--detect { border-top-color: var(--rps-amber); }
.rps-fiche .action-level--act { border-top-color: var(--rps-red); }

.rps-fiche .action-level__num {
  position: absolute;
  top: -16px;
  left: 32px;
  padding: 4px 12px;
  background: var(--rps-white);
  border: 1.5px solid;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.rps-fiche .action-level--prevent .action-level__num { color: var(--rps-green); border-color: var(--rps-green); }
.rps-fiche .action-level--detect .action-level__num { color: var(--rps-amber); border-color: var(--rps-amber); }
.rps-fiche .action-level--act .action-level__num { color: var(--rps-red); border-color: var(--rps-red); }

.rps-fiche .action-level h3 { font-size: 20px; margin: 0 0 16px 0; }
.rps-fiche .action-level__intro {
  font-size: 14.5px;
  color: var(--rps-grey-600);
  line-height: 1.6;
  margin-bottom: 20px;
}
.rps-fiche .action-level__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rps-fiche .action-level__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--rps-grey-800);
  line-height: 1.55;
}
.rps-fiche .action-level__list li::before {
  content: '→';
  flex-shrink: 0;
  font-weight: 700;
}
.rps-fiche .action-level--prevent .action-level__list li::before { color: var(--rps-green); }
.rps-fiche .action-level--detect .action-level__list li::before { color: var(--rps-amber); }
.rps-fiche .action-level--act .action-level__list li::before { color: var(--rps-red); }

/* ============================================
   BRIDGE VERS LA MÉTHODE
   ============================================ */
.rps-fiche .method-bridge {
  padding: 72px 0;
  background: var(--rps-grey-50);
}
.rps-fiche .method-bridge__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 56px;
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-navy-soft) 100%);
  border-radius: var(--radius-lg);
  color: white;
  position: relative;
  overflow: hidden;
}
.rps-fiche .method-bridge__card::before {
  content: '';
  position: absolute;
  right: -10%;
  bottom: -40%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.12), transparent 60%);
  pointer-events: none;
}
.rps-fiche .method-bridge__content { position: relative; z-index: 1; }
.rps-fiche .method-bridge__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-green-soft);
  margin-bottom: 16px;
}
.rps-fiche .method-bridge__eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--rps-green);
}
.rps-fiche .method-bridge__card h2 {
  color: white;
  font-size: clamp(24px, 3.5vw, 32px);
  margin: 0 0 16px 0;
}
.rps-fiche .method-bridge__card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0 0 28px 0;
}
.rps-fiche .method-bridge__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.rps-fiche .method-bridge__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  transition: all 0.3s var(--ease);
}
.rps-fiche .method-bridge__list li:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--rps-green);
}
.rps-fiche .method-bridge__list-icon {
  width: 28px;
  height: 28px;
  background: rgba(70, 176, 109, 0.2);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--rps-green-soft);
  flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */
.rps-fiche .faq-section {
  padding: 72px 0;
  background: var(--rps-white);
}
.rps-fiche .faq-section__head { text-align: center; margin-bottom: 40px; }
.rps-fiche .faq-section__head .eyebrow { justify-content: center; }
.rps-fiche .faq-section__head .section-intro { margin: 0 auto; }

.rps-fiche .faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.rps-fiche .faq-item {
  background: var(--rps-grey-50);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.rps-fiche .faq-item:hover {
  border-color: var(--rps-blue);
  box-shadow: var(--shadow);
}
.rps-fiche .faq-item__question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--rps-navy);
  cursor: pointer;
}
.rps-fiche .faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rps-white);
  display: grid;
  place-items: center;
  color: var(--rps-blue);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.rps-fiche .faq-item.open .faq-item__icon {
  background: var(--rps-blue);
  color: white;
  transform: rotate(45deg);
}
.rps-fiche .faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.rps-fiche .faq-item.open .faq-item__answer { max-height: 500px; }
.rps-fiche .faq-item__answer-inner {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--rps-grey-600);
  line-height: 1.7;
}
.rps-fiche .faq-item__answer-inner strong { color: var(--rps-navy); }

/* ============================================
   CTA FINAL
   ============================================ */
.rps-fiche .cta-final {
  padding: 100px 0;
  background: var(--rps-navy);
  position: relative;
  overflow: hidden;
}
.rps-fiche .cta-final::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.12), transparent 60%);
}
.rps-fiche .cta-final__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.rps-fiche .cta-final h2 {
  color: white;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}
.rps-fiche .cta-final h2 span { color: var(--rps-green-soft); }
.rps-fiche .cta-final p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}
.rps-fiche .cta-final__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   RELATED FICHES
   ============================================ */
.rps-fiche .related {
  padding: 72px 0;
  background: var(--rps-grey-50);
}
.rps-fiche .related__head { text-align: center; margin-bottom: 40px; }
.rps-fiche .related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rps-fiche .related-card {
  display: block;
  padding: 28px 24px;
  background: var(--rps-white);
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.rps-fiche .related-card:hover {
  border-color: var(--rps-navy);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.rps-fiche .related-card__num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--rps-green);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.rps-fiche .related-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--rps-navy);
  margin: 0;
  line-height: 1.35;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .rps-fiche .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .rps-fiche .signals__grid,
  .rps-fiche .consequences-grid,
  .rps-fiche .action-levels,
  .rps-fiche .related__grid { grid-template-columns: 1fr; }
  .rps-fiche .causes-grid { grid-template-columns: 1fr; }
  .rps-fiche .toc-list { grid-template-columns: 1fr; }
  .rps-fiche .method-bridge__card { grid-template-columns: 1fr; gap: 32px; padding: 36px 32px; }
  .rps-fiche .legal-banner { flex-direction: column; padding: 28px 24px; }
}

@media (max-width: 640px) {
  .rps-fiche .hero { padding: 60px 0 48px; }
  .rps-fiche .content,
  .rps-fiche .stats,
  .rps-fiche .signals,
  .rps-fiche .actions,
  .rps-fiche .method-bridge,
  .rps-fiche .faq-section,
  .rps-fiche .related { padding: 56px 0; }
  .rps-fiche .stats__grid { grid-template-columns: 1fr; }
  .rps-fiche .toc-card { padding: 24px 24px; }
  .rps-fiche .hero__meta { gap: 16px; }
}




/* ╔══════════════════════════════════════════════════════════════════╗
   ║  17. PAGE — Offres & Tarifs (.rps-offres)                        ║
   ║  ────────────────────────────────────────────────────────────── ║
   ║  Page escalier commercial : Diagnostic 1490€ → Audit 2990€ →    ║
   ║  Académie (devis) → Accompagnement annuel (devis).               ║
   ║  Mécanisme d'upsell : montant du diagnostic déduit de l'audit.   ║
   ╚══════════════════════════════════════════════════════════════════╝ */

.rps-offres { font-family: var(--font-body); color: var(--rps-grey-800); line-height: 1.6; }
.rps-offres * { box-sizing: border-box; }

.rps-offres .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Reveal ─── */
.rps-offres .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.rps-offres .reveal.visible { opacity: 1; transform: translateY(0); }
.rps-offres .reveal[data-delay="1"].visible { transition-delay: 0.1s; }
.rps-offres .reveal[data-delay="2"].visible { transition-delay: 0.2s; }
.rps-offres .reveal[data-delay="3"].visible { transition-delay: 0.3s; }
.rps-offres .reveal[data-delay="4"].visible { transition-delay: 0.4s; }

/* ─── Eyebrow ─── */
.rps-offres .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rps-green);
  padding: 6px 14px;
  background: rgba(70, 176, 109, 0.1);
  border-radius: 999px;
  margin-bottom: 20px;
}
.rps-offres .eyebrow--white {
  color: var(--rps-green-soft);
  background: rgba(255, 255, 255, 0.1);
}

/* ─── Boutons ─── */
.rps-offres .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.rps-offres .btn svg { transition: transform 0.3s var(--ease); flex-shrink: 0; }
.rps-offres .btn--primary { background: var(--rps-navy); color: #fff; box-shadow: var(--shadow); }
.rps-offres .btn--primary:hover { background: var(--rps-navy-soft); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.rps-offres .btn--primary:hover svg { transform: translateX(3px); }
.rps-offres .btn--green { background: var(--rps-green); color: #fff; box-shadow: var(--shadow); }
.rps-offres .btn--green:hover { background: var(--rps-green-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.rps-offres .btn--green:hover svg { transform: translateX(3px); }
.rps-offres .btn--outline { background: transparent; color: var(--rps-navy); border: 2px solid var(--rps-grey-200); }
.rps-offres .btn--outline:hover { border-color: var(--rps-navy); transform: translateY(-2px); }
.rps-offres .btn--white { background: #fff; color: var(--rps-navy); box-shadow: var(--shadow); }
.rps-offres .btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.rps-offres .btn--white:hover svg { transform: translateX(3px); }
.rps-offres .btn--lg { padding: 16px 32px; font-size: 1rem; }

/* ─── Titres de section ─── */
.rps-offres .section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--rps-navy);
  margin: 0 0 16px;
}
.rps-offres .section-title em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--rps-green-deep);
}
.rps-offres .section-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--rps-grey-600);
}

/* ─── SECTION A — Hero ─── */
.rps-offres .hero {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, var(--rps-grey-50) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.rps-offres .hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(70, 176, 109, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.rps-offres .hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--rps-grey-500);
  margin-bottom: 20px;
}
.rps-offres .hero__breadcrumb a { color: var(--rps-grey-500); text-decoration: none; transition: color 0.3s var(--ease); }
.rps-offres .hero__breadcrumb a:hover { color: var(--rps-green); }
.rps-offres .hero__breadcrumb-sep { color: var(--rps-grey-400); }
.rps-offres .hero .eyebrow {
  justify-content: center;
  margin-bottom: 16px;
}
.rps-offres .hero__inner {
  display: block;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.rps-offres .hero .container {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
}
.rps-offres .hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--rps-navy);
  margin: 0 0 20px;
}
.rps-offres .hero__title em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--rps-green-deep);
}
.rps-offres .hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--rps-grey-600);
  margin: 0 auto 32px;
  max-width: 680px;
}
.rps-offres .hero__cta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ─── SECTION B — Offres ─── */
.rps-offres .offers { padding: 100px 0; background: #fff; }
.rps-offres .offers__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.rps-offres .offers__featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 28px;
}
@media (max-width: 880px) { .rps-offres .offers__featured { grid-template-columns: 1fr; } }

.rps-offres .offer-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.rps-offres .offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--rps-green);
}
.rps-offres .offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: var(--rps-green-soft); }
.rps-offres .offer-card--primary::before { background: var(--rps-blue); }
.rps-offres .offer-card--primary:hover { border-color: var(--rps-blue); }

.rps-offres .offer-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(70, 176, 109, 0.12);
  color: var(--rps-green-deep);
}
.rps-offres .offer-card--primary .offer-card__badge {
  background: rgba(30, 58, 138, 0.12);
  color: var(--rps-blue);
}

.rps-offres .offer-card__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rps-grey-400);
  margin-bottom: 8px;
}
.rps-offres .offer-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rps-navy);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  padding-right: 80px;
}
.rps-offres .offer-card__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.rps-offres .offer-card__price-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--rps-navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.rps-offres .offer-card__price-prefix { font-size: 1rem; font-weight: 500; color: var(--rps-grey-500); }
.rps-offres .offer-card__price-ht { font-size: 0.875rem; font-weight: 500; color: var(--rps-grey-400); }
.rps-offres .offer-card__delay {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rps-green-deep);
  background: rgba(70, 176, 109, 0.08);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  width: fit-content;
}
.rps-offres .offer-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.rps-offres .offer-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--rps-grey-600);
  line-height: 1.5;
}
.rps-offres .offer-card__list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--rps-green);
  margin-top: 1px;
}
.rps-offres .offer-card__list-intro {
  font-size: 0.9375rem;
  color: var(--rps-grey-600);
  margin: 0 0 16px;
  font-weight: 500;
}
.rps-offres .offer-card__upsell {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(70, 176, 109, 0.08) 0%, rgba(70, 176, 109, 0.03) 100%);
  border-left: 3px solid var(--rps-green);
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--rps-grey-600);
}
.rps-offres .offer-card__upsell svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--rps-green);
  margin-top: 1px;
}
.rps-offres .offer-card__upsell strong { color: var(--rps-green-deep); font-weight: 700; }
.rps-offres .offer-card .btn { width: 100%; margin-top: auto; }

.rps-offres .offers__simple {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .rps-offres .offers__simple { grid-template-columns: 1fr; } }
.rps-offres .offer-card--simple { padding: 32px 28px; }
.rps-offres .offer-card--simple::before { background: var(--rps-grey-300); }
.rps-offres .offer-card--simple:hover { border-color: var(--rps-grey-400); }
.rps-offres .offer-card--simple .offer-card__title { font-size: 1.25rem; padding-right: 0; margin-bottom: 12px; }
.rps-offres .offer-card--simple .offer-card__price-amount { font-size: 1.5rem; }
.rps-offres .offer-card__desc {
  font-size: 0.9375rem;
  color: var(--rps-grey-600);
  line-height: 1.6;
  margin: 0 0 24px;
  flex-grow: 1;
}
.rps-offres .offer-card__recurring {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--rps-amber);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── SECTION C — Parcours ─── */
.rps-offres .journey { padding: 100px 0; background: var(--rps-grey-50); }
.rps-offres .journey__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.rps-offres .journey__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 980px) { .rps-offres .journey__steps { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; } }
@media (max-width: 560px) { .rps-offres .journey__steps { grid-template-columns: 1fr; gap: 16px; } }

.rps-offres .journey-step {
  background: #fff;
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s var(--ease);
}
.rps-offres .journey-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.rps-offres .journey-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rps-navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}
.rps-offres .journey-step--free .journey-step__num { background: var(--rps-green); }
.rps-offres .journey-step--highlight { border-color: var(--rps-blue); border-width: 2px; }
.rps-offres .journey-step--highlight .journey-step__num { background: var(--rps-blue); }
.rps-offres .journey-step__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--rps-navy);
  margin: 0 0 8px;
  line-height: 1.3;
}
.rps-offres .journey-step__price { font-size: 0.875rem; font-weight: 600; color: var(--rps-green-deep); margin-bottom: 8px; }
.rps-offres .journey-step__desc { font-size: 0.8125rem; color: var(--rps-grey-500); line-height: 1.5; }

/* ─── SECTION D — Réassurance ─── */
.rps-offres .reassurance { padding: 80px 0; background: var(--rps-navy); color: #fff; }
.rps-offres .reassurance__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.rps-offres .reassurance__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.rps-offres .reassurance__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}
.rps-offres .reassurance__text strong { color: #fff; font-weight: 700; }
.rps-offres .reassurance__pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 640px) { .rps-offres .reassurance__pillars { grid-template-columns: 1fr; gap: 16px; } }
.rps-offres .reassurance__pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}
.rps-offres .reassurance__pillar svg { width: 32px; height: 32px; color: var(--rps-green-soft); }
.rps-offres .reassurance__pillar-title { font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem; color: #fff; }

/* ─── SECTION E — FAQ ─── */
.rps-offres .faq { padding: 100px 0; background: #fff; }
.rps-offres .faq__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.rps-offres .faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.rps-offres .faq-item {
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.rps-offres .faq-item:hover { border-color: var(--rps-grey-400); }
.rps-offres .faq-item.open { border-color: var(--rps-green-soft); box-shadow: var(--shadow); }
.rps-offres .faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--rps-navy);
  transition: color 0.3s var(--ease);
}
.rps-offres .faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rps-grey-100);
  color: var(--rps-green);
  transition: all 0.3s var(--ease);
}
.rps-offres .faq-item.open .faq-item__icon { background: var(--rps-green); color: #fff; transform: rotate(45deg); }
.rps-offres .faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.rps-offres .faq-item.open .faq-item__answer { max-height: 300px; }
.rps-offres .faq-item__answer-inner {
  padding: 0 24px 22px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--rps-grey-600);
}
.rps-offres .faq-item__answer-inner strong { color: var(--rps-navy); font-weight: 600; }

/* ─── SECTION F — CTA final ─── */
.rps-offres .cta-final {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-blue) 100%);
  color: #fff;
}
.rps-offres .cta-final__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.rps-offres .cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.rps-offres .cta-final h2 em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--rps-green-soft);
}
.rps-offres .cta-final p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}
.rps-offres .cta-final__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.3s var(--ease);
}
.rps-offres .cta-final__phone:hover { color: var(--rps-green-soft); }
.rps-offres .cta-final__phone svg { width: 22px; height: 22px; }
.rps-offres .cta-final__buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ─── Responsive global ─── */
@media (max-width: 768px) {
  .rps-offres .hero { padding: 60px 0 70px; }
  .rps-offres .offers,
  .rps-offres .journey,
  .rps-offres .faq,
  .rps-offres .reassurance,
  .rps-offres .cta-final { padding: 60px 0; }
  .rps-offres .offer-card { padding: 32px 24px; }
  .rps-offres .offer-card__title { padding-right: 70px; }
  .rps-offres .hero__cta .btn { width: 100%; }
  .rps-offres .cta-final__buttons .btn { width: 100%; }
}


/* ╔══════════════════════════════════════════════════════════════════╗
   ║  18. SECTIONS CONVERSION — Intégration Offres dans pages         ║
   ║  ────────────────────────────────────────────────────────────── ║
   ║  Sections ajoutées aux pages existantes pour le parcours         ║
   ║  commercial : accueil, expertises, fiches, contact.              ║
   ╚══════════════════════════════════════════════════════════════════╝ */

/* ─── Accueil : section "Par où commencer ?" ─── */
.rps-home .start-here { padding: 100px 0; background: var(--rps-grey-50); }
.rps-home .start-here__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.rps-home .start-here__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .rps-home .start-here__grid { grid-template-columns: 1fr; }
  .rps-home .start-here { padding: 60px 0; }
}
.rps-home .start-here__card {
  position: relative;
  background: #fff;
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.rps-home .start-here__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--rps-green);
}
.rps-home .start-here__card--primary::before { background: var(--rps-blue); }
.rps-home .start-here__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.rps-home .start-here__card-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rps-grey-400);
  margin-bottom: 12px;
}
.rps-home .start-here__card-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--rps-navy);
  margin: 0 0 12px;
}
.rps-home .start-here__card-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rps-navy);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.rps-home .start-here__card-price span { font-size: 0.875rem; font-weight: 500; color: var(--rps-grey-400); }
.rps-home .start-here__card-desc {
  font-size: 0.9375rem;
  color: var(--rps-grey-600);
  line-height: 1.6;
  margin-bottom: 20px;
}
.rps-home .start-here__card-deduct {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--rps-green-deep);
  padding: 10px 14px;
  background: rgba(70, 176, 109, 0.08);
  border-radius: var(--radius-sm);
}
.rps-home .start-here__cta { text-align: center; }
.rps-home .expertise-card__price-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--rps-grey-500);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.3s var(--ease);
}
.rps-home .expertise-card__price-link:hover { color: var(--rps-green); }
.rps-home .expertise-card__price-link svg { transition: transform 0.3s var(--ease); }
.rps-home .expertise-card__price-link:hover svg { transform: translate(2px, -2px); }

/* ─── Nos Expertises : bandeau conversion ─── */
.rps-expertises .conversion-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--rps-navy) 0%, var(--rps-blue) 100%);
  color: #fff;
}
.rps-expertises .conversion-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
@media (max-width: 880px) {
  .rps-expertises .conversion-banner__inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .rps-expertises .conversion-banner { padding: 60px 0; }
}
.rps-expertises .conversion-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.rps-expertises .conversion-banner__text {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}
.rps-expertises .conversion-banner__text strong { color: #fff; font-weight: 700; }
@media (max-width: 880px) { .rps-expertises .conversion-banner__text { margin: 0 auto; } }
.rps-expertises .conversion-banner__cta { flex-shrink: 0; }

/* ─── Fiches : encart conversion en pied ─── */
.rps-fiche .fiche-conversion { padding: 60px 0; background: var(--rps-grey-50); }
.rps-fiche .fiche-conversion__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--rps-grey-200);
  border-left: 4px solid var(--rps-green);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
@media (max-width: 880px) {
  .rps-fiche .fiche-conversion__inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
}
.rps-fiche .fiche-conversion__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(70, 176, 109, 0.1);
  color: var(--rps-green);
  flex-shrink: 0;
}
@media (max-width: 880px) { .rps-fiche .fiche-conversion__icon { margin: 0 auto; } }
.rps-fiche .fiche-conversion__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rps-navy);
  margin: 0 0 8px;
  line-height: 1.3;
}
.rps-fiche .fiche-conversion__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--rps-grey-600);
  margin: 0;
}
.rps-fiche .fiche-conversion__text strong { color: var(--rps-green-deep); font-weight: 700; }
.rps-fiche .fiche-conversion__cta { flex-shrink: 0; }
@media (max-width: 560px) { .rps-fiche .fiche-conversion__cta .btn { width: 100%; } }

/* Bouton green pour les encarts conversion (fiches) si non hérité */
.rps-fiche .fiche-conversion .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  transition: all 0.3s var(--ease);
  background: var(--rps-green);
  color: #fff;
  box-shadow: var(--shadow);
}
.rps-fiche .fiche-conversion .btn:hover { background: var(--rps-green-deep); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.rps-fiche .fiche-conversion .btn svg { transition: transform 0.3s var(--ease); }
.rps-fiche .fiche-conversion .btn:hover svg { transform: translateX(3px); }

/* ─── Contact : rappel offres ─── */
.rps-contact .contact-offers-reminder {
  padding: 40px 0;
  background: var(--rps-grey-50);
  border-bottom: 1px solid var(--rps-grey-200);
}
.rps-contact .contact-offers-reminder__inner { text-align: center; }
.rps-contact .contact-offers-reminder__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rps-grey-500);
  margin: 0 0 16px;
}
.rps-contact .contact-offers-reminder__cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.rps-contact .contact-offers-reminder__card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid var(--rps-grey-200);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.3s var(--ease);
  min-width: 200px;
}
.rps-contact .contact-offers-reminder__card:hover { border-color: var(--rps-green); transform: translateY(-2px); box-shadow: var(--shadow); }
.rps-contact .contact-offers-reminder__card-name { font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem; color: var(--rps-navy); }
.rps-contact .contact-offers-reminder__card-price { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; color: var(--rps-green-deep); }
.rps-contact .contact-offers-reminder__link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rps-blue);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
.rps-contact .contact-offers-reminder__link:hover { color: var(--rps-navy); }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  FIN DU FICHIER rps-styles.css                                   ║
   ║  ────────────────────────────────────────────────────────────── ║
   ║  Si vous avez besoin de modifier le style d'une page :           ║
   ║  1. Identifiez le wrapper (.rps-about, .rps-methode, etc.)       ║
   ║  2. Trouvez la section correspondante (table des matières début) ║
   ║  3. Modifiez les règles à l'intérieur de la section              ║
   ║                                                                  ║
   ║  Pour changer une couleur sur TOUT le site :                     ║
   ║  → Modifiez la variable correspondante dans :root (section 01)   ║
   ║                                                                  ║
   ║  © 2026 Humental SARL · rps.lu                                   ║
   ╚══════════════════════════════════════════════════════════════════╝ */
