/* Re-Watt landing — CSS extrait de index.html pour maintenance. */
    /* ============================================================
       Tokens design — modifier ici pour propager partout
       ============================================================ */
    :root {
      /* Palette marque (extraite du PPTX) */
      --bleu-rewatt:        #2B82C9;
      --bleu-rewatt-dark:   #1F6BAB;
      --vert-rewatt:        #4CAF50;
      --vert-rewatt-dark:   #3D9140;

      /* Neutres */
      --anthracite:         #2B2B2B; /* texte principal */
      --gris-texte:         #5C5C5C; /* texte secondaire / nav */
      --gris-sec:           #8A9199; /* texte tertiaire (footer, captions) */
      --bg:                 #FAFAF7; /* fond global */
      --bg-footer:          #F4F7F9; /* fond footer */
      --border:             #E5E5E5;
      --white:              #FFFFFF;

      /* Layout */
      --header-h:           72px;
      --container-max:      1120px;
      --container-px:       24px;
      --section-py-desktop: 96px;
      --section-py-mobile:  56px;

      /* UI */
      --radius:             12px;
      --shadow-soft:        0 1px 2px rgba(0,0,0,.04);
      --shadow-hover:       0 12px 28px rgba(43, 130, 201, .14);
      --shadow-header:      0 2px 12px rgba(0, 0, 0, .06);
      --transition:         200ms ease;
    }

    /* ============================================================
       Reset léger + base
       ============================================================ */
    *, *::before, *::after { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      /* Compense le header sticky pour les liens d'ancre */
      scroll-padding-top: calc(var(--header-h) + 8px);
    }
    body {
      margin: 0;
      font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      font-weight: 400;
      line-height: 1.6;
      color: var(--anthracite);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; }

    /* Focus visible — accessibilité clavier */
    :focus-visible {
      outline: 3px solid var(--vert-rewatt);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* Skip link */
    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      background: var(--vert-rewatt);
      color: #fff;
      padding: 8px 16px;
      z-index: 200;
      text-decoration: none;
      font-weight: 500;
    }
    .skip-link:focus { left: 8px; top: 8px; }

    /* Conteneur générique */
    .container {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-px);
    }

    /* Section générique — padding et scroll-margin pour ancres */
    .section {
      padding: var(--section-py-mobile) 0;
      scroll-margin-top: calc(var(--header-h) + 8px);
    }
    @media (min-width: 768px) {
      .section { padding: var(--section-py-desktop) 0; }
    }

    /* ============================================================
       HEADER (sticky)
       ============================================================ */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: saturate(180%) blur(12px);
      -webkit-backdrop-filter: saturate(180%) blur(12px);
      border-bottom: 1px solid transparent;
      transition: border-color var(--transition), box-shadow var(--transition);
    }


    /* Correctif mobile : menu opaque.
       Le header utilise un fond semi-transparent + backdrop-filter.
       Sur mobile, un menu fixed placé dans ce header peut paraître transparent.
       Quand le menu est ouvert, on force un fond blanc solide. */
    .site-header.menu-open {
      background: #FFFFFF;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      border-bottom-color: var(--border);
      box-shadow: var(--shadow-header);
    }
    #mobile-menu.mobile-menu {
      background: #FFFFFF;
      background-color: #FFFFFF;
      z-index: 1000;
    }

    /* Classe ajoutée par JS quand on a scrollé : ombre + bordure */
    .site-header.is-scrolled {
      border-bottom-color: var(--border);
      box-shadow: var(--shadow-header);
    }
    .site-header__inner {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-px);
      height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    /* Bloc gauche : logo + baseline (en LIGNE) */
    .header-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .header-brand__logo {
      height: 48px;
      width: auto;
      display: block;
    }
    .header-brand__baseline {
      font-size: 0.875rem;
      color: var(--gris-texte);
      font-weight: 400;
      white-space: nowrap;
    }
    /* Masquer la baseline sur mobile */
    @media (max-width: 767px) {
      .header-brand__baseline { display: none; }
    }

    /* Nav centrale — desktop */
    .header-nav {
      display: none;
    }
    @media (min-width: 768px) {
      .header-nav {
        display: flex;
        align-items: center;
        gap: 36px;
      }
    }
    .header-nav__link {
      position: relative;
      font-size: 0.9375rem;
      font-weight: 500;
      color: var(--gris-texte);
      text-decoration: none;
      padding: 8px 0;
      transition: color var(--transition);
    }
    .header-nav__link::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 2px;
      background: var(--vert-rewatt);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform var(--transition);
    }
    .header-nav__link:hover,
    .header-nav__link:focus-visible {
      color: var(--vert-rewatt);
    }
    .header-nav__link:hover::after,
    .header-nav__link:focus-visible::after {
      transform: scaleX(1);
    }

    /* Burger mobile */
    .burger {
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      padding: 0 10px;
      background: transparent;
      border: 0;
      cursor: pointer;
      border-radius: 8px;
    }
    .burger:hover { background: rgba(0,0,0,.04); }
    .burger__bar {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--anthracite);
      border-radius: 2px;
      transition: transform var(--transition), opacity var(--transition);
    }
    @media (min-width: 768px) {
      .burger { display: none; }
    }

    /* État ouvert : burger devient une croix */
    .burger[aria-expanded="true"] .burger__bar:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .burger[aria-expanded="true"] .burger__bar:nth-child(2) { opacity: 0; }
    .burger[aria-expanded="true"] .burger__bar:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Menu mobile plein écran */
    .mobile-menu {
      position: fixed;
      inset: 0;
      top: var(--header-h);
      background: var(--white);
      z-index: 90;
      padding: 32px var(--container-px);
      display: flex;
      flex-direction: column;
      gap: 8px;
      transform: translateY(-12px);
      opacity: 0;
      visibility: hidden;
      transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    }
    .mobile-menu.is-open {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
    .mobile-menu__link {
      padding: 16px 8px;
      font-size: 1.25rem;
      font-weight: 500;
      color: var(--anthracite);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
    }
    .mobile-menu__link:hover { color: var(--vert-rewatt); }
    @media (min-width: 768px) {
      .mobile-menu { display: none; }
    }

    /* ============================================================
       MODIFICATION 1A — BLOC MISSION (nouveau, placé EN PREMIER)
       Style "Test 1" : grand titre bleu MAJUSCULES, aligné à gauche,
       interligne serré, fond clair (pas d'aplat).
       ============================================================ */
    .lead-mission {
      padding-top: calc(var(--section-py-mobile) + 16px);
      padding-bottom: var(--section-py-mobile);
    }
    @media (min-width: 768px) {
      .lead-mission {
        padding-top: calc(var(--section-py-desktop) + 16px);
        padding-bottom: var(--section-py-desktop);
      }
    }
    .lead-mission__sentence {
      margin: 0;
      font-size: clamp(2.5rem, 7vw, 5.5rem);
      line-height: 1.05;            /* interligne serré (Test 1) */
      font-weight: 800;
      color: var(--bleu-rewatt);
      text-transform: uppercase;
      letter-spacing: -0.01em;
      text-align: left;
      max-width: 18ch;              /* favorise les retours à la ligne naturels */
    }

    /* ============================================================
       MODIFICATION 1B — BLOC FACTOID 80 % (nouveau, placé en 2e)
       Style "Test 2" : deux colonnes alignées au centre vertical,
       "80 %" gauche en XXL bleu, texte droite MAJUSCULES.
       Kicker discret "LE SAVIEZ-VOUS ?" au-dessus.
       ============================================================ */
    .factoid { text-align: left; }

    .factoid__kicker {
      margin: 0 0 24px;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--anthracite);
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }

    .factoid__row {
      display: flex;
      flex-direction: column;     /* mobile : empilé */
      align-items: flex-start;
      gap: 24px;
    }
    @media (min-width: 768px) {
      .factoid__row {
        flex-direction: row;
        align-items: center;      /* deux colonnes alignées au centre vertical */
        gap: 40px;
      }
    }

    .factoid__number {
      margin: 0;
      font-size: clamp(7rem, 20vw, 16rem);
      line-height: 0.9;
      font-weight: 900;            /* Montserrat 900 pour un rendu plus dense */
      color: var(--bleu-rewatt);
      letter-spacing: -0.02em;
      flex-shrink: 0;
    }

    .factoid__text { flex: 1; }

    .factoid__line {
      margin: 0;
      font-size: clamp(1.5rem, 3vw, 2.5rem);
      font-weight: 700;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: 0.01em;
    }
    .factoid__line + .factoid__line { margin-top: 4px; }
    .factoid__line--muted  { color: var(--anthracite); }
    .factoid__line--accent { color: var(--vert-rewatt); }

    /* ============================================================
       MODIFICATION 2 — BLOC PROMESSE (verbes)
       Valorisé : filet décoratif au-dessus et en dessous, fond
       très légèrement teinté, taille augmentée, padding vertical
       généreux pour bien marquer la section.
       ============================================================ */
    .promise {
      text-align: center;
      background: #F4F7F2;          /* blanc cassé très légèrement vert */
      padding: 72px 0;
    }
    @media (min-width: 768px) {
      .promise { padding: 120px 0; }
    }
    .promise__divider {
      border: 0;
      width: 100px;
      height: 2px;
      background: var(--vert-rewatt);
      margin: 0 auto 32px;
      border-radius: 2px;
    }
    .promise__divider--bottom { margin: 32px auto 0; }
    .promise__sentence {
      margin: 0;
      font-size: clamp(1.5rem, 3vw, 2.25rem);
      font-weight: 600;
      letter-spacing: 0.05em;
      word-spacing: 0.3em;
      color: var(--vert-rewatt);
      line-height: 1.4;
    }

    /* ============================================================
       BLOC 4 — "Vous êtes…" + 4 cartes mailto
       ============================================================ */
    .profiles__title {
      margin: 0 auto 40px;
      text-align: center;
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 700;
      line-height: 1.2;
      color: var(--anthracite);
    }
    .profiles__grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 16px;
    }
    @media (min-width: 640px) {
      .profiles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (min-width: 1024px) {
      .profiles__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    }

    .profile-card {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 24px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      text-decoration: none;
      color: inherit;
      transition: transform var(--transition),
                  box-shadow var(--transition),
                  border-color var(--transition);
    }
    .profile-card:hover,
    .profile-card:focus-visible {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
      border-color: var(--vert-rewatt);
    }
    .profile-card__label {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--bleu-rewatt);
      line-height: 1.3;
    }
    .profile-card__desc {
      margin: 0;
      font-size: 0.9375rem;
      color: var(--gris-texte);
      line-height: 1.5;
      overflow-wrap: break-word;
    }
    .profile-card__cta {
      margin-top: 8px;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--vert-rewatt);
    }
    .profile-card__cta::after {
      content: " →";
      display: inline-block;
      transition: transform var(--transition);
    }
    .profile-card:hover .profile-card__cta::after { transform: translateX(4px); }

    /* ============================================================
       MODIFICATION 3 — BLOC 5 PARTENAIRES (scindé en 5A + 5B)
       5A = "Une reconnaissance officielle" (Lauréat seul, centré)
       5B = "Une expertise reconnue…" (RCube + GSM Master en 2 col)
       ============================================================ */

    /* ----- Titres communs aux deux sous-sections ----- */
    .partners__title {
      margin: 0 auto 56px;
      text-align: center;
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 700;
      line-height: 1.3;
      color: var(--anthracite);
      max-width: 720px;
    }
    .partners__eyebrow {
      display: block;
      text-align: center;
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--gris-sec);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin: 0 0 8px;
    }

    /* ----- 5A — Reconnaissance officielle (Lauréat seul) ----- */
    .recognition { text-align: center; }
    .recognition__card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      padding: 24px;
      color: var(--anthracite);
      max-width: 720px;
      margin: 0 auto;
    }

    /* Bloc médias : picto + vignette vidéo côte à côte (desktop), empilés (mobile) */
    .recognition__media {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    /* Picto Trophée (flèches circulaires) — non cliquable */
    .recognition__visual-pict {
      height: 160px;
      width: auto;
      max-width: 100%;
      object-fit: contain;
    }

    /* Vignette vidéo cliquable */
    .recognition__video {
  	position: relative;
  	display: block;
  	width: min(100%, 800px);
  	aspect-ratio: 16 / 9;
  	height: auto;
  	border-radius: 12px;
  	overflow: hidden;
  	flex-shrink: 0;
  	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  	transition: transform var(--transition), box-shadow var(--transition);
     }
    .recognition__video:hover,
    .recognition__video:focus-visible {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    }
    .recognition__video-thumb {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .recognition__video-play {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.65);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition);
    }
    .recognition__video-play svg {
      width: 28px;
      height: 28px;
      margin-left: 3px;        /* compensation optique du triangle */
    }
    .recognition__video:hover .recognition__video-play {
      background: var(--vert-rewatt);
    }

    /* Mention texte simple (non cliquable) */
    .recognition__title {
      margin: 0;
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--anthracite);
      line-height: 1.4;
      max-width: 36ch;
      text-align: center;
    }

    /* ----- Séparateur entre 5A et 5B ----- */
    .partners-separator {
      max-width: 80px;
      margin: 0 auto;
      padding: 56px 0;
    }
    .partners-separator hr {
      border: 0;
      height: 1px;
      background: var(--border);
    }

    /* ----- 5B — Expertise partenaires (RCube + GSM Master) ----- */
    .partners__grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);          /* mobile : 1 col */
      gap: 32px;
      align-items: stretch;
      max-width: 1000px;                               /* élargi de 800 → 1000 px pour les logos larges */
      margin: 0 auto;
    }
    @media (min-width: 768px) {
      .partners__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* desktop : 2 col */
        gap: 64px;
      }
    }

    .partner-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      padding: 24px;
      text-decoration: none;
      color: var(--anthracite);
      border-radius: var(--radius);
      transition: transform var(--transition);
      text-align: center;
    }
    .partner-card:hover,
    .partner-card:focus-visible {
      transform: translateY(-3px);
    }
    .partner-card__visual {
      height: 140px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity var(--transition);
    }
    .partner-card__visual img {
      max-height: 140px;
      max-width: 100%;
      width: auto;
      object-fit: contain;
    }
    .partner-card:hover .partner-card__visual { opacity: 0.9; }
    .partner-card__title {
      font-size: 1rem;
      font-weight: 500;
      color: var(--anthracite);
      line-height: 1.4;
    }

    /* ============================================================
       FOOTER
       ============================================================ */
    .site-footer {
      background: var(--bg-footer);
      padding: 56px 0 32px;
      text-align: center;
      color: var(--gris-texte);
      border-top: 1px solid var(--border);
    }
    .site-footer__name {
      font-size: 1rem;
      font-weight: 500;
      color: var(--anthracite);
      margin-bottom: 8px;
    }
    .site-footer__email {
      display: inline-block;
      margin-bottom: 16px;
      color: var(--gris-texte);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .site-footer__email:hover { color: var(--vert-rewatt); }
    .site-footer__copy {
      font-size: 0.8125rem;
      color: var(--gris-sec);
      margin-bottom: 20px;
    }
    .site-footer__socials {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 24px;
    }
    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 8px;
      color: var(--gris-texte);
      transition: color var(--transition), background var(--transition);
    }
    .social-link:hover,
    .social-link:focus-visible {
      color: var(--vert-rewatt);
      background: rgba(76, 175, 80, .08);
    }
    .social-link svg { width: 22px; height: 22px; }
    .site-footer__legal { font-size: 0.75rem; color: var(--gris-sec); }
    .site-footer__legal a {
      color: var(--gris-sec);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .site-footer__legal a:hover { color: var(--vert-rewatt); }

    /* ============================================================
       Bouton "Back to top"
       ============================================================ */
    .back-to-top {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--vert-rewatt);
      color: var(--white);
      border: 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 20px rgba(76, 175, 80, .35);
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity var(--transition), transform var(--transition), visibility var(--transition), background var(--transition);
      z-index: 80;
    }
    .back-to-top.is-visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .back-to-top:hover { background: var(--vert-rewatt-dark); }
    .back-to-top svg { width: 20px; height: 20px; }
    /* Force la flèche en blanc, sans dépendre de la propriété color */
    .back-to-top svg,
    .back-to-top svg * { stroke: #ffffff; color: #ffffff; }

    /* ============================================================
       BANDEAU + MODAL DE CONSENTEMENT AUX COOKIES
       Apparaît à la 1re visite (état localStorage vide).
       Réouvrable depuis le footer ("Politique de confidentialité").
       ============================================================ */

    /* Utilitaire — caché visuellement mais accessible aux lecteurs d'écran */
    .visually-hidden {
      position: absolute !important;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0,0,0,0);
      white-space: nowrap; border: 0;
    }

    /* ===== Bandeau bas de page ===== */
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--white);
      border-top: 1px solid var(--border);
      box-shadow: 0 -8px 24px rgba(0, 0, 0, .08);
      z-index: 150;
      transform: translateY(100%);
      transition: transform 220ms ease;
    }
    .cookie-banner.is-visible { transform: translateY(0); }
    .cookie-banner__inner {
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 20px var(--container-px);
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    @media (min-width: 1024px) {
      .cookie-banner__inner {
        flex-direction: row;
        align-items: center;
        gap: 24px;
      }
    }
    .cookie-banner__content { flex: 1; }
    .cookie-banner__title {
      margin: 0 0 4px;
      font-size: 1rem;
      font-weight: 700;
      color: var(--anthracite);
    }
    .cookie-banner__text {
      margin: 0;
      font-size: 0.875rem;
      color: var(--gris-texte);
      line-height: 1.5;
    }
    .cookie-banner__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    /* ===== Boutons cookies ===== */
    .btn-cookie {
      padding: 10px 16px;
      border-radius: 8px;
      font-family: inherit;
      font-size: 0.875rem;
      font-weight: 500;
      border: 1px solid var(--border);
      background: var(--white);
      color: var(--anthracite);
      cursor: pointer;
      transition: background var(--transition), border-color var(--transition), color var(--transition);
      white-space: nowrap;
    }
    .btn-cookie:hover { background: rgba(0, 0, 0, .04); }
    .btn-cookie--primary {
      background: var(--vert-rewatt);
      color: var(--white);
      border-color: var(--vert-rewatt);
    }
    .btn-cookie--primary:hover {
      background: var(--vert-rewatt-dark);
      border-color: var(--vert-rewatt-dark);
    }

    /* ===== Modal de personnalisation ===== */
    .cookie-modal {
      position: fixed;
      inset: 0;
      z-index: 250;
      opacity: 0;
      visibility: hidden;
      transition: opacity 220ms ease, visibility 220ms ease;
    }
    .cookie-modal.is-visible { opacity: 1; visibility: visible; }
    .cookie-modal__overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, .55);
    }
    .cookie-modal__panel {
      position: relative;
      max-width: 560px;
      width: calc(100% - 32px);
      max-height: calc(100vh - 32px);
      overflow-y: auto;
      margin: 16px auto;
      top: 50%;
      transform: translateY(-50%);
      background: var(--white);
      border-radius: 16px;
      padding: 32px 28px 28px;
      box-shadow: 0 24px 64px rgba(0, 0, 0, .24);
    }
    .cookie-modal__close {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 36px;
      height: 36px;
      background: transparent;
      border: 0;
      border-radius: 8px;
      cursor: pointer;
      color: var(--gris-texte);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cookie-modal__close:hover { background: rgba(0, 0, 0, .04); color: var(--anthracite); }
    .cookie-modal__close svg { width: 20px; height: 20px; }

    .cookie-modal__title {
      margin: 0 0 16px;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--anthracite);
      padding-right: 32px;
    }
    .cookie-modal__sub {
      margin: 24px 0 12px;
      font-size: 1rem;
      font-weight: 700;
      color: var(--anthracite);
    }
    .cookie-modal p {
      margin: 0 0 12px;
      font-size: 0.9375rem;
      color: var(--gris-texte);
      line-height: 1.55;
    }
    .cookie-modal a {
      color: var(--vert-rewatt);
      text-decoration: underline;
      text-underline-offset: 2px;
      font-weight: 500;
    }
    .cookie-modal a:hover { color: var(--vert-rewatt-dark); }

    /* ===== Cartes de catégories ===== */
    .cookie-cat {
      display: block;
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 14px 16px;
      margin-bottom: 10px;
      cursor: pointer;
      transition: border-color var(--transition);
    }
    .cookie-cat--locked { cursor: default; }
    .cookie-cat:not(.cookie-cat--locked):hover { border-color: var(--gris-sec); }
    .cookie-cat__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 6px;
    }
    .cookie-cat__name {
      font-weight: 500;
      color: var(--anthracite);
      font-size: 0.9375rem;
    }
    .cookie-cat__status {
      font-size: 0.75rem;
      color: var(--gris-sec);
      background: var(--bg-footer);
      padding: 4px 10px;
      border-radius: 999px;
      font-weight: 500;
    }
    .cookie-cat__desc {
      margin: 0;
      font-size: 0.8125rem;
      color: var(--gris-texte);
      line-height: 1.45;
    }

    /* ===== Toggle switch ===== */
    .cookie-toggle {
      position: relative;
      display: inline-block;
      width: 38px;
      height: 22px;
      flex-shrink: 0;
    }
    .cookie-toggle input {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
      pointer-events: none;
    }
    .cookie-toggle__slider {
      position: absolute;
      inset: 0;
      background: #C7CDD3;
      border-radius: 999px;
      transition: background var(--transition);
    }
    .cookie-toggle__slider::before {
      content: "";
      position: absolute;
      top: 2px;
      left: 2px;
      width: 18px;
      height: 18px;
      background: #fff;
      border-radius: 50%;
      transition: transform var(--transition);
      box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
    }
    .cookie-toggle input:checked ~ .cookie-toggle__slider {
      background: var(--vert-rewatt);
    }
    .cookie-toggle input:checked ~ .cookie-toggle__slider::before {
      transform: translateX(16px);
    }
    .cookie-toggle input:focus-visible ~ .cookie-toggle__slider {
      outline: 3px solid var(--vert-rewatt);
      outline-offset: 3px;
    }

    .cookie-modal__actions {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 24px;
    }
    .cookie-modal__actions .btn-cookie { flex: 1 1 auto; min-width: 140px; }

    /* ===== Bouton "Politique de confidentialité" du footer (texte simple cliquable, SANS soulignement) ===== */
    .footer-link-button {
      background: transparent;
      border: 0;
      padding: 0;
      font: inherit;
      color: var(--gris-sec);
      text-decoration: none;
      cursor: pointer;
    }
    .footer-link-button:hover { color: var(--vert-rewatt); }
    .footer-link-button:focus-visible {
      outline: 3px solid var(--vert-rewatt);
      outline-offset: 3px;
      border-radius: 2px;
    }

    /* ============================================================
       Préférence "reduced motion"
       ============================================================ */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      html { scroll-behavior: auto; }
    }
