@font-face {
      font-family: 'Rinter';
      src: url('font/Rinter.otf') format('opentype');
      font-weight: normal;
      font-style: normal;
    }
  
  :root {
    --charcoal: #1a1b1c;
    --sage: #7F9349;
    --charcoal-soft: #222323;
    --ink: #0d0e0e;
    --green: #296D5A;
    --cream: #e5e7eb;
    --dark: #1a1b1c;
    --orange: #F65009;
    --orange-soft: #fa6a2c;
    --green-deep: #1E3B33;
    --green-mid: #296D5A;
    --green-light: #4a8d76;
    --gold: #c9a671;
    --text-primary: #f0ebe2;
    --text-secondary: #b8b2a6;
    --text-muted: #7d7870;
    --orange-light: rgba(246,80,9,0.08);
    /*--green-light: rgba(41,109,90,0.08);*/
    --border-subtle: rgba(240, 235, 226, 0.08);
    --border-medium: rgba(240, 235, 226, 0.16);
    --serif: 'Rinter', Inter !important;
    --sans: 'Rinter', Inter !important;
    --mono: 'Rinter', Inter !important;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Rinter', Inter !important;
  }

  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
  }
  /* Variante large : pour les espaces membres (dashboard, leçon, ressource STORM)
     qui doivent profiter de toute la largeur disponible comme un vrai LMS */
  .container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px;
  }
  /* Override automatique : dans les pages "espace membre", on élargit
     le container pour utiliser tout l'espace écran disponible.
     Pas besoin de toucher au HTML — c'est automatique selon le wrapper parent. */
  .lms .container,
  .lesson .container,
  .storm-article .container {
    max-width: 1600px;
  }

  /* === DEV PREVIEW BANNER (à supprimer en prod) === */
  .dev-preview-banner {
    background: #1a2a1f;
    border-bottom: 2px solid var(--green-light);
    padding: 16px 32px;
    font-family: var(--sans);
    color: #d8e4dd;
    font-size: 13px;
  }
  .dev-preview-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  .dev-preview-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 320px;
  }
  .dev-preview-tag {
    background: var(--green-light);
    color: var(--charcoal);
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    padding: 4px 9px;
    border-radius: 2px;
    flex-shrink: 0;
  }
  .dev-preview-text {
    line-height: 1.5;
  }
  .dev-preview-text strong { color: #fff; font-weight: 600; }
  .dev-preview-actions {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .dev-preview-link {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--green-light);
    text-underline-offset: 3px;
    font-size: 12px;
    font-weight: 500;
  }
  .dev-preview-close {
    background: transparent;
    border: 1px solid rgba(216, 228, 221, 0.3);
    color: #d8e4dd;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    display: grid;
    place-items: center;
  }
  .dev-preview-notes {
    border-top: 1px solid rgba(74, 141, 118, 0.25);
    padding-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 28px;
    font-size: 11.5px;
    color: #a8b8af;
    line-height: 1.5;
  }
  .dev-preview-notes strong {
    color: #d8e4dd;
    font-weight: 600;
  }

  /* === MINI-NAV (existante sur pragmaforma.com — reproduite pour contexte) === */
  header.mini-nav {
    border-bottom: 1px solid var(--border-subtle);
    background: var(--charcoal);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
  }
  .logo {
    display: flex;
    align-items: baseline;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    text-decoration: none;
  }
  .logo-mark {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: var(--orange);
    border-radius: 50%;
    margin-right: 10px;
    transform: translateY(-2px);
  }
  .logo span.accent { color: var(--orange); }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
  }
  .nav-links > li {
    position: relative;
  }
  .nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .nav-links a.active {
    color: var(--text-primary);
  }
  .nav-links a.active::after {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
  }
  .nav-links a.has-dropdown::after {
    content: "▾";
    font-size: 9px;
    color: var(--text-muted);
    margin-left: 2px;
    position: static;
    background: none;
    height: auto;
    width: auto;
  }
  .nav-links a.has-dropdown.active::after {
    content: "▾";
    color: var(--orange);
  }
  .nav-links a.has-dropdown.active::before {
    content: "";
    position: absolute;
    bottom: -28px;
    left: 0;
    right: 16px;
    height: 2px;
    background: var(--orange);
  }
  .nav-links a.new-tag::before {
    content: "Nouveau";
    position: absolute;
    top: -10px;
    right: -42px;
    font-family: var(--mono);
    font-size: 9px;
    color: var(--orange);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 2px 6px;
    border: 1px solid var(--orange);
    border-radius: 2px;
    line-height: 1;
  }

  /* Dropdown menu under Entreprises */
  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: -20px;
    min-width: 280px;
    background: var(--charcoal-soft);
    border: 1px solid var(--border-medium);
    border-top: 2px solid var(--orange);
    border-radius: 0 0 4px 4px;
    padding: 14px 0;
    margin-top: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    z-index: 200;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  }
  .nav-links li:hover .nav-dropdown,
  .nav-links li:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 28px;
    width: 10px;
    height: 10px;
    background: var(--charcoal-soft);
    border-top: 1px solid var(--border-medium);
    border-left: 1px solid var(--border-medium);
    transform: rotate(45deg);
  }
  .nav-dropdown-eyebrow {
    padding: 4px 22px 12px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 6px;
  }
  .nav-dropdown a {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 2px !important;
    padding: 10px 22px !important;
    color: var(--text-primary) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none;
    transition: background 0.15s;
  }
  .nav-dropdown a::after,
  .nav-dropdown a::before {
    display: none !important;
  }
  .nav-dropdown a:hover {
    background: rgba(246, 80, 9, 0.08);
  }
  .nav-dropdown a .sub {
    font-size: 11.5px;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--sans);
  }
  .nav-dropdown a .arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.15s, transform 0.15s;
  }
  .nav-dropdown a:hover .arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(2px);
  }
  .nav-cta { display: flex; gap: 16px; }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
  }
  .btn-primary { background: var(--orange); color: var(--charcoal); }
  .btn-primary:hover { background: var(--orange-soft); }
  .btn-ghost {
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    background: transparent;
  }

  /* === PAGE TOP === */
  .page-top {
    padding: 70px 0 50px;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
  }
  .page-top::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246, 80, 9, 0.07) 0%, transparent 60%);
    pointer-events: none;
  }
  .breadcrumb {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .breadcrumb a { color: var(--text-muted); text-decoration: none; }
  .breadcrumb .sep { margin: 0 10px; color: var(--orange); }
  .breadcrumb .current { color: var(--text-primary); }

  .page-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: end;
    position: relative;
  }

  .page-positioning {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .page-positioning::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--orange);
  }

  h1.page-title {
    font-family: var(--serif);
    font-size: clamp(40px, 4.5vw, 62px);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--text-primary);
  }
  h1.page-title em {
    font-style: italic;
    color: var(--orange);
    font-weight: 400;
  }
  h1.page-title .underlined {
    border-bottom: 3px solid var(--green-light);
    padding-bottom: 4px;
  }
  .page-lead {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 640px;
    margin-bottom: 20px;
  }
  .page-manifesto-seed {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 640px;
    margin-bottom: 32px;
    padding: 14px 18px;
    border-left: 2px solid var(--green-light);
    background: rgba(74, 141, 118, 0.06);
    font-style: italic;
  }
  .page-manifesto-seed strong {
    color: var(--green-light);
    font-weight: 600;
    font-style: normal;
  }
  .page-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }
  .page-actions .phone {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--text-muted);
    margin-left: 8px;
  }
  .page-actions .phone strong {
    color: var(--text-primary);
    font-weight: 500;
  }

  /* Side stats card */
  .side-stats {
    background: var(--ink);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--orange);
    padding: 28px 30px;
    border-radius: 4px;
  }
  .side-stats-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
    font-weight: 500;
  }
  .stat-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-subtle);
    align-items: center;
  }
  .stat-row:last-child { border-bottom: none; }
  .stat-row .num {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
    color: var(--text-primary);
    letter-spacing: -0.02em;
  }
  .stat-row .num span.unit {
    font-size: 18px;
    color: var(--orange);
  }
  .stat-row .label {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
  }

  /* === AUDIENCE STRIP "Vous êtes..." === */
  .audience-strip {
    background: var(--charcoal-soft);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 24px 0;
  }
  .audience-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .audience-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .audience-label::before {
    content: "→";
    color: var(--orange);
  }
  .audience-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    flex: 1;
  }
  .audience-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: var(--ink);
    border: 1px solid var(--border-medium);
    border-radius: 100px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.18s ease;
    cursor: pointer;
  }
  .audience-tag:hover {
    border-color: var(--orange);
    background: rgba(246, 80, 9, 0.06);
    color: var(--text-primary);
  }
  .audience-tag .icon {
    font-size: 14px;
    opacity: 0.8;
  }

  /* === LOGO BAR === */
  .logo-bar {
    border-bottom: 1px solid var(--border-subtle);
    padding: 30px 0;
    background: var(--ink);
    overflow: hidden; /* sécurité : empêche tout débordement horizontal du document */
  }
  .logo-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    /* min-width:0 pour permettre au marquee de rétrécir correctement (sinon flex:1 le pousse au-delà du viewport) */
    min-width: 0;
  }
  .logo-bar-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
    max-width: 160px;
    line-height: 1.5;
  }

  /* === MARQUEE — défilement horizontal infini des logos === */
  .logo-marquee {
    flex: 1;
    /* CRUCIAL : permet au flex item de rétrécir sous sa largeur de contenu, sinon overflow */
    min-width: 0;
    overflow: hidden;
    position: relative;
    /* Fondu progressif sur les bords pour masquer le « saut » de la boucle */
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 6%,
      black 94%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 6%,
      black 94%,
      transparent 100%
    );
  }
  .logo-track {
    display: flex;
    gap: 56px;
    align-items: center;
    width: max-content; /* track aussi large que ses items */
    animation: marquee-scroll 32s linear infinite;
  }
  /* Pause au survol — donne le temps de lire un nom */
  .logo-marquee:hover .logo-track,
  .logo-marquee:focus-within .logo-track {
    animation-play-state: paused;
  }
  /* Translation de -50% : on a dupliqué les logos donc -50% = un cycle complet sans saut */
  @keyframes marquee-scroll {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
  }
  /* Respect des préférences d'accessibilité : pas d'animation si l'utilisateur la désactive */
  @media (prefers-reduced-motion: reduce) {
    .logo-track {
      animation: none;
      /* Sans animation, on laisse défiler manuellement avec un overflow auto */
    }
    .logo-marquee {
      overflow-x: auto;
      scrollbar-width: thin;
    }
  }

  .client-logo {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
    font-weight: 500;
    opacity: 0.65;
    white-space: nowrap;
    font-style: italic;
    /* Empêche les logos de rétrécir dans la track flex */
    flex-shrink: 0;
  }
  .client-logo.bold {
    font-family: var(--sans);
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 13px;
  }

  /* === SECTION ANCHOR NAV === */
  .anchor-nav {
    background: var(--ink);
    border-bottom: 1px solid var(--border-subtle);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
  }
  .anchor-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    overflow-x: auto;
  }
  .anchor-label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .anchor-list {
    display: flex;
    gap: 28px;
    list-style: none;
    flex: 1;
  }
  .anchor-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .anchor-list a .num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--orange);
    letter-spacing: 0.06em;
  }
  .anchor-list a:hover { color: var(--text-primary); }

  /* === SECTION HEADER === */
  .section-head {
    margin-bottom: 56px;
    max-width: 820px;
  }
  .section-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .section-eyebrow::before {
    content: "";
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--orange);
  }
  .section-eyebrow.green {
    color: var(--green-light);
  }
  .section-eyebrow.green::before {
    background: var(--green-light);
  }

  h3.section-h {
    font-family: var(--serif);
    font-size: clamp(34px, 3.8vw, 48px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    color: var(--text-primary);
  }
  h3.section-h em {
    font-style: italic;
    color: var(--orange);
    font-weight: 400;
  }
  .section-lead {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
  }

  /* === MANIFESTO COMPACT === */
  .manifesto {
    padding: 100px 0;
    background: var(--ink);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }
  .manifesto-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .manifesto-quote-mark {
    font-family: var(--serif);
    font-size: 80px;
    color: var(--orange);
    line-height: 0.5;
    margin-bottom: 16px;
    opacity: 0.4;
  }
  .manifesto-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-light);
    font-weight: 500;
    margin-bottom: 28px;
  }
  .manifesto h3 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-primary);
  }
  .manifesto h3 em {
    font-style: italic;
    color: var(--orange);
    font-weight: 500;
  }
  .manifesto-right p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .manifesto-right p:last-child { margin-bottom: 0; }
  .manifesto-right strong {
    color: var(--text-primary);
    font-weight: 600;
  }

  /* === LEVEL SECTION === */
  .levels-section {
    padding: 110px 0 90px;
  }

  .level-block {
    margin-bottom: 64px;
    position: relative;
  }
  .level-block:last-child { margin-bottom: 0; }

  .level-header {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .level-marker {
    font-family: var(--serif);
    font-size: 80px;
    line-height: 0.85;
    color: var(--orange);
    font-weight: 400;
    letter-spacing: -0.03em;
    font-style: italic;
  }
  .level-marker .niveau-label {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-style: normal;
  }
  .level-title { padding-top: 14px; }
  .level-title h4 {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text-primary);
  }
  .level-title h4 em { color: var(--orange); font-style: italic; }
  .level-title p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 700px;
  }

  .level-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .level-card {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 28px 28px;
    position: relative;
  }
  .level-card.bis {
    background: var(--ink);
    border-style: dashed;
    border-color: rgba(240, 235, 226, 0.12);
  }
  .level-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 16px;
    padding: 4px 10px;
    border: 1px solid rgba(246, 80, 9, 0.2);
    border-radius: 2px;
    background: rgba(246, 80, 9, 0.06);
  }
  .level-card.bis .level-card-tag {
    color: var(--green-light);
    border-color: rgba(74, 141, 118, 0.25);
    background: rgba(74, 141, 118, 0.06);
  }
  .level-card h5 {
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary);
  }
  .level-card .desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .level-card-list {
    list-style: none;
    margin-bottom: 20px;
  }
  .level-card-list li {
    padding: 7px 0 7px 22px;
    position: relative;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
  }
  .level-card-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--orange);
  }
  .level-card.bis .level-card-list li::before { color: var(--green-light); }

  .level-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
  }
  .level-card-format {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .level-card-cta {
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    gap: 6px;
  }
  .level-card-cta::after { content: "→"; }

  /* === FAMILY (TECHNO) === */
  .techno-section {
    padding: 110px 0 90px;
    background: var(--ink);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }

  .family-section {
    margin-bottom: 60px;
  }
  .family-section:last-child { margin-bottom: 0; }

  .family-header {
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 60px 1fr 200px;
    gap: 28px;
    align-items: start;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .family-roman {
    font-family: var(--serif);
    font-size: 42px;
    line-height: 1;
    font-weight: 500;
    font-style: italic;
    color: var(--green-light);
  }
  .family-section.proprio .family-roman { color: var(--text-muted); }
  .family-title { padding-top: 4px; }
  .family-tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green-light);
    font-weight: 500;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border: 1px solid rgba(74, 141, 118, 0.25);
    border-radius: 2px;
    background: rgba(74, 141, 118, 0.08);
  }
  .family-section.proprio .family-tag {
    color: var(--text-muted);
    border-color: var(--border-medium);
    background: var(--charcoal);
  }
  .family-title h4 {
    font-family: var(--serif);
    font-size: 32px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: var(--text-primary);
  }
  .family-title h4 em { font-style: italic; color: var(--orange); }
  .family-title p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 600px;
  }
  .family-counter { text-align: right; padding-top: 8px; }
  .family-counter .num {
    font-family: var(--serif);
    font-size: 48px;
    line-height: 1;
    color: var(--green-light);
    font-weight: 500;
    letter-spacing: -0.02em;
  }
  .family-section.proprio .family-counter .num { color: var(--text-muted); }
  .family-counter .label {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* Tools */
  .tools-list { border-top: 1px solid var(--border-subtle); }
  .tool-item { border-bottom: 1px solid var(--border-subtle); }
  .tool-row {
    display: grid;
    grid-template-columns: 80px 220px 1fr 110px 32px;
    gap: 24px;
    padding: 22px 0;
    align-items: center;
  }
  .tool-icon {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    margin-left: 12px;
  }
  .tool-icon.mistral { background: linear-gradient(135deg, #FF7000, #B33A0E); color: white; }
  .tool-icon.dust { background: linear-gradient(135deg, #1a1a1a, #444); color: #FFCD1F; border: 1px solid #444;}
  .tool-icon.local { background: linear-gradient(135deg, var(--green-mid), var(--green-deep)); color: var(--text-primary); }
  .tool-icon.hf { background: linear-gradient(135deg, #FFD21E, #FF9D00); color: #1a1a1a; }
  .tool-icon.carbon { background: linear-gradient(135deg, var(--green-light), var(--green-deep)); color: var(--text-primary); }
  .tool-icon.bias { background: linear-gradient(135deg, #c9a671, #8b7148); color: var(--charcoal); }
  .tool-icon.rgpd { background: linear-gradient(135deg, #002766, #0050a0); color: white; }
  .tool-icon.aiact { background: linear-gradient(135deg, #003399, #FFCC00); color: white; }
  .tool-icon.ms { background: linear-gradient(135deg, #00A4EF, #0078D4); color: white; }
  .tool-icon.google { background: linear-gradient(135deg, #4285F4, #34A853); color: white; }
  .tool-icon.openai { background: linear-gradient(135deg, #10A37F, #0D8466); color: white; }
  .tool-icon.anthropic { background: linear-gradient(135deg, #D97757, #B85B40); color: white; }
  .tool-icon.cohere { background: linear-gradient(135deg, #39594D, #1d3a30); color: white; }

  .tool-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
  }
  .tool-name .tagline {
    display: block;
    font-family: var(--sans);
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 3px;
    font-weight: 400;
  }
  .tool-summary {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    padding-right: 14px;
  }
  .tool-courses-count {
    text-align: right;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.5;
  }
  .tool-courses-count .count {
    display: block;
    font-family: var(--serif);
    font-size: 22px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 3px;
    font-weight: 500;
  }
  .tool-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-medium);
    color: var(--text-primary);
    display: grid;
    place-items: center;
    font-size: 13px;
    background: transparent;
  }
  .tool-item.expanded .tool-toggle {
    background: var(--orange);
    color: var(--charcoal);
    border-color: var(--orange);
  }

  /* Course cards expanded */
  .tool-courses {
    padding: 0 0 28px 80px;
    margin-left: 12px;
    display: none;
  }
  .tool-item.expanded .tool-courses {
    display: block;
  }
  .tool-courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 4px;
  }
  .course-card {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-left: 2px solid var(--orange);
    padding: 18px 20px;
    border-radius: 4px;
  }
  .family-section.souverain .course-card { border-left-color: var(--green-light); }
  .course-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
  }
  .course-card-tag {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
  }
  .course-card-format {
    font-family: var(--mono);
    font-size: 9.5px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
  }
  .course-card h6 {
    font-family: var(--serif);
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 6px;
  }
  .course-card p {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .course-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--border-subtle);
  }
  .course-audience {
    font-family: var(--mono);
    font-size: 9.5px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
  }
  .course-cta {
    color: var(--text-primary);
    font-size: 11.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    gap: 6px;
  }
  .course-cta::after { content: "→"; }

  /* Family separator */
  .family-divider {
    padding: 36px 0 32px;
    text-align: center;
    margin: 40px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }
  .family-divider .divider-line {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .family-divider .divider-line::before,
  .family-divider .divider-line::after {
    content: "";
    width: 60px;
    height: 1px;
    background: var(--border-medium);
  }
  .family-divider h4 {
    font-family: var(--serif);
    font-size: clamp(24px, 2.6vw, 32px);
    line-height: 1.18;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin: 18px 0 8px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
  .family-divider h4 em { font-style: italic; color: var(--orange); }
  .family-divider p {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.55;
  }

  /* === V1 OFFERS === */
  .offers-section {
    padding: 110px 0 90px;
  }
  .offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .offer-card {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    padding: 28px 26px;
    border-radius: 4px;
    position: relative;
  }
  .offer-card.recommended {
    border: 1px solid var(--green-mid);
  }
  .recommended-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: var(--green-mid);
    color: var(--text-primary);
    font-family: var(--mono);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    padding: 5px 10px;
    border-radius: 2px;
    text-transform: uppercase;
  }
  .offer-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 16px;
  }
  .offer-card h4 {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-primary);
  }
  .offer-card p.offer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 24px;
  }
  .offer-list { list-style: none; margin-bottom: 22px; }
  .offer-list li {
    padding: 8px 0 8px 22px;
    position: relative;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
  }
  .offer-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--orange);
  }
  .offer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    width: 100%;
  }
  .offer-cta::after { content: "→"; }

  /* === ACCOMPAGNEMENT === */
  .accomp-section {
    padding: 90px 0;
    background: var(--ink);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }
  .accomp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .accomp-card {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 32px 30px;
  }
  .accomp-card .offer-tag { color: var(--orange); margin-bottom: 14px; }
  .accomp-card h4 {
    font-family: var(--serif);
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 500;
    line-height: 1.2;
  }
  .accomp-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 22px;
  }
  .accomp-list { list-style: none; }
  .accomp-list li {
    padding: 8px 0 8px 22px;
    position: relative;
    font-size: 13px;
    color: var(--text-secondary);
  }
  .accomp-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--orange);
  }

  /* === DOMAINS SECTION (RSE / AO) === */
  .domains-section {
    padding: 110px 0 90px;
  }
  .domains-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 8px;
  }
  .domain-card {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .domain-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange) 0%, var(--green-mid) 100%);
  }
  .domain-card.rse::before {
    background: linear-gradient(90deg, var(--green-mid) 0%, var(--green-light) 100%);
  }
  .domain-card-header {
    padding: 36px 36px 28px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .domain-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 18px;
    padding: 5px 10px;
    border: 1px solid rgba(246, 80, 9, 0.2);
    border-radius: 2px;
    background: rgba(246, 80, 9, 0.06);
  }
  .domain-card.rse .domain-card-tag {
    color: var(--green-light);
    border-color: rgba(74, 141, 118, 0.25);
    background: rgba(74, 141, 118, 0.08);
  }
  .domain-card h4 {
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    color: var(--text-primary);
  }
  .domain-card h4 em {
    font-style: italic;
    color: var(--orange);
  }
  .domain-card.rse h4 em {
    color: var(--green-light);
  }
  .domain-card-lead {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  .domain-angles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
  }
  .domain-angle {
    padding: 28px 30px;
    border-right: 1px solid var(--border-subtle);
  }
  .domain-angle:last-child { border-right: none; }
  .domain-angle-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
  }
  .domain-angle h5 {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 14px;
  }
  .domain-angle ul {
    list-style: none;
  }
  .domain-angle ul li {
    padding: 7px 0 7px 18px;
    position: relative;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
  }
  .domain-angle ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 12px;
  }
  .domain-card.rse .domain-angle ul li::before { color: var(--green-light); }

  .domain-card-footer {
    padding: 20px 36px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--ink);
  }
  .domain-card-formats {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .domain-card-cta {
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
  }
  .domain-card-cta::after { content: "→"; }

  /* === SUGGESTION === */
  .suggestion {
    background: rgba(41, 109, 90, 0.12);
    border: 1px solid rgba(74, 141, 118, 0.25);
    border-left: 3px solid var(--green-light);
    border-radius: 4px;
    padding: 20px 24px;
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 32px;
  }
  .suggestion-icon { color: var(--gold); margin-right: 10px; }
  .suggestion strong { color: var(--green-light); font-weight: 600; }
  .suggestion u {
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: var(--green-light);
    text-underline-offset: 3px;
  }

  /* === TESTIMONIALS === */
  .testimonials-section {
    padding: 100px 0;
  }
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
  }
  .testimonial {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 28px 26px;
  }
  .testimonial-quote {
    font-family: var(--serif);
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-style: italic;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border-subtle);
  }
  .author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
    flex-shrink: 0;
  }
  .testimonial:nth-child(2) .author-avatar {
    background: linear-gradient(135deg, var(--orange), #c4400a);
  }
  .testimonial:nth-child(3) .author-avatar {
    background: linear-gradient(135deg, var(--gold), #8b7148);
  }
  .author-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
  }
  .author-role {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 2px;
  }

  /* === CONTACT BAND === */
  .contact-section {
    padding: 110px 0;
    background: var(--ink);
    border-top: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
  }
  .contact-section::before {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(41, 109, 90, 0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
  }
  .contact-left h3 {
    font-family: var(--serif);
    font-size: clamp(34px, 3.8vw, 48px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
  }
  .contact-left h3 em { font-style: italic; color: var(--orange); }
  .contact-left p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
  }
  .contact-channels {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .contact-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    background: var(--charcoal-soft);
    text-decoration: none;
    color: var(--text-primary);
  }
  .contact-channel-icon {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background: rgba(246, 80, 9, 0.12);
    color: var(--orange);
    display: grid;
    place-items: center;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
  }
  .contact-channel-icon.green {
    background: rgba(41, 109, 90, 0.16);
    color: var(--green-light);
  }
  .contact-channel-text { flex: 1; }
  .contact-channel-label {
    font-size: 10.5px;
    font-family: var(--mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
  }
  .contact-channel-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
  }
  .contact-channel-arrow { color: var(--text-muted); font-size: 16px; }

  .contact-form {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 32px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
  }
  .form-field {
    display: flex;
    flex-direction: column;
  }
  .form-field.full { grid-column: 1 / -1; }
  .form-label {
    font-size: 11px;
    font-family: var(--mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 7px;
  }
  .form-input, .form-textarea, .form-select {
    background: var(--ink);
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    padding: 10px 12px;
    color: var(--text-primary);
    font-family: var(--sans);
    font-size: 13.5px;
  }
  .form-textarea { min-height: 90px; resize: vertical; }
  .form-submit {
    background: var(--orange);
    color: var(--charcoal);
    padding: 13px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--sans);
  }
  .form-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
    line-height: 1.5;
  }
  html { scroll-behavior: smooth; }


  /* ── URGENCY BAR ─────────────────────────────────── */
  .urgency-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--orange);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-family: 'Rinter', Inter !important;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
  }
  .urgency-bar a { color: #fff; text-decoration: underline; }

  /* ── NAV ─────────────────────────────────────────── */
  nav {
    background: var(--dark);
    padding: 18px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    font-family: 'Rinter';
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--cream);
    letter-spacing: -0.02em;
  }
  .logo span { color: var(--orange); }
  nav .nav-b2b {
    background: transparent;
    color: rgba(229,231,235,0.7);
    font-family: 'Rinter';
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 18px;
    border: 1px solid rgba(229,231,235,0.2);
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: all 0.2s;
  }
  nav .nav-b2b:hover { color: #fff; border-color: rgba(229,231,235,0.5); background: rgba(229,231,235,0.06); }
  nav .nav-cta {
    background: var(--orange);
    color: #fff;
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 0.85rem;
    padding: 10px 22px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s;
  }
  nav .nav-cta:hover { background: #d94007; }

  /* ── HERO ────────────────────────────────────────── */
  .hero {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 100px 5vw 80px;
    min-height: 88vh;
    display: flex;
    align-items: center;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 80% 50%, rgba(41,109,90,0.18) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 10% 80%, rgba(246,80,9,0.12) 0%, transparent 60%);
    pointer-events: none;
  }
  /* Large decorative number */
  .hero-bg-text {
    position: absolute;
    right: -2vw;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Rinter';
    font-weight: 800;
    font-size: clamp(160px, 22vw, 340px);
    color: rgba(127,147,73,0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.04em;
  }

  .hero-inner {
    position: relative;
    max-width: 780px;
    z-index: 2;
  }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(246,80,9,0.15);
    border: 1px solid rgba(246,80,9,0.3);
    color: #F98B60;
    font-family: 'Rinter';
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    margin-bottom: 28px;
  }
  .hero-tag::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--orange);
    border-radius: 50%;
    animation: blink 1.4s infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

  .hero h1 {
    font-family: 'Rinter';
    font-weight: 800;
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    color: var(--cream);
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 26px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--orange);
  }

  .hero h2 {
    font-family: 'Rinter';
    font-weight: 300;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(229,231,235,0.72);
    line-height: 1.65;
    max-width: 640px;
    margin-bottom: 18px;
  }
  .hero-sub {
    font-size: 0.95rem;
    color: rgba(229,231,235,0.5);
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 44px;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--orange);
    color: #fff;
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 36px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 40px rgba(246,80,9,0.35);
  }
  .hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 50px rgba(246,80,9,0.5);
  }
  .hero-cta svg { width:18px; height:18px; }

  .hero-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: center;
    margin-top: 14px;
    font-size: 0.78rem;
    color: rgba(229,231,235,0.45);
    font-family: 'Rinter', Inter !important;
  }
  .hero-reassurance .dot { opacity: 0.3; }

  .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
  }
  .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(229,231,235,0.05);
    border: 1px solid rgba(229,231,235,0.12);
    color: rgba(229,231,235,0.7);
    font-size: 0.78rem;
    padding: 6px 12px;
    font-family: 'Rinter', Inter !important;
  }

  /* ── STATS ───────────────────────────────────────── */
  .stats {
    background: var(--green);
    padding: 60px 5vw;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .stat-item {
    background: rgba(229,231,235,0.05);
    padding: 36px 28px;
    text-align: center;
    position: relative;
  }
  .stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(229,231,235,0.1);
  }
  .stat-num {
    font-family: 'Rinter';
    font-weight: 800;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    color: var(--cream);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-num span { color: var(--orange); }
  .stat-label {
    font-size: 0.85rem;
    color: rgba(229,231,235,0.65);
    line-height: 1.4;
    font-weight: 300;
  }

  /* ── PROBLEM ─────────────────────────────────────── */
  .problem {
    padding: 100px 5vw;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .problem::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 40%;
    background: linear-gradient(to right, transparent, rgba(127,147,73,0.06));
    pointer-events: none;
  }
  .section-tag {
    font-family: 'Rinter';
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .section-tag::after {
    content: '';
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--orange);
    opacity: 0.4;
  }
  .problem h2 {
    font-family: 'Rinter';
    font-weight: 800;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1.15;
    max-width: 680px;
    margin-bottom: 20px;
  }
  .problem-intro {
    font-size: 1.05rem;
    color: rgba(34,35,35,0.65);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 50px;
  }
  .pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2px;
    margin-bottom: 60px;
    max-width: 960px;
  }
  .pain-item {
    background: #fff;
    border-left: 3px solid transparent;
    padding: 22px 24px;
    font-size: 0.95rem;
    color: rgba(34,35,35,0.75);
    font-style: italic;
    line-height: 1.55;
    transition: border-color 0.2s, background 0.2s;
  }
  .pain-item:hover {
    border-left-color: var(--orange);
    background: rgba(246,80,9,0.03);
  }
  .pain-item::before {
    content: '"';
    font-family: 'Rinter';
    font-size: 2rem;
    color: var(--orange);
    opacity: 0.4;
    display: block;
    margin-bottom: 4px;
    line-height: 1;
  }

  .objection-box {
    max-width: 700px;
    border-left: 4px solid var(--green);
    padding: 32px 36px;
    background: rgba(41,109,90,0.06);
    margin-bottom: 40px;
  }
  .objection-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(34,35,35,0.8);
    margin-bottom: 12px;
  }
  .objection-box strong {
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--green);
  }

  .tension-block {
    max-width: 680px;
    margin-top: 20px;
  }
  .tension-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(34,35,35,0.75);
    margin-bottom: 14px;
  }
  .tension-block .highlight {
    font-family: 'Rinter';
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.01em;
  }

  /* ── TESTIMONIALS ────────────────────────────────── */
  .testimonials {
    background: var(--dark);
    padding: 80px 5vw;
  }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .testi-card {
    background: rgba(229,231,235,0.04);
    border-top: 3px solid var(--orange);
    padding: 36px 32px;
    position: relative;
  }
  .testi-card.green-top { border-top-color: var(--sage); }
  .testi-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(229,231,235,0.8);
    font-style: italic;
    margin-bottom: 28px;
  }
  .testi-quote::before {
    content: '\201C';
    font-family: 'Rinter';
    font-size: 3.5rem;
    color: var(--orange);
    opacity: 0.5;
    display: block;
    line-height: 0.7;
    margin-bottom: 16px;
  }
  .testi-card.green-top .testi-quote::before { color: var(--sage); }
  .testi-name {
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--cream);
    margin-bottom: 2px;
  }
  .testi-role {
    font-size: 0.78rem;
    color: rgba(229,231,235,0.45);
  }

  /* ── TRANSFORMATION ──────────────────────────────── */
  .transformation {
    padding: 100px 5vw;
    background: #fff;
  }
  .transformation h2 {
    font-family: 'Rinter';
    font-weight: 800;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.1;
    max-width: 700px;
  }
  .transformation h2 em {
    font-style: normal;
    color: var(--green);
  }
  .transfo-intro {
    font-size: 1rem;
    color: rgba(34,35,35,0.6);
    max-width: 560px;
    line-height: 1.65;
    margin-bottom: 60px;
  }

  .before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-width: 1000px;
    margin-bottom: 80px;
  }
  .col-header {
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 24px;
  }
  .col-header.before { background: rgba(34,35,35,0.06); color: rgba(34,35,35,0.5); }
  .col-header.after { background: var(--green); color: #fff; }

  .ba-row {
    display: contents;
  }
  .ba-cell {
    padding: 18px 24px;
    font-size: 0.9rem;
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
  .ba-cell.before {
    background: rgba(34,35,35,0.025);
    color: rgba(34,35,35,0.6);
  }
  .ba-cell.after {
    background: rgba(41,109,90,0.06);
    color: var(--dark);
  }
  .ba-cell.before::before {
    content: '—';
    color: rgba(34,35,35,0.25);
    flex-shrink: 0;
    margin-top: 1px;
  }
  .ba-cell.after::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .skills-title {
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
  }
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
    max-width: 900px;
    margin-bottom: 70px;
  }
  .skill-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 20px;
    background: rgba(41,109,90,0.05);
    border-left: 3px solid var(--sage);
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(34,35,35,0.8);
    transition: background 0.2s;
  }
  .skill-item:hover { background: rgba(41,109,90,0.1); }
  .skill-item .bullet {
    color: var(--sage);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    max-width: 900px;
  }
  .bonus-item {
    background: var(--dark);
    padding: 28px 24px;
    color: var(--cream);
  }
  .bonus-icon { font-size: 1.6rem; margin-bottom: 12px; color: var(--orange); }
  .bonus-title {
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: #fff;
  }
  .bonus-desc { font-size: 0.82rem; color: rgba(229,231,235,0.55); line-height: 1.55; }

  /* ── PROGRAMME ───────────────────────────────────── */
  .programme {
    padding: 100px 5vw;
    background: var(--cream);
  }
  .programme h2 {
    font-family: 'Rinter';
    font-weight: 800;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 16px;
    max-width: 700px;
    line-height: 1.1;
  }
  .programme-intro {
    font-size: 1rem;
    color: rgba(34,35,35,0.6);
    max-width: 580px;
    line-height: 1.65;
    margin-bottom: 60px;
  }

  .programme-steps {
    max-width: 760px;
    position: relative;
  }
  .programme-steps::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), var(--green), var(--sage));
  }
  .step {
    display: flex;
    gap: 28px;
    margin-bottom: 36px;
    position: relative;
  }
  .step-icon {
    width: 46px;
    height: 46px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
  }
  .step-icon.webinar { background: var(--orange); }
  .step-icon.lesson { background: var(--green); }
  .step-icon.workshop { background: var(--sage); }
  .step-icon.jury { background: var(--dark); border: 2px solid var(--orange); }

  .step-body {
    background: #fff;
    padding: 24px 28px;
    flex: 1;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
  }
  .step-body:hover { border-bottom-color: var(--orange); }
  .step-type {
    font-family: 'Rinter';
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
  }
  .step-type.sync { color: var(--orange); }
  .step-type.async { color: var(--green); }
  .step-type.ws { color: var(--sage); }
  .step-title {
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
  }
  .step-desc {
    font-size: 0.88rem;
    color: rgba(34,35,35,0.65);
    line-height: 1.6;
  }
  .step-desc ul {
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
  }
  .step-desc ul li {
    padding: 3px 0;
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }
  .step-desc ul li::before {
    content: '–';
    color: var(--sage);
    flex-shrink: 0;
  }

  .programme-summary {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2px;
    max-width: 760px;
  }
  .summary-item {
    background: var(--dark);
    padding: 22px 20px;
  }
  .summary-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Rinter';
    color: rgba(229,231,235,0.4);
    margin-bottom: 6px;
  }
  .summary-value {
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--cream);
  }
  .summary-value.highlight { color: var(--orange); }

  /* ── TEAM ────────────────────────────────────────── */
  .team {
    padding: 100px 5vw;
    background: var(--green);
  }
  .team h2 {
    font-family: 'Rinter';
    font-weight: 800;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    letter-spacing: -0.03em;
    color: var(--cream);
    margin-bottom: 16px;
    max-width: 600px;
    line-height: 1.1;
  }
  .team-intro {
    font-size: 1rem;
    color: rgba(229,231,235,0.6);
    max-width: 500px;
    line-height: 1.65;
    margin-bottom: 60px;
  }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    max-width: 1000px;
  }
  .team-card {
    background: rgba(229,231,235,0.06);
    padding: 36px 30px;
    border-top: 3px solid rgba(229,231,235,0.15);
    transition: border-top-color 0.2s;
  }
  .team-card:hover { border-top-color: var(--orange); }
  .team-initial {
    width: 52px; height: 52px;
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Rinter';
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 20px;
  }
  .team-name {
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 2px;
  }
  .team-role {
    font-size: 0.8rem;
    color: rgba(229,231,235,0.5);
    margin-bottom: 18px;
    font-style: italic;
  }
  .team-bio {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(229,231,235,0.7);
  }

  /* ── PRICE ───────────────────────────────────────── */
  .pricing {
    padding: 100px 5vw;
    background: #fff;
  }
  .pricing h2 {
    font-family: 'Rinter';
    font-weight: 800;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 50px;
    max-width: 600px;
    line-height: 1.1;
  }
  .price-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-width: 820px;
  }
  .price-main {
    background: var(--dark);
    padding: 52px 44px;
  }
  .price-amount {
    font-family: 'Rinter';
    font-weight: 800;
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--cream);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
  }
  .price-amount span {
    font-size: 1.5rem;
    color: rgba(229,231,235,0.5);
    font-weight: 400;
  }
  .price-label {
    font-size: 0.85rem;
    color: rgba(229,231,235,0.5);
    margin-bottom: 28px;
    line-height: 1.5;
  }
  .price-includes {
    list-style: none;
    margin-bottom: 36px;
  }
  .price-includes li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.88rem;
    color: rgba(229,231,235,0.7);
    padding: 7px 0;
    border-bottom: 1px solid rgba(229,231,235,0.07);
  }
  .price-includes li::before {
    content: '→';
    color: var(--orange);
    flex-shrink: 0;
  }
  .price-cta {
    display: block;
    background: var(--orange);
    color: #fff;
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 0.95rem;
    padding: 18px 28px;
    text-decoration: none;
    text-align: center;
    letter-spacing: 0.02em;
    transition: background 0.2s;
  }
  .price-cta:hover { background: #d94007; }

  .guarantee-box {
    background: rgba(41,109,90,0.08);
    border: 1px solid rgba(41,109,90,0.2);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .guarantee-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
  .guarantee-title {
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--green);
    margin-bottom: 12px;
  }
  .guarantee-text {
    font-size: 0.9rem;
    color: rgba(34,35,35,0.7);
    line-height: 1.65;
  }

  /* ── FORM ────────────────────────────────────────── */
  .form-section {
    padding: 100px 5vw;
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }
  .form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(246,80,9,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .form-section h2 {
    font-family: 'Rinter';
    font-weight: 800;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    color: var(--cream);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    line-height: 1.1;
  }
  .form-intro {
    font-size: 1rem;
    color: rgba(229,231,235,0.5);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 50px;
  }
  .form-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-width: 760px;
  }
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .form-group.full { grid-column: 1 / -1; }
  .form-group label {
    font-family: 'Rinter';
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(229,231,235,0.5);
  }
  .form-group label span { color: var(--orange); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(229,231,235,0.06);
    border: 1px solid rgba(229,231,235,0.1);
    border-bottom: 2px solid rgba(229,231,235,0.15);
    padding: 14px 16px;
    color: var(--cream);
    font-family: 'Rinter', Inter !important;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    border-radius: 0;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: rgba(229,231,235,0.1);
    border-bottom-color: var(--orange);
  }
  .form-group select option { background: #2a2b2b; }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit {
    grid-column: 1 / -1;
    margin-top: 8px;
  }
  .form-submit button {
    background: var(--orange);
    color: #fff;
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 1rem;
    padding: 20px 44px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.2s;
    width: 100%;
  }
  .form-submit button:hover {
    background: #d94007;
    transform: translateY(-1px);
  }
  .form-note {
    grid-column: 1 / -1;
    font-size: 0.8rem;
    color: rgba(229,231,235,0.35);
    margin-top: 6px;
    text-align: center;
  }

  /* ── FAQ ─────────────────────────────────────────── */
  .faq {
    padding: 100px 5vw;
    background: var(--cream);
  }
  .faq h2 {
    font-family: 'Rinter';
    font-weight: 800;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 50px;
    max-width: 600px;
    line-height: 1.15;
  }
  .faq-list { max-width: 720px; }
  .faq-item {
    border-bottom: 1px solid rgba(34,35,35,0.1);
  }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    text-align: left;
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    letter-spacing: -0.01em;
    transition: color 0.2s;
  }
  .faq-q:hover { color: var(--green); }
  .faq-q .faq-arrow {
    width: 22px; height: 22px;
    background: var(--green);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
    font-size: 0.8rem;
    color: #fff;
    font-weight: 400;
  }
  .faq-item.open .faq-arrow { transform: rotate(45deg); background: var(--orange); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
  }
  .faq-item.open .faq-a { max-height: 300px; }
  .faq-a p {
    padding: 0 0 24px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(34,35,35,0.7);
  }

  /* ── FOOTER CTA ──────────────────────────────────── */
  .footer-cta {
    background: var(--orange);
    padding: 80px 5vw;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .footer-cta::before {
    content: 'AI';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Rinter';
    font-weight: 800;
    font-size: 22vw;
    color: rgba(255,255,255,0.04);
    pointer-events: none;
    letter-spacing: -0.05em;
    white-space: nowrap;
  }
  .footer-cta p {
    font-family: 'Rinter';
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    position: relative;
  }
  .footer-cta h2 {
    
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 36px;
    position: relative;
  }
  .footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--orange);
    font-family: 'Rinter';
    font-weight: 800;
    font-size: 1rem;
    padding: 20px 44px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  }
  .footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 50px rgba(0,0,0,0.3);
  }
  .footer-cta-sub {
    margin-top: 24px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    position: relative;
  }
  .footer-cta-sub a { color: rgba(255,255,255,0.8); }

  footer {
    background: var(--dark);
    padding: 30px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-logo {
    font-family: 'Rinter';
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--cream);
    opacity: 0.6;
  }
  .footer-logo span { color: var(--orange); }
  footer p {
    font-size: 0.78rem;
    color: rgba(229,231,235,0.3);
  }

  /* ── RESPONSIVE ──────────────────────────────────── */
  @media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .before-after { grid-template-columns: 1fr; }
    .col-header.before { display: none; }
    .ba-cell.before { display: none; }
    .price-box { grid-template-columns: 1fr; }
    .form-inner { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 520px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 2.2rem; }
  }

  /* ── ANIMATIONS ──────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-inner > * {
    animation: fadeUp 0.7s ease both;
  }
  .hero-tag { animation-delay: 0.1s; }
  .hero h1  { animation-delay: 0.2s; }
  .hero h2  { animation-delay: 0.3s; }
  .hero-sub { animation-delay: 0.35s; }
  .hero-cta { animation-delay: 0.4s; }
  .badges   { animation-delay: 0.45s; }

  /* scroll reveal */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  /* ── HERO B2B LINK ───────────────────────────────── */
  .hero-b2b-link {
    display: inline-block;
    margin-top: 16px;
    background: none;
    border: none;
    color: rgba(229,231,235,0.45);
    font-family: 'Rinter', Inter !important;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .hero-b2b-link:hover { color: rgba(229,231,235,0.8); }

  /* ── B2B MODAL OVERLAY ───────────────────────────── */
  .b2b-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(14,15,15,0.85);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;
  }
  .b2b-overlay.open {
    opacity: 1;
    pointer-events: all;
  }
  .b2b-modal {
    background: #1a1b1b;
    width: 100%;
    max-width: 960px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.35s ease;
    border-top: 3px solid var(--orange);
  }
  .b2b-overlay.open .b2b-modal { transform: translateY(0); }

  .b2b-header {
    background: var(--dark);
    padding: 40px 48px 32px;
    border-bottom: 1px solid rgba(229,231,235,0.06);
  }
  .b2b-header-tag {
    font-family: 'Rinter';
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
  }
  .b2b-header h2 {
    font-family: 'Rinter';
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--cream);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  .b2b-header p {
    font-size: 0.95rem;
    color: rgba(229,231,235,0.5);
    max-width: 600px;
    line-height: 1.6;
  }
  .b2b-close {
    position: absolute;
    top: 20px; right: 24px;
    background: none;
    border: none;
    color: rgba(229,231,235,0.4);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    font-family: 'Rinter', Inter !important;
  }
  .b2b-close:hover { color: var(--cream); }

  .b2b-body { padding: 40px 48px 48px; }

  /* Offer cards */
  .b2b-section-title {
    font-family: 'Rinter';
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage);
    margin: 36px 0 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .b2b-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(229,231,235,0.08);
  }
  .b2b-section-title:first-child { margin-top: 0; }

  .b2b-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2px;
    margin-bottom: 4px;
  }
  .b2b-cards.single { grid-template-columns: 1fr; }
  .b2b-cards.two { grid-template-columns: repeat(2, 1fr); }

  .b2b-card {
    background: rgba(229,231,235,0.04);
    padding: 28px 28px 24px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
  }
  .b2b-card:hover { border-bottom-color: var(--orange); background: rgba(229,231,235,0.06); }
  .b2b-card.featured {
    border-top: 2px solid var(--green);
    background: rgba(41,109,90,0.07);
  }
  .b2b-card.featured:hover { border-bottom-color: var(--green); }

  .b2b-card-tag {
    font-family: 'Rinter';
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
  }
  .b2b-card.featured .b2b-card-tag { color: var(--sage); }

  .b2b-card-title {
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--cream);
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    line-height: 1.25;
  }
  .b2b-card-desc {
    font-size: 0.82rem;
    color: rgba(229,231,235,0.55);
    line-height: 1.6;
    margin-bottom: 18px;
  }
  .b2b-price {
    font-family: 'Rinter';
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--cream);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
  }
  .b2b-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(229,231,235,0.4);
  }
  .b2b-price-alt {
    font-size: 0.78rem;
    color: rgba(229,231,235,0.35);
    margin-bottom: 16px;
    line-height: 1.4;
  }
  .b2b-includes {
    list-style: none;
    margin-bottom: 20px;
    border-top: 1px solid rgba(229,231,235,0.06);
    padding-top: 14px;
  }
  .b2b-includes li {
    font-size: 0.8rem;
    color: rgba(229,231,235,0.6);
    padding: 4px 0;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.4;
  }
  .b2b-includes li::before { content: '→'; color: var(--orange); flex-shrink: 0; font-size: 0.75rem; margin-top: 1px; }
  .b2b-card.featured .b2b-includes li::before { color: var(--sage); }

  .b2b-option {
    background: rgba(246,80,9,0.07);
    border: 1px dashed rgba(246,80,9,0.25);
    padding: 10px 14px;
    font-size: 0.78rem;
    color: rgba(229,231,235,0.5);
    line-height: 1.5;
    margin-bottom: 16px;
    border-radius: 0;
  }
  .b2b-option strong { color: #F98B60; display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }

  .b2b-badge-rec {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--green);
    color: #fff;
    font-family: 'Rinter';
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
  }

  .b2b-cta-row {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(229,231,235,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  .b2b-cta-main {
    background: var(--orange);
    color: #fff;
    font-family: 'Rinter';
    font-weight: 700;
    font-size: 0.95rem;
    padding: 16px 32px;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
  }
  .b2b-cta-main:hover { background: #d94007; }
  .b2b-cta-sub {
    font-size: 0.83rem;
    color: rgba(229,231,235,0.4);
    line-height: 1.5;
  }
  .b2b-cta-sub strong { color: rgba(229,231,235,0.7); }

  /* Suggestion pill */
  .b2b-suggest {
    background: rgba(127,147,73,0.1);
    border: 1px solid rgba(127,147,73,0.2);
    padding: 14px 20px;
    font-size: 0.82rem;
    color: rgba(229,231,235,0.55);
    line-height: 1.55;
    margin-top: 6px;
  }
  .b2b-suggest strong { color: var(--sage); }

  @media (max-width: 640px) {
    .b2b-header { padding: 32px 24px 24px; }
    .b2b-body { padding: 28px 24px 36px; }
    .b2b-cards.two { grid-template-columns: 1fr; }
  }

  /* ========================================================================
     ╔══════════════════════════════════════════════════════════════════╗
     ║  NAV — AJOUTS : « Mon compte » · Hamburger mobile · Sous-menus  ║
     ╚══════════════════════════════════════════════════════════════════╝
     ======================================================================== */

  /* Bouton « Mon compte » — secondaire, discret, masqué en mobile */
  .btn-account {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--border-medium);
    background: transparent;
    color: var(--text-primary);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease;
  }
  .btn-account svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  .btn-account:hover {
    background: rgba(240, 235, 226, 0.06);
    border-color: rgba(240, 235, 226, 0.28);
  }

  /* Hamburger — caché par défaut, visible en mobile */
  .nav-toggle {
    display: none;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border-medium);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 210;
  }
  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
  }
  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* Bouton de toggle des sous-menus — caché en desktop, visible en mobile */
  .submenu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-medium);
    border-radius: 50%;
    color: var(--text-primary);
    font-family: var(--mono);
    font-size: 18px;
    line-height: 1;
    width: 32px;
    height: 32px;
    cursor: pointer;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.18s ease, border-color 0.18s ease;
  }
  .submenu-toggle:hover {
    background: rgba(246, 80, 9, 0.1);
    border-color: var(--orange);
  }

  /* La nav reste visible normalement en desktop */
  .nav-main {
    display: flex;
    align-items: center;
  }

  /* ========================================================================
     RESPONSIVE — NAV (≤ 900px : passage au menu mobile)
     ======================================================================== */
  @media (max-width: 900px) {
    /* Conteneur plus serré */
    .container { padding: 0 24px; }
    .nav-inner { padding: 16px 0; gap: 14px; }

    /* Hamburger visible */
    .nav-toggle {
      display: inline-flex;
      order: 3;
    }

    /* Logo conserve sa place */
    .logo { order: 1; }

    /* Drawer plein écran qui descend du haut */
    .nav-main {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--charcoal);
      flex-direction: column;
      align-items: stretch;
      padding: 92px 28px 40px;
      transform: translateY(-100%);
      transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
      visibility: hidden;
      overflow-y: auto;
      z-index: 200;
      border-bottom: 1px solid var(--border-subtle);
    }
    .nav-main.is-open {
      transform: translateY(0);
      visibility: visible;
    }

    /* Liste verticale */
    .nav-links {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      width: 100%;
    }
    .nav-links > li {
      border-bottom: 1px solid var(--border-subtle);
      padding: 0;
      position: relative;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }
    .nav-links > li > a {
      flex: 1;
      padding: 18px 4px;
      font-size: 17px;
      font-weight: 500;
      color: var(--text-primary);
      letter-spacing: -0.01em;
    }
    .nav-links a.active { color: var(--orange); }
    /* Désactiver les soulignements desktop */
    .nav-links a.active::after,
    .nav-links a.has-dropdown.active::before {
      display: none !important;
    }
    /* Désactiver la flèche ▾ desktop sur les parents — remplacée par le bouton + */
    .nav-links a.has-dropdown::after {
      display: none;
    }

    /* Bouton + visible */
    .submenu-toggle {
      display: inline-flex;
      margin-left: 8px;
    }

    /* Sous-menus en accordéon — cachés par défaut */
    .nav-dropdown {
      position: static;
      width: 100%;
      max-height: 0;
      opacity: 0;
      visibility: hidden;
      overflow: hidden;
      border: none;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      padding: 0;
      margin: 0;
      transform: none;
      transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.3s ease;
    }
    .nav-dropdown::before { display: none; }
    .has-submenu.is-open .nav-dropdown {
      max-height: 500px;
      opacity: 1;
      visibility: visible;
      padding: 0 0 18px 4px;
    }
    /* Empêcher l'ouverture au hover en mobile (priorité au tap sur +) */
    .nav-links li:hover .nav-dropdown,
    .nav-links li:focus-within .nav-dropdown {
      opacity: 0;
      visibility: hidden;
      transform: none;
    }
    .has-submenu.is-open .nav-dropdown {
      opacity: 1 !important;
      visibility: visible !important;
    }
    .nav-dropdown-eyebrow {
      padding: 6px 0 8px;
      border: none;
      margin-bottom: 0;
    }
    .nav-dropdown a {
      padding: 12px 0 !important;
      font-size: 15px !important;
      border-bottom: 1px dashed var(--border-subtle);
    }
    .nav-dropdown a:last-child {
      border-bottom: none;
    }
    .nav-dropdown a:hover {
      background: transparent;
    }
    .nav-dropdown a .arrow {
      position: static;
      transform: none;
      opacity: 1;
      margin-left: auto;
    }

    /* « Mon compte » : MASQUÉ en mobile (consigne explicite) */
    .nav-cta .btn-account {
      display: none;
    }

    /* CTA Diagnostic : repositionné, plus petit dans la nav-inner */
    .nav-cta {
      order: 2;
      gap: 10px;
    }
    .nav-cta .btn-primary {
      padding: 9px 14px;
      font-size: 12.5px;
    }
  }

  /* Très petit mobile : alléger encore le header */
  @media (max-width: 480px) {
    .nav-cta .btn-primary {
      padding: 9px 12px;
      font-size: 11.5px;
    }
    .logo img { height: 22px !important; }
  }


  /* ========================================================================
     ╔══════════════════════════════════════════════════════════════════╗
     ║  RESPONSIVE — PAGE ENTREPRISES                                  ║
     ║  Reflow complet des grilles complexes                           ║
     ╚══════════════════════════════════════════════════════════════════╝
     ======================================================================== */

  /* ---------- Tablette landscape (≤ 1024px) ---------- */
  @media (max-width: 1024px) {
    .page-top-grid { gap: 48px; }
    .tool-row {
      grid-template-columns: 64px 180px 1fr 90px 28px;
      gap: 16px;
    }
    .offers-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* ---------- Tablette / mobile large (≤ 880px) ---------- */
  @media (max-width: 880px) {

    /* === HEADER DE PAGE === */
    .page-top { padding: 48px 0 36px; }
    .page-top-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: stretch;
    }
    h1.page-title { font-size: clamp(32px, 7vw, 48px); }
    .page-lead { font-size: 16px; }
    .page-actions { gap: 10px; }
    .page-actions .phone {
      width: 100%;
      margin-left: 0;
      margin-top: 6px;
    }
    .side-stats { padding: 24px 22px; }
    .stat-row { grid-template-columns: 80px 1fr; gap: 14px; padding: 12px 0; }
    .stat-row .num { font-size: 28px; }

    /* === LOGO BAR === */
    .logo-bar { padding: 22px 0; }
    .logo-bar-inner {
      flex-wrap: wrap;
      gap: 16px;
    }
    .logo-bar-label {
      max-width: 100%;
      width: 100%;
      text-align: left;
    }
    .logo-marquee {
      width: 100%;
      flex: 1 1 100%;
      /* Fondu plus discret en mobile : la zone visible est plus étroite */
      -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
      );
      mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
      );
    }
    .logo-track { gap: 32px; }
    .client-logo { font-size: 16px; }
    .client-logo.bold { font-size: 12px; }

    /* === ANCHOR NAV === */
    .anchor-nav { padding: 12px 0; }
    .anchor-inner { gap: 18px; }
    .anchor-list { gap: 18px; }
    .anchor-list a { font-size: 12px; }

    /* === SECTION HEADER === */
    .section-head { margin-bottom: 36px; }
    h3.section-h { font-size: clamp(28px, 6vw, 38px); }
    .section-lead { font-size: 15px; }

    /* === LEVELS === */
    .levels-section { padding: 64px 0 56px; }
    .level-block { margin-bottom: 48px; }
    .level-header {
      grid-template-columns: 1fr;
      gap: 14px;
      padding-bottom: 16px;
      margin-bottom: 18px;
    }
    .level-marker { font-size: 56px; }
    .level-marker .niveau-label { margin-bottom: 4px; }
    .level-title { padding-top: 0; }
    .level-title h4 { font-size: 24px; }
    .level-title p { font-size: 14px; }
    .level-cards { grid-template-columns: 1fr; gap: 14px; }
    .level-card { padding: 22px 22px; }
    .level-card h5 { font-size: 18px; }

    /* === TECHNO / FAMILY === */
    .techno-section { padding: 64px 0 56px; }
    .family-section { margin-bottom: 44px; }
    .family-header {
      grid-template-columns: 1fr;
      gap: 16px;
      padding-bottom: 18px;
      margin-bottom: 24px;
    }
    .family-roman { font-size: 36px; }
    .family-title h4 { font-size: 26px; }
    .family-title p { font-size: 14px; }
    .family-counter {
      text-align: left;
      padding-top: 0;
      display: flex;
      align-items: baseline;
      gap: 12px;
    }
    .family-counter .num { font-size: 36px; }
    .family-counter .label { margin-top: 0; }

    /* === TOOL ROW : reflow majeur === */
    .tool-row {
      grid-template-columns: 56px 1fr 32px;
      grid-template-areas:
        "icon  name       toggle"
        "icon  summary    summary"
        "icon  count      count";
      gap: 8px 16px;
      padding: 18px 0;
      align-items: start;
    }
    .tool-icon {
      grid-area: icon;
      width: 44px;
      height: 44px;
      font-size: 18px;
      margin-left: 0;
      align-self: start;
    }
    .tool-name {
      grid-area: name;
      font-size: 17px;
      align-self: center;
    }
    .tool-name .tagline { font-size: 11px; }
    .tool-summary {
      grid-area: summary;
      font-size: 13px;
      padding-right: 0;
      margin-top: 4px;
    }
    .tool-courses-count {
      grid-area: count;
      text-align: left;
      margin-top: 6px;
      display: flex;
      align-items: baseline;
      gap: 8px;
    }
    .tool-courses-count .count {
      display: inline;
      font-size: 18px;
      margin-bottom: 0;
    }
    .tool-toggle {
      grid-area: toggle;
      align-self: center;
    }

    /* Grille des cours quand un tool est ouvert */
    .tool-courses {
      padding: 0 0 22px 0;
      margin-left: 0;
    }
    .tool-courses-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    /* Family divider */
    .family-divider { padding: 28px 0 24px; margin: 32px 0; }
    .family-divider .divider-line { gap: 14px; font-size: 10px; }
    .family-divider .divider-line::before,
    .family-divider .divider-line::after { width: 30px; }
    .family-divider h4 { font-size: clamp(20px, 4.5vw, 26px); }

    /* === MANIFESTO === */
    .manifesto { padding: 64px 0; }
    .manifesto-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .manifesto h3 { font-size: clamp(24px, 5.5vw, 32px); }

    /* === OFFERS === */
    .offers-section { padding: 64px 0 56px; }
    .offers-grid { grid-template-columns: 1fr; gap: 14px; }
    .offer-card { padding: 24px 22px; }

    /* === DOMAINS === */
    .domains-section { padding: 64px 0 56px; }
    .domains-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .domain-card-header { padding: 28px 24px 22px; }
    .domain-card h4 { font-size: 24px; }
    .domain-card-lead { font-size: 14px; }
    .domain-angles {
      grid-template-columns: 1fr;
    }
    .domain-angle {
      padding: 22px 24px;
      border-right: none;
      border-bottom: 1px solid var(--border-subtle);
    }
    .domain-angle:last-child { border-bottom: none; }
    .domain-card-footer {
      padding: 16px 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }

    /* === ACCOMP === */
    .accomp-section { padding: 56px 0; }
    .accomp-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .accomp-card { padding: 26px 22px; }

    /* === TESTIMONIALS === */
    .testimonials-section { padding: 56px 0; }
    .testimonial-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    /* === CONTACT === */
    .contact-section { padding: 64px 0; }
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .contact-form { padding: 24px 22px; }
    .form-row {
      grid-template-columns: 1fr;
      gap: 12px;
    }
  }

  /* ---------- Mobile (≤ 600px) — derniers ajustements ---------- */
  @media (max-width: 600px) {
    .container { padding: 0 18px; }
    .anchor-label { display: none; }
    .breadcrumb { font-size: 10px; margin-bottom: 18px; }
    .level-marker { font-size: 44px; }
    .family-roman { font-size: 28px; }
    .family-title h4 { font-size: 22px; }
    .level-title h4 { font-size: 21px; }
    .level-card { padding: 20px 18px; }
    .level-card h5 { font-size: 17px; }
    .domain-card h4 { font-size: 22px; }
    .tool-row { gap: 6px 12px; }
    .tool-icon { width: 40px; height: 40px; font-size: 16px; }
    .tool-name { font-size: 16px; }
  }


  /* ========================================================================
     ╔══════════════════════════════════════════════════════════════════╗
     ║  PAGE TÉLÉCHARGEABLES — Resource blocks                          ║
     ╚══════════════════════════════════════════════════════════════════╝
     ======================================================================== */

  .resources-section {
    padding: 110px 0 90px;
  }

  .resource-block {
    margin-bottom: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .resource-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .resource-header {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 32px;
  }
  .resource-marker {
    font-family: var(--serif);
    font-size: 80px;
    line-height: 0.85;
    color: var(--orange);
    font-weight: 400;
    letter-spacing: -0.03em;
    font-style: italic;
  }
  .resource-marker .resource-label {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-style: normal;
  }
  .resource-title { padding-top: 8px; }
  .resource-title .resource-tag {
    display: inline-flex;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 14px;
    padding: 4px 10px;
    border: 1px solid rgba(246, 80, 9, 0.2);
    border-radius: 2px;
    background: rgba(246, 80, 9, 0.06);
  }
  .resource-title .resource-tag.green {
    color: var(--green-light);
    border-color: rgba(74, 141, 118, 0.25);
    background: rgba(74, 141, 118, 0.08);
  }
  .resource-title h4 {
    font-family: var(--serif);
    font-size: 32px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    color: var(--text-primary);
  }
  .resource-title h4 em { color: var(--orange); font-style: italic; }
  .resource-title p {
    font-size: 15.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 720px;
  }

  .resource-content {
    margin-left: 152px; /* aligné sous .resource-title (120 + 32) */
  }
  .resource-content-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 14px;
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .resource-content-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
  }
  .resource-content-label:first-child { margin-top: 0; }

  /* Liens vers les ressources externes (PDF, repo, article…) */
  .resource-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .resource-link {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 22px 24px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
  }
  .resource-link:hover {
    border-color: var(--orange);
    background: rgba(246, 80, 9, 0.04);
    transform: translateY(-2px);
  }
  .resource-link-icon {
    width: 44px;
    height: 44px;
    border-radius: 6px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .resource-link-icon svg {
    width: 20px;
    height: 20px;
  }
  .resource-link-icon.doc {
    background: linear-gradient(135deg, var(--orange), #c4400a);
    color: var(--text-primary);
  }
  .resource-link-icon.code {
    background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
    color: var(--text-primary);
  }
  .resource-link-icon.article {
    background: linear-gradient(135deg, var(--gold), #8b7148);
    color: var(--charcoal);
  }
  .resource-link-body { min-width: 0; }
  .resource-link-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 6px;
  }
  .resource-link-title {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 6px;
  }
  .resource-link-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .resource-link-host {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--orange);
    letter-spacing: 0.04em;
  }

  /* Stack technique (badges) */
  .tech-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 8px;
  }
  .tech-badge {
    background: var(--ink);
    border: 1px solid var(--border-subtle);
    border-left: 2px solid var(--green-light);
    border-radius: 3px;
    padding: 12px 16px;
  }
  .tech-badge-name {
    display: block;
    font-family: var(--serif);
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 2px;
  }
  .tech-badge-role {
    display: block;
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
  }

  /* Checklist (ce que vous obtenez / cas d'usage) */
  .resource-checklist {
    list-style: none;
    margin: 0 0 8px 0;
    padding: 0;
  }
  .resource-checklist li {
    padding: 9px 0 9px 28px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
  }
  .resource-checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--green-light);
    font-weight: 600;
    font-size: 14px;
  }
  .resource-checklist li strong {
    color: var(--text-primary);
    font-weight: 600;
  }

  /* CTA "Demander une démo" */
  .resource-cta {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
  }
  .resource-cta-note {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    line-height: 1.5;
  }


  /* ========================================================================
     ╔══════════════════════════════════════════════════════════════════╗
     ║  PAGE ÉVÈNEMENTS — Webinaires, replays, articles                ║
     ╚══════════════════════════════════════════════════════════════════╝
     ======================================================================== */

  .events-section,
  .replays-section,
  .articles-section,
  .newsletter-section {
    padding: 90px 0;
  }
  .events-section { padding: 110px 0 80px; }
  .replays-section {
    background: var(--ink);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }
  .newsletter-section {
    background: var(--ink);
    border-top: 1px solid var(--border-subtle);
  }

  /* === Featured event (gros bloc en tête de "À venir") === */
  .event-featured {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--orange);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 32px;
  }
  .event-featured-side {
    background: var(--ink);
    padding: 32px 28px;
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .event-status {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    padding: 5px 10px;
    border: 1px solid rgba(246, 80, 9, 0.3);
    border-radius: 2px;
    background: rgba(246, 80, 9, 0.08);
    width: fit-content;
  }
  .event-status.live {
    color: var(--orange);
    border-color: var(--orange);
    background: rgba(246, 80, 9, 0.12);
    /* Pulsation discrète pour signaler "à venir / direct" */
    animation: pulse-orange 2.4s ease-in-out infinite;
  }
  @keyframes pulse-orange {
    0%, 100% { box-shadow: 0 0 0 0 rgba(246, 80, 9, 0); }
    50%      { box-shadow: 0 0 0 4px rgba(246, 80, 9, 0.18); }
  }
  .event-status.replay {
    color: var(--text-muted);
    border-color: var(--border-medium);
    background: var(--charcoal);
  }

  .event-featured-date {
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 18px 0;
  }
  .event-date-day {
    font-family: var(--serif);
    font-size: 56px;
    line-height: 0.9;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    font-style: italic;
  }
  .event-date-month {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-top: 4px;
  }
  .event-date-time {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-top: 8px;
  }
  .event-host-list { font-size: 13px; }
  .event-host-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
  }
  .event-host {
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
  }

  .event-featured-body {
    padding: 36px 38px;
  }
  .event-tag {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 18px;
  }
  .event-featured-body h4 {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text-primary);
  }
  .event-featured-body h4 em { color: var(--orange); font-style: italic; }
  .event-featured-body > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 640px;
  }
  .event-bullets {
    list-style: none;
    margin: 0 0 26px 0;
    padding: 0;
  }
  .event-bullets li {
    padding: 7px 0 7px 22px;
    position: relative;
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
  }
  .event-bullets li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--orange);
  }
  .event-cta-row {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
  }
  .event-cta-note {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    line-height: 1.5;
  }

  /* === Grille des autres webinaires (à venir + replays) === */
  .event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .event-grid.replays { gap: 18px; }

  .event-card {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.18s ease, transform 0.18s ease;
  }
  .event-card:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
  }
  .event-card.replay { border-left: 2px solid var(--green-light); }
  .event-card.upcoming { border-left: 2px solid var(--orange); }
  .event-card.replay:hover { border-color: var(--green-light); }

  .event-card-status {
    align-self: flex-start;
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    padding: 3px 8px;
    border: 1px solid rgba(246, 80, 9, 0.3);
    border-radius: 2px;
    margin-bottom: 14px;
  }
  .event-card-status.replay {
    color: var(--text-muted);
    border-color: var(--border-medium);
  }
  .event-card-date {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
  }
  .event-card-date .day {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
    font-style: italic;
    letter-spacing: -0.02em;
  }
  .event-card-date .month {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
  }
  .event-card-date.past .day { color: var(--text-muted); }
  .event-card-date.past .month { color: var(--text-muted); }
  .event-card-time {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    margin-bottom: 16px;
  }
  .event-card-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }
  .event-card h5 {
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.25;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .event-card h5 em { color: var(--orange); font-style: italic; }
  .event-card.replay h5 em { color: var(--green-light); }
  .event-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 16px;
    flex: 1;
  }
  .event-card-host {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    line-height: 1.5;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
    margin-bottom: 12px;
  }
  .event-card-cta a {
    color: var(--text-primary);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    font-family: var(--sans);
  }
  .event-card-cta a:hover { color: var(--orange); }

  .event-archive-link {
    text-align: center;
    margin-top: 36px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.08em;
  }
  .event-archive-link a {
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px dashed var(--border-medium);
    padding-bottom: 2px;
  }
  .event-archive-link a:hover {
    color: var(--orange);
    border-color: var(--orange);
  }

  /* === Articles === */
  .article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .article-card {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.18s ease, transform 0.18s ease;
  }
  .article-card:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
  }
  .article-card.featured {
    grid-column: span 2;
    background: var(--ink);
    border-left: 2px solid var(--orange);
  }
  .article-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
  }
  .article-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 500;
  }
  .article-date {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
  }
  .article-card h4 {
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.22;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.015em;
  }
  .article-card.featured h4 { font-size: 28px; line-height: 1.15; }
  .article-card h4 em { color: var(--orange); font-style: italic; }
  .article-card p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
  }
  .article-card.featured p { font-size: 15px; }
  .article-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
    gap: 14px;
  }
  .article-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .article-author-initial {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #c4400a);
    color: var(--text-primary);
    display: grid;
    place-items: center;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    flex-shrink: 0;
  }
  .article-author-initial.green {
    background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
  }
  .article-author-initial.gold {
    background: linear-gradient(135deg, var(--gold), #8b7148);
    color: var(--charcoal);
  }
  .article-author-name {
    font-size: 12.5px;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
  }
  .article-author-role {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-top: 1px;
    font-family: var(--mono);
    letter-spacing: 0.04em;
  }
  .article-cta {
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
  }
  .article-cta:hover { color: var(--orange); }

  /* === Newsletter === */
  .newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .newsletter-left h3 {
    font-family: var(--serif);
    font-size: clamp(32px, 3.6vw, 44px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
    color: var(--text-primary);
  }
  .newsletter-left h3 em { color: var(--orange); font-style: italic; }
  .newsletter-left > p {
    font-size: 15.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .newsletter-promises {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .newsletter-promises li {
    padding: 9px 0 9px 24px;
    position: relative;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
  }
  .newsletter-promises li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--green-light);
    font-weight: 600;
  }

  .newsletter-form {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 32px;
  }
  .checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 6px;
  }
  .checkbox-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px 10px;
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    background: var(--ink);
    transition: border-color 0.18s ease;
  }
  .checkbox-item:hover { border-color: var(--orange); }
  .checkbox-item input {
    accent-color: var(--orange);
    flex-shrink: 0;
    cursor: pointer;
  }


  /* ========================================================================
     RESPONSIVE — pages Téléchargeables et Évènements
     ======================================================================== */

  /* Tablette landscape (≤ 1024px) */
  @media (max-width: 1024px) {
    .event-grid { grid-template-columns: repeat(2, 1fr); }
    .article-grid { grid-template-columns: repeat(2, 1fr); }
    .article-card.featured { grid-column: span 2; }
  }

  /* Tablette / mobile large (≤ 880px) */
  @media (max-width: 880px) {

    /* === RESOURCES PAGE === */
    .resources-section { padding: 64px 0 56px; }
    .resource-block { margin-bottom: 44px; padding-bottom: 36px; }
    .resource-header {
      grid-template-columns: 1fr;
      gap: 14px;
      margin-bottom: 24px;
    }
    .resource-marker { font-size: 56px; }
    .resource-marker .resource-label { margin-bottom: 4px; }
    .resource-title { padding-top: 0; }
    .resource-title h4 { font-size: 24px; }
    .resource-title p { font-size: 14px; }
    .resource-content { margin-left: 0; }
    .resource-content-label { font-size: 10px; margin-top: 22px; }
    .resource-links {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .resource-link { padding: 18px 18px; gap: 14px; grid-template-columns: 40px 1fr; }
    .resource-link-icon { width: 40px; height: 40px; }
    .resource-link-title { font-size: 16px; }
    .resource-link-desc { font-size: 12.5px; }
    .tech-stack { grid-template-columns: 1fr; gap: 8px; }
    .resource-cta {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }

    /* === EVENTS PAGE === */
    .events-section,
    .replays-section,
    .articles-section,
    .newsletter-section {
      padding: 64px 0 56px;
    }
    .event-featured {
      grid-template-columns: 1fr;
    }
    .event-featured-side {
      border-right: none;
      border-bottom: 1px solid var(--border-subtle);
      padding: 24px 22px;
      flex-direction: row;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }
    .event-featured-date {
      border: none;
      padding: 0;
      flex: 1;
      min-width: 140px;
    }
    .event-host-list {
      flex: 1;
      min-width: 200px;
    }
    .event-date-day { font-size: 44px; }
    .event-featured-body { padding: 24px 22px; }
    .event-featured-body h4 { font-size: 23px; }
    .event-cta-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
    }
    .event-grid,
    .article-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .article-card.featured { grid-column: auto; }
    .article-card.featured h4 { font-size: 22px; }
    .article-card { padding: 22px 20px; }
    .event-card { padding: 20px 18px; }
    .event-card h5 { font-size: 17px; }

    /* === NEWSLETTER === */
    .newsletter-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .newsletter-form { padding: 24px 22px; }
    .checkbox-grid { grid-template-columns: 1fr; }
  }

  /* Mobile (≤ 600px) */
  @media (max-width: 600px) {
    .resource-marker { font-size: 44px; }
    .resource-title h4 { font-size: 21px; }
    .event-featured-body h4 { font-size: 20px; }
    .event-featured-side {
      flex-direction: column;
      align-items: flex-start;
    }
    .article-card.featured h4 { font-size: 20px; }
    .article-card-footer {
      flex-wrap: wrap;
      gap: 12px;
    }
  }


  /* ========================================================================
     ╔══════════════════════════════════════════════════════════════════╗
     ║  PAGE MON COMPTE — Login choice (account gate)                   ║
     ╚══════════════════════════════════════════════════════════════════╝
     ======================================================================== */

  .account-gate {
    padding: 80px 0 110px;
    min-height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
  }
  .account-gate::before {
    content: "";
    position: absolute;
    top: -300px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(246, 80, 9, 0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  .account-gate::after {
    content: "";
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(74, 141, 118, 0.05) 0%, transparent 60%);
    pointer-events: none;
  }

  .account-gate-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
    position: relative;
  }
  .account-gate-head .section-eyebrow {
    justify-content: center;
    margin-bottom: 24px;
  }
  .account-gate-head .section-eyebrow::before {
    display: none;
  }
  .account-gate-title {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
    color: var(--text-primary);
  }
  .account-gate-title em {
    font-style: italic;
    color: var(--orange);
    font-weight: 400;
  }
  .account-gate-lead {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  .account-gate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }

  .login-card {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.2s ease, transform 0.2s ease;
  }
  .login-card.alumni { border-top: 3px solid var(--orange); }
  .login-card.active-learner { border-top: 3px solid var(--green-light); }
  .login-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-medium);
  }
  .login-card.alumni:hover { border-top-color: var(--orange); }
  .login-card.active-learner:hover { border-top-color: var(--green-light); }

  .login-card-header {
    padding: 40px 40px 32px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .login-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: rgba(246, 80, 9, 0.12);
    color: var(--orange);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
  }
  .login-card-icon.green {
    background: rgba(74, 141, 118, 0.14);
    color: var(--green-light);
  }
  .login-card-icon svg {
    width: 28px;
    height: 28px;
  }
  .login-card-tag {
    display: inline-flex;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 14px;
    padding: 4px 10px;
    border: 1px solid rgba(246, 80, 9, 0.25);
    border-radius: 2px;
    background: rgba(246, 80, 9, 0.06);
  }
  .login-card-tag.green {
    color: var(--green-light);
    border-color: rgba(74, 141, 118, 0.3);
    background: rgba(74, 141, 118, 0.08);
  }
  .login-card-header h2 {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 16px;
  }
  .login-card-header h2 em {
    color: var(--orange);
    font-style: italic;
  }
  .login-card.active-learner .login-card-header h2 em {
    color: var(--green-light);
  }
  .login-card-header p {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
  }

  .login-card-body {
    padding: 32px 40px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .login-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
  }
  .login-feature {
    font-size: 11.5px;
    font-family: var(--mono);
    color: var(--text-muted);
    padding: 6px 10px;
    border: 1px solid var(--border-subtle);
    border-radius: 3px;
    background: var(--ink);
    letter-spacing: 0.02em;
  }
  .login-feature.green {
    color: var(--green-light);
    border-color: rgba(74, 141, 118, 0.2);
    background: rgba(74, 141, 118, 0.05);
  }

  .login-form .form-row { margin-bottom: 14px; }
  .login-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    margin-top: 8px;
    font-size: 14px;
  }
  .login-cta-green {
    background: var(--green-mid);
    color: var(--text-primary);
    border: none;
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    margin-top: 16px;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    transition: background 0.18s ease;
  }
  .login-cta-green:hover { background: var(--green-light); }

  /* Variante générique pour bouton vert */
  .btn-green {
    background: var(--green-mid);
    color: var(--text-primary);
  }
  .btn-green:hover { background: var(--green-light); }

  .login-card-footer {
    margin-top: 18px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
  }
  .login-link-soft {
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px dashed var(--border-medium);
    padding-bottom: 1px;
  }
  .login-link-soft:hover {
    color: var(--orange);
    border-color: var(--orange);
  }
  .login-divider {
    display: inline-block;
    margin: 0 10px;
    color: var(--border-medium);
  }

  /* Bloc redirect 360Learning */
  .login-redirect {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .login-redirect-info {
    background: var(--ink);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 16px 18px;
    margin-bottom: 8px;
  }
  .login-redirect-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }
  .login-redirect-value {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .login-redirect-value svg {
    width: 18px;
    height: 18px;
    color: var(--green-light);
    flex-shrink: 0;
  }
  .login-redirect-value strong {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
  }
  .login-redirect-host {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
    margin-left: auto;
  }

  .account-gate-footer {
    text-align: center;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    font-size: 13px;
    color: var(--text-muted);
    position: relative;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .account-gate-footer a {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px dashed var(--orange);
    padding-bottom: 1px;
  }
  .account-gate-footer a:hover { color: var(--orange); }


  /* ========================================================================
     ╔══════════════════════════════════════════════════════════════════╗
     ║  LMS — Bibliothèque alumni (style 360Learning)                   ║
     ╚══════════════════════════════════════════════════════════════════╝
     ======================================================================== */

  .lms {
    padding: 28px 0 80px;
    min-height: calc(100vh - 80px);
  }
  .lms-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
  }

  /* === MAIN COLUMN === */
  .lms-main { min-width: 0; }

  /* Welcome bar */
  .lms-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--orange);
    border-radius: 8px;
    margin-bottom: 32px;
    gap: 24px;
    flex-wrap: wrap;
  }
  .lms-welcome-left {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .lms-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #c4400a);
    color: var(--text-primary);
    display: grid;
    place-items: center;
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
  }
  .lms-welcome-title {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.015em;
    line-height: 1.1;
  }
  .lms-welcome-title em { color: var(--orange); font-style: italic; }
  .lms-welcome-sub {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-top: 4px;
  }

  /* Progress ring (welcome bar) */
  .lms-progress-ring {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
  }
  .lms-progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }
  .lms-progress-ring .ring-bg {
    fill: none;
    stroke: var(--border-subtle);
    stroke-width: 6;
  }
  .lms-progress-ring .ring-fill {
    fill: none;
    stroke: var(--orange);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s ease;
  }
  .lms-progress-text {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
  }
  .lms-progress-num {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .lms-progress-num span {
    font-size: 11px;
    color: var(--orange);
    margin-left: 1px;
  }
  .lms-progress-label {
    font-family: var(--mono);
    font-size: 8.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 1px;
  }

  /* "Reprenez où vous en étiez" card */
  .lms-continue { margin-bottom: 48px; }
  .lms-continue-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .lms-continue-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--orange), transparent);
    opacity: 0.4;
  }
  .lms-continue-card {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 24px;
    align-items: stretch;
    background: linear-gradient(135deg, rgba(246,80,9,0.08), rgba(246,80,9,0.02));
    border: 1px solid rgba(246, 80, 9, 0.25);
    border-radius: 8px;
    padding: 22px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, border-color 0.2s ease;
  }
  .lms-continue-card:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
  }
  .lms-continue-thumb {
    background: linear-gradient(135deg, var(--orange), #c4400a);
    border-radius: 6px;
    display: grid;
    place-items: center;
    position: relative;
    color: var(--text-primary);
    min-height: 110px;
  }
  .lms-continue-thumb svg { width: 36px; height: 36px; opacity: 0.9; }
  .lms-continue-duration {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    text-align: center;
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--text-primary);
    background: rgba(0,0,0,0.4);
    padding: 3px 6px;
    border-radius: 2px;
    letter-spacing: 0.04em;
  }
  .lms-continue-body { min-width: 0; }
  .lms-continue-breadcrumb {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin-bottom: 8px;
  }
  .lms-bc-sep { color: var(--orange); margin: 0 4px; }
  .lms-continue-card h2 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  .lms-continue-card h2 em { color: var(--orange); font-style: italic; }
  .lms-continue-card p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 14px;
  }
  .lms-continue-progress {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .lms-continue-progress-bar {
    flex: 1;
    height: 4px;
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden;
  }
  .lms-continue-progress-bar > div {
    height: 100%;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.4s ease;
  }
  .lms-continue-progress-label {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .lms-continue-cta {
    display: flex;
    align-items: center;
    align-self: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--orange);
    color: var(--charcoal);
    font-weight: 600;
    font-size: 13.5px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.18s ease;
  }
  .lms-continue-card:hover .lms-continue-cta { background: var(--orange-soft, #ff6a2a); }
  .lms-continue-cta .arrow { transition: transform 0.18s ease; }
  .lms-continue-card:hover .lms-continue-cta .arrow { transform: translateX(3px); }

  /* Sections génériques */
  .lms-section { margin-bottom: 48px; }
  .lms-section-head {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .lms-section-head h2 {
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 6px;
  }
  .lms-section-head h2 em { color: var(--orange); font-style: italic; }
  .lms-section-head p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.55;
  }

  /* Leçons */
  .lms-lessons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .lms-lesson {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0;
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.18s ease, transform 0.18s ease;
  }
  .lms-lesson:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
  }
  .lms-lesson.in-progress { border-left: 3px solid var(--orange); }
  .lms-lesson.completed { border-left: 3px solid var(--green-light); }
  .lms-lesson.in-progress:hover { border-color: var(--orange); }
  .lms-lesson.completed:hover { border-color: var(--green-light); }

  .lms-lesson-status {
    background: var(--ink);
    padding: 18px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-right: 1px solid var(--border-subtle);
  }
  .lms-lesson-num {
    font-family: var(--serif);
    font-size: 28px;
    font-style: italic;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .lms-lesson.completed .lms-lesson-num { color: var(--green-light); }
  .lms-lesson.in-progress .lms-lesson-num { color: var(--orange); }
  .lms-lesson-state {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
  }
  .lms-lesson-state.completed {
    color: var(--green-light);
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .lms-lesson-state.completed svg { width: 12px; height: 12px; }
  .lms-lesson-state.in-progress {
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .lms-lesson-state.in-progress .pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse-dot 2s ease-in-out infinite;
  }
  @keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(246,80,9,0.5); }
    50%      { box-shadow: 0 0 0 5px rgba(246,80,9,0); }
  }

  .lms-lesson-body { padding: 18px 22px; min-width: 0; }
  .lms-lesson-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
  }
  .lms-lesson-body h3 {
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.18;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.015em;
  }
  .lms-lesson-body h3 em { color: var(--orange); font-style: italic; }
  .lms-lesson.completed h3 em { color: var(--green-light); }
  .lms-lesson-body p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 12px;
  }
  .lms-lesson-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
  }
  .lms-lesson-stat strong {
    color: var(--text-primary);
    font-family: var(--mono);
    font-weight: 600;
  }
  .lms-lesson-stat.highlight {
    color: var(--orange);
    background: rgba(246,80,9,0.08);
    padding: 2px 8px;
    border-radius: 2px;
  }
  .lms-lesson-progress {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--border-subtle);
  }
  .lms-lesson-progress-bar {
    flex: 1;
    height: 3px;
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden;
  }
  .lms-lesson-progress-bar > div {
    height: 100%;
    background: var(--green-light);
    transition: width 0.4s ease;
  }
  .lms-lesson-progress-bar.in-progress > div {
    background: var(--orange);
  }
  .lms-lesson-progress span {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  /* Stats globales */
  .lms-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .lms-stat {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 18px 20px;
  }
  .lms-stat-num {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }
  .lms-stat-num .unit { font-size: 16px; color: var(--orange); }
  .lms-stat-label {
    font-size: 11.5px;
    color: var(--text-muted);
    line-height: 1.4;
  }

  /* === SIDE COLUMN === */
  .lms-side {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding-bottom: 8px;
  }
  .lms-side::-webkit-scrollbar { width: 6px; }
  .lms-side::-webkit-scrollbar-track { background: transparent; }
  .lms-side::-webkit-scrollbar-thumb { background: var(--border-subtle); border-radius: 3px; }

  /* Account block */
  .lms-side-account {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 18px 20px;
  }
  .lms-side-account-status {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-light);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  .lms-side-account-status .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 0 3px rgba(74,141,118,0.2);
  }
  .lms-side-account-name {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
  }
  .lms-side-account-email {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 14px;
    margin-top: 2px;
  }
  .lms-side-account-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
  }
  .lms-side-account-links a {
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 5px 0;
  }
  .lms-side-account-links a:hover { color: var(--orange); }
  .lms-side-account-links a.logout {
    color: var(--text-muted);
    margin-top: 4px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  /* Side block générique */
  .lms-side-block {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
  }
  .lms-side-head {
    padding: 16px 20px 14px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .lms-side-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
  }
  .lms-side-head.green .lms-side-eyebrow { color: var(--green-light); }
  .lms-side-head h3 {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .lms-side-head h3 em { color: var(--orange); font-style: italic; }
  .lms-side-head.green h3 em { color: var(--green-light); }
  .lms-side-head p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-top: 4px;
  }

  /* Replay items in sidebar */
  .lms-replay {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-subtle);
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
  }
  .lms-replay:hover { background: rgba(246,80,9,0.04); }
  .lms-replay:last-of-type { border-bottom: none; }
  .lms-replay-thumb {
    width: 80px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
    border-radius: 4px;
    display: grid;
    place-items: center;
    color: var(--text-primary);
    position: relative;
    flex-shrink: 0;
  }
  .lms-replay-thumb svg { width: 18px; height: 18px; opacity: 0.85; }
  .lms-replay-duration {
    position: absolute;
    bottom: 3px;
    right: 4px;
    font-family: var(--mono);
    font-size: 8.5px;
    background: rgba(0,0,0,0.6);
    color: var(--text-primary);
    padding: 1px 4px;
    border-radius: 2px;
  }
  .lms-replay-body { min-width: 0; }
  .lms-replay-tag {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
  }
  .lms-replay-tag.new { color: var(--orange); font-weight: 600; }
  .lms-replay-title {
    font-family: var(--serif);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 3px;
  }
  .lms-replay-host {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
  }
  .lms-side-more {
    display: block;
    padding: 12px 16px;
    text-align: center;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--orange);
    text-decoration: none;
    letter-spacing: 0.08em;
    border-top: 1px solid var(--border-subtle);
  }
  .lms-side-more:hover { background: rgba(246,80,9,0.06); }

  /* Upcoming webinar card */
  .lms-upcoming-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 14px;
    padding: 16px 18px;
    align-items: center;
  }
  .lms-upcoming-date {
    background: var(--ink);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 8px 4px;
    text-align: center;
  }
  .lms-upcoming-day {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
    font-style: italic;
    letter-spacing: -0.02em;
  }
  .lms-upcoming-month {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-top: 3px;
  }
  .lms-upcoming-title {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 4px;
  }
  .lms-upcoming-time {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
  }
  .lms-upcoming-cta {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--green-light);
    text-decoration: none;
    letter-spacing: 0.04em;
    font-weight: 600;
  }
  .lms-upcoming-cta:hover { color: var(--orange); }


  /* ========================================================================
     ╔══════════════════════════════════════════════════════════════════╗
     ║  PAGE LEÇON — Chapitres → Modules → Ressources                  ║
     ╚══════════════════════════════════════════════════════════════════╝
     ======================================================================== */

  .lesson { padding: 0 0 80px; }

  /* Header de la Leçon */
  .lesson-header {
    background: var(--charcoal-soft);
    border-bottom: 1px solid var(--border-subtle);
    padding: 36px 0 44px;
    position: relative;
    overflow: hidden;
  }
  .lesson-header::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246,80,9,0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  .lesson-breadcrumb {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 22px;
    position: relative;
  }
  .lesson-breadcrumb a { color: var(--text-muted); text-decoration: none; }
  .lesson-breadcrumb a:hover { color: var(--orange); }
  .lesson-breadcrumb .sep { margin: 0 6px; color: var(--orange); }
  .lesson-breadcrumb .current { color: var(--text-primary); }

  .lesson-header-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px;
    align-items: start;
    position: relative;
  }
  .lesson-header-tag {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }
  .lesson-header-num {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    padding: 4px 10px;
    border: 1px solid rgba(246,80,9,0.3);
    border-radius: 2px;
    background: rgba(246,80,9,0.08);
  }
  .lesson-header-state {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .lesson-header-state.in-progress { color: var(--orange); }
  .lesson-header-state.in-progress .pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse-dot 2s ease-in-out infinite;
  }

  .lesson-header-main h1 {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 52px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 16px;
  }
  .lesson-header-main h1 em { color: var(--orange); font-style: italic; }
  .lesson-header-sub {
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.55;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 26px;
    max-width: 640px;
  }
  .lesson-header-meta {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 32px;
    padding: 18px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
  }
  .lesson-meta-label {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  .lesson-meta-value {
    font-size: 13px;
    color: var(--text-primary);
  }
  .lesson-meta-value strong {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--orange);
    letter-spacing: -0.02em;
    margin-right: 4px;
  }

  /* Progress card en haut à droite */
  .lesson-progress-card {
    background: var(--ink);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 22px;
    text-align: center;
  }
  .lesson-progress-card-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
  }
  .lesson-progress-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 18px;
  }
  .lesson-progress-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }
  .lesson-progress-circle .ring-bg {
    fill: none;
    stroke: var(--border-subtle);
    stroke-width: 6;
  }
  .lesson-progress-circle .ring-fill {
    fill: none;
    stroke: var(--orange);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s ease;
  }
  .lesson-progress-circle-text {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
  }
  .lesson-progress-circle-text .num {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
    font-style: italic;
  }
  .lesson-progress-circle-text .num small {
    font-size: 18px;
    color: var(--orange);
    font-style: normal;
    margin-left: 2px;
  }
  .lesson-progress-circle-text .lbl {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
  }
  .lesson-continue-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 13px;
    margin-bottom: 16px;
  }
  .lesson-progress-next {
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
    text-align: left;
  }
  .lesson-progress-next-label {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  .lesson-progress-next-title {
    font-family: var(--serif);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
  }

  /* Content : TOC + Main */
  .lesson-content { padding-top: 40px; }
  .lesson-content-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: start;
  }

  .lesson-toc {
    position: sticky;
    top: 24px;
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 18px;
  }
  .lesson-toc-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .lesson-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .lesson-toc-list a {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 10px 6px;
    text-decoration: none;
    color: var(--text-secondary);
    border-radius: 3px;
    margin-bottom: 4px;
    transition: background 0.15s ease;
  }
  .lesson-toc-list a:hover { background: rgba(246,80,9,0.05); color: var(--text-primary); }
  .lesson-toc-list a.active { background: rgba(246,80,9,0.1); color: var(--text-primary); }
  .lesson-toc-list .num {
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    color: var(--orange);
    line-height: 1;
    text-align: center;
  }
  .lesson-toc-list .text {
    font-size: 13px;
    line-height: 1.3;
    color: var(--text-primary);
    font-weight: 500;
  }
  .lesson-toc-list .text small {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-top: 3px;
    font-weight: 400;
  }
  .lesson-toc-list .state {
    font-size: 13px;
    color: var(--text-muted);
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
  }
  .lesson-toc-list .state.completed { color: var(--green-light); }
  .lesson-toc-list .state.completed svg { width: 14px; height: 14px; }
  .lesson-toc-list .state.in-progress .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse-dot 2s ease-in-out infinite;
  }

  .lesson-toc-foot {
    margin-top: 20px;
    padding: 14px;
    background: rgba(74,141,118,0.06);
    border: 1px solid rgba(74,141,118,0.2);
    border-radius: 4px;
  }
  .lesson-toc-foot-label {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 6px;
    font-weight: 600;
  }
  .lesson-toc-foot-text {
    font-size: 11.5px;
    color: var(--text-secondary);
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .lesson-toc-foot-text svg {
    width: 18px;
    height: 18px;
    color: var(--green-light);
    flex-shrink: 0;
  }

  /* Main chapters area */
  .lesson-main { min-width: 0; }

  /* Chapter */
  .chapter {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.18s ease;
  }
  .chapter.in-progress { border-left: 3px solid var(--orange); }
  .chapter.completed { border-left: 3px solid var(--green-light); opacity: 0.92; }
  .chapter.completed:hover { opacity: 1; }

  .chapter-head {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 18px;
    align-items: start;
    padding: 22px 24px;
    cursor: pointer;
    transition: background 0.15s ease;
  }
  .chapter-head:hover { background: rgba(246,80,9,0.03); }
  .chapter.completed .chapter-head:hover { background: rgba(74,141,118,0.04); }

  .chapter-head-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
  }
  .chapter-num {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
  }
  .chapter-state {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .chapter-state.completed { color: var(--green-light); }
  .chapter-state.completed svg { width: 12px; height: 12px; }
  .chapter-state.in-progress { color: var(--orange); }
  .chapter-state.in-progress .pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: pulse-dot 2s ease-in-out infinite;
  }
  .chapter-head-main { min-width: 0; }
  .chapter-head-main h2 {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--text-primary);
    margin-bottom: 6px;
  }
  .chapter-head-main h2 em { color: var(--orange); font-style: italic; }
  .chapter.completed h2 em { color: var(--green-light); }
  .chapter-head-main p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 10px;
  }
  .chapter-head-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
  }
  .chapter-head-meta .completed-tag {
    color: var(--green-light);
    font-weight: 600;
  }
  .chapter-head-meta .in-progress-tag {
    color: var(--orange);
    font-weight: 600;
  }

  .chapter-toggle {
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: transform 0.25s ease, color 0.15s ease, border-color 0.15s ease;
    align-self: center;
    flex-shrink: 0;
  }
  .chapter-toggle:hover {
    color: var(--orange);
    border-color: var(--orange);
  }
  .chapter-toggle svg { width: 16px; height: 16px; }
  .chapter.open .chapter-toggle { transform: rotate(180deg); }

  /* Chapter body (modules) */
  .chapter-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .chapter.open .chapter-body {
    max-height: 6000px; /* assez large pour ne pas tronquer */
  }

  /* Modules list */
  .modules {
    list-style: none;
    padding: 0 24px 22px;
    margin: 0;
    border-top: 1px solid var(--border-subtle);
  }
  .module {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border-subtle);
    align-items: start;
  }
  .module:last-child { border-bottom: none; }

  .module-marker {
    padding-top: 4px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .module-marker .num {
    font-family: var(--serif);
    font-size: 24px;
    font-style: italic;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .module.completed .module-marker .num { color: var(--green-light); }
  .module.current .module-marker .num { color: var(--orange); }
  .module .current-tag {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    padding: 2px 6px;
    background: rgba(246,80,9,0.1);
    border-radius: 2px;
    white-space: nowrap;
  }

  .module-body { min-width: 0; }
  .module-body h3 {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
  }
  .module-body h3 em { color: var(--orange); font-style: italic; }
  .module-body p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 14px;
  }

  /* Ressources d'un module */
  .module-resources {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .module-resource {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 14px;
    background: var(--ink);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.18s ease, transform 0.18s ease;
  }
  .module-resource:hover {
    border-color: var(--orange);
    transform: translateX(2px);
  }
  .module-resource.active {
    border-color: var(--orange);
    background: rgba(246,80,9,0.05);
  }
  .module-resource.locked {
    opacity: 0.55;
  }

  .module-resource-icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .module-resource-icon svg { width: 16px; height: 16px; }
  .storm-icon {
    background: linear-gradient(135deg, var(--orange), #c4400a);
    color: var(--text-primary);
  }
  .video-icon {
    background: linear-gradient(135deg, var(--green-mid), var(--green-deep));
    color: var(--text-primary);
  }
  .pdf-icon {
    background: linear-gradient(135deg, var(--gold), #8b7148);
    color: var(--charcoal);
  }
  .code-icon {
    background: var(--charcoal);
    border: 1px solid var(--green-light);
    color: var(--green-light);
  }
  .quiz-icon {
    background: rgba(74,141,118,0.15);
    border: 1px solid var(--green-light);
    color: var(--green-light);
  }

  .module-resource-body { min-width: 0; }
  .module-resource-tag {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 3px;
  }
  .module-resource.active .module-resource-tag { color: var(--orange); }
  .module-resource-title {
    font-family: var(--serif);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 3px;
  }
  .module-resource-time {
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
  }
  .module-resource-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
  }
  .module-resource-progress-bar {
    flex: 1;
    height: 3px;
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden;
  }
  .module-resource-progress-bar > div {
    height: 100%;
    background: var(--orange);
  }
  .module-resource-progress span {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--orange);
    letter-spacing: 0.04em;
  }

  .module-resource-state {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    flex-shrink: 0;
    width: 26px;
    text-align: center;
  }
  .module-resource-state.done {
    color: var(--green-light);
    font-size: 14px;
  }
  .module-resource-state.in-progress {
    color: var(--orange);
    font-size: 11px;
    width: auto;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border: 1px solid var(--orange);
    border-radius: 2px;
  }

  /* ========================================================================
     RESPONSIVE — LMS, Leçon
     ======================================================================== */

  /* === Très grands écrans (>= 1500px) — exploitation maximale === */
  @media (min-width: 1500px) {
    .storm-layout {
      grid-template-columns: 340px minmax(0, 1fr);
      gap: 72px;
    }
    .lesson-content-inner {
      gap: 72px;
    }
  }

  /* === Écrans intermédiaires (1100-1300px) — réduire un peu les gaps === */
  @media (max-width: 1300px) {
    .lms-inner { gap: 28px; }
    .storm-layout { gap: 56px; }
    .lesson-content-inner { gap: 40px; }
  }

  @media (max-width: 1100px) {
    .lms-inner {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .lms-side {
      position: static;
      max-height: none;
      grid-row: 2;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      align-items: start;
    }
  }

  @media (max-width: 1024px) {
    .lesson-header-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .lesson-content-inner {
      grid-template-columns: 220px 1fr;
      gap: 32px;
    }
    .storm-layout {
      grid-template-columns: 220px 1fr;
      gap: 40px;
    }
  }

  @media (max-width: 880px) {
    .lms { padding: 20px 0 60px; }
    .lms-welcome {
      flex-direction: column;
      align-items: flex-start;
      padding: 18px 20px;
    }
    .lms-continue-card {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 18px;
    }
    .lms-continue-thumb { min-height: 90px; }
    .lms-continue-cta {
      justify-content: center;
    }
    .lms-stats { grid-template-columns: repeat(2, 1fr); }
    .lms-lesson {
      grid-template-columns: 56px 1fr;
    }
    .lms-lesson-num { font-size: 22px; }
    .lms-lesson-body { padding: 16px 18px; }
    .lms-lesson-body h3 { font-size: 18px; }

    /* Leçon page */
    .lesson-header { padding: 28px 0 32px; }
    .lesson-header-main h1 { font-size: clamp(28px, 6vw, 40px); }
    .lesson-header-sub { font-size: 15px; }
    .lesson-header-meta {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .lesson-progress-card { padding: 18px; }
    .lesson-progress-circle { width: 110px; height: 110px; }
    .lesson-progress-circle-text .num { font-size: 28px; }

    .lesson-content-inner {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .lesson-toc {
      position: static;
      max-height: 280px;
      overflow-y: auto;
    }
    .chapter-head {
      grid-template-columns: 1fr auto;
      gap: 14px;
      padding: 18px 18px;
    }
    .chapter-head-left {
      grid-column: 1 / -1;
      flex-direction: row;
      align-items: center;
      gap: 12px;
      padding-top: 0;
    }
    .chapter-head-main h2 { font-size: 19px; }
    .modules { padding: 0 18px 18px; }
    .module {
      grid-template-columns: 40px 1fr;
      gap: 12px;
      padding: 18px 0;
    }
    .module-marker .num { font-size: 20px; }
    .module-body h3 { font-size: 16px; }
    .module-resource {
      grid-template-columns: 32px 1fr auto;
      gap: 12px;
      padding: 10px 12px;
    }
    .module-resource-icon { width: 32px; height: 32px; }
    .module-resource-title { font-size: 13.5px; }
  }

  @media (max-width: 600px) {
    .lms-welcome { padding: 14px 16px; gap: 14px; }
    .lms-user-avatar { width: 40px; height: 40px; font-size: 12px; }
    .lms-welcome-title { font-size: 20px; }
    .lms-progress-ring { width: 64px; height: 64px; }
    .lms-progress-num { font-size: 16px; }
    .lms-progress-label { font-size: 7.5px; }
    .lms-stats { grid-template-columns: 1fr 1fr; }
    .lms-stat { padding: 14px 16px; }
    .lms-stat-num { font-size: 22px; }
    .lms-lesson { grid-template-columns: 48px 1fr; }
    .lms-lesson-status { padding: 14px 4px; }
    .lesson-header-meta { grid-template-columns: 1fr 1fr; gap: 12px; }
  }




  /* ========================================================================
     ╔══════════════════════════════════════════════════════════════════╗
     ║  PAGE STORM ARTICLE — Format Wikipédia / deep research          ║
     ╚══════════════════════════════════════════════════════════════════╝
     ======================================================================== */

  .storm-article {
    padding-top: 0;
  }

  .storm-header {
    padding: 56px 0 44px;
    background: var(--charcoal-soft);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
  }
  .storm-header::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(246, 80, 9, 0.06) 0%, transparent 60%);
    pointer-events: none;
  }

  .storm-breadcrumb {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
  }
  .storm-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
  }
  .storm-breadcrumb a:hover { color: var(--orange); }
  .storm-breadcrumb .sep { margin: 0 8px; color: var(--orange); }
  .storm-breadcrumb .current { color: var(--text-primary); }

  .storm-format-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 22px;
    padding: 6px 12px;
    border: 1px solid rgba(246, 80, 9, 0.3);
    border-radius: 2px;
    background: rgba(246, 80, 9, 0.08);
    position: relative;
  }
  .storm-format-tag svg { width: 14px; height: 14px; }

  .storm-title {
    font-family: var(--serif);
    font-size: clamp(36px, 4.6vw, 56px);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: 18px;
    max-width: 900px;
    position: relative;
  }
  .storm-title em {
    color: var(--orange);
    font-style: italic;
    font-weight: 400;
  }
  .storm-subtitle {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.55;
    color: var(--text-secondary);
    font-style: italic;
    max-width: 760px;
    margin-bottom: 32px;
    position: relative;
  }

  .storm-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding: 18px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
  }
  .storm-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .storm-meta-label {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .storm-meta-value {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
  }

  .storm-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
    position: relative;
  }
  .storm-action {
    font-size: 13px !important;
    padding: 9px 16px !important;
  }
  .storm-action svg { width: 14px; height: 14px; }

  /* === Layout : TOC + content === */
  .storm-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 64px;
    padding-top: 56px;
    padding-bottom: 80px;
    align-items: start;
  }

  .storm-toc {
    position: sticky;
    top: 24px;
    padding-right: 18px;
    border-right: 1px solid var(--border-subtle);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
  }
  .storm-toc-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-subtle);
  }
  .storm-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: none;
  }
  .storm-toc-list ol {
    list-style: none;
    padding-left: 14px;
    margin: 4px 0;
    border-left: 1px solid var(--border-subtle);
  }
  .storm-toc-list li {
    margin: 0;
    padding: 0;
  }
  .storm-toc-list a {
    display: block;
    padding: 6px 10px;
    font-size: 12.5px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 3px;
    line-height: 1.4;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .storm-toc-list > li > a {
    font-weight: 600;
    color: var(--text-primary);
  }
  .storm-toc-list ol a {
    font-weight: 400;
    font-size: 12px;
  }
  .storm-toc-list a:hover {
    background: rgba(246, 80, 9, 0.05);
    color: var(--text-primary);
  }
  .storm-toc-list a.active {
    background: rgba(246, 80, 9, 0.1);
    color: var(--orange);
    font-weight: 600;
  }

  .storm-toc-progress {
    margin-top: 24px;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
  }
  .storm-toc-progress-label {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
  }
  .storm-toc-progress-bar {
    height: 3px;
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden;
  }
  .storm-toc-progress-fill {
    height: 100%;
    background: var(--orange);
    width: 0;
    transition: width 0.2s ease;
  }

  /* === STORM Content === */
  .storm-content {
    min-width: 0;
    /* Largeur max généreuse pour profiter de l'espace, mais bornée
       pour garder une mesure de lecture confortable (~90-100 caractères).
       Sur des écrans très larges, dépasser ~1100px nuit à la lecture. */
    max-width: 1100px;
  }

  .storm-abstract {
    background: rgba(74, 141, 118, 0.06);
    border-left: 2px solid var(--green-light);
    padding: 24px 28px;
    border-radius: 0 4px 4px 0;
    margin-bottom: 56px;
  }
  .storm-section-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green-light);
    font-weight: 600;
    margin-bottom: 12px;
  }
  .storm-abstract p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    font-family: var(--serif);
    font-style: italic;
  }
  .storm-abstract p em { color: var(--orange); font-weight: 500; }

  .storm-section {
    margin-bottom: 56px;
  }
  .storm-section h2 {
    font-family: var(--serif);
    font-size: 30px;
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0 0 22px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
    scroll-margin-top: 24px;
  }
  .storm-section h3 {
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--text-primary);
    margin: 36px 0 14px 0;
    scroll-margin-top: 24px;
  }
  .storm-section h3:first-of-type { margin-top: 8px; }
  .storm-section p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 18px;
  }
  .storm-section p strong {
    color: var(--text-primary);
    font-weight: 600;
  }
  .storm-section p em {
    color: var(--text-primary);
    font-style: italic;
  }
  .storm-section code {
    font-family: var(--mono);
    font-size: 13px;
    background: var(--charcoal-soft);
    padding: 2px 6px;
    border-radius: 3px;
    color: var(--green-light);
    border: 1px solid var(--border-subtle);
  }

  .storm-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px 0;
  }
  .storm-list li {
    padding: 9px 0 9px 26px;
    position: relative;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
  }
  .storm-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--orange);
    font-size: 12px;
  }
  .storm-list li strong { color: var(--text-primary); font-weight: 600; }

  /* Citations inline [1] [2,3] */
  .cite {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--orange);
    font-weight: 500;
    vertical-align: baseline;
  }
  .cite a {
    color: var(--orange);
    text-decoration: none;
    border-bottom: 1px dotted var(--orange);
    padding: 0 1px;
  }
  .cite a:hover {
    background: rgba(246, 80, 9, 0.1);
  }

  /* Callouts (encadrés) */
  .storm-callout {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-left: 2px solid var(--orange);
    padding: 18px 22px;
    border-radius: 0 4px 4px 0;
    margin: 24px 0;
  }
  .storm-callout.green {
    border-left-color: var(--green-light);
    background: rgba(74, 141, 118, 0.06);
  }
  .storm-callout-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .storm-callout.green .storm-callout-label { color: var(--green-light); }
  .storm-callout p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
  }
  .storm-callout p + .btn {
    margin-top: 16px;
  }

  /* Liens-ressources dans une section "pour aller plus loin" */
  .storm-resource-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0 24px 0;
  }
  .storm-resource-link {
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 16px 20px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.18s ease, transform 0.18s ease;
  }
  .storm-resource-link:hover {
    border-color: var(--orange);
    transform: translateX(2px);
  }
  .storm-resource-link-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
  }
  .storm-resource-link-title {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
  }
  .storm-resource-link-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
  }

  /* Références */
  .storm-references {
    margin-top: 64px;
    padding-top: 32px;
    border-top: 2px solid var(--border-subtle);
  }
  .storm-references h2 {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
    scroll-margin-top: 24px;
  }
  .storm-references-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: refcounter;
  }
  .storm-references-list li {
    counter-increment: refcounter;
    padding: 10px 0 10px 40px;
    position: relative;
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.55;
    border-bottom: 1px solid var(--border-subtle);
  }
  .storm-references-list li:last-child { border-bottom: none; }
  .storm-references-list li::before {
    content: "[" counter(refcounter) "]";
    position: absolute;
    left: 0;
    top: 10px;
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--orange);
    font-weight: 600;
  }
  .storm-references-list li:target {
    background: rgba(246, 80, 9, 0.06);
    border-radius: 3px;
    padding-left: 44px;
  }
  .storm-references-list em {
    color: var(--text-primary);
    font-style: italic;
    font-family: var(--serif);
  }
  .storm-references-list a {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--orange);
    text-decoration: none;
    border-bottom: 1px dotted var(--orange);
  }
  .storm-references-list a:hover { background: rgba(246, 80, 9, 0.08); }

  /* Footer de l'article */
  .storm-article-footer {
    margin-top: 48px;
    padding: 28px 32px;
    background: var(--charcoal-soft);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .storm-article-footer-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 6px;
    font-weight: 600;
  }
  .storm-article-footer-left p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    max-width: 480px;
  }


  /* ========================================================================
     RESPONSIVE — Pages compte (login, STORM)
     ======================================================================== */

  @media (max-width: 880px) {
    /* Account gate */
    .account-gate { padding: 48px 0 80px; }
    .account-gate-head { margin-bottom: 40px; }
    .account-gate-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .login-card-header { padding: 28px 24px 22px; }
    .login-card-header h2 { font-size: 24px; }
    .login-card-body { padding: 22px 24px 28px; }

    /* STORM article */
    .storm-header { padding: 36px 0 28px; }
    .storm-meta { gap: 18px; padding: 14px 0; }
    .storm-actions { gap: 8px; }
    .storm-layout {
      grid-template-columns: 1fr;
      gap: 24px;
      padding-top: 32px;
      padding-bottom: 56px;
    }
    .storm-toc {
      position: static;
      max-height: none;
      padding-right: 0;
      padding: 18px 20px;
      border-right: none;
      border: 1px solid var(--border-subtle);
      border-radius: 4px;
      background: var(--charcoal-soft);
    }
    .storm-toc-list ol { padding-left: 12px; }
    .storm-content { max-width: none; }
    .storm-section h2 { font-size: 24px; }
    .storm-section h3 { font-size: 18px; }
    .storm-section p, .storm-list li { font-size: 14.5px; }
    .storm-abstract { padding: 20px 22px; margin-bottom: 40px; }
    .storm-references h2 { font-size: 22px; }
    .storm-article-footer {
      flex-direction: column;
      align-items: stretch;
      padding: 22px 24px;
    }
  }

  @media (max-width: 600px) {
    .login-features { gap: 6px; }
    .login-feature { font-size: 10.5px; padding: 5px 8px; }
    .storm-meta { flex-direction: column; gap: 12px; }
    .storm-meta-item { flex-direction: row; justify-content: space-between; }
    .storm-references-list li { font-size: 13px; padding-left: 36px; }
  }

  /* Mode impression pour les articles STORM */
  @media print {
    #site-header, .storm-toc, .storm-actions, .storm-article-footer { display: none !important; }
    body { background: white !important; color: black !important; }
    .storm-content { max-width: none; }
    .storm-section p, .storm-section h2, .storm-section h3 { color: black !important; }
    .storm-references-list li { color: #333 !important; }
    a { color: #333 !important; text-decoration: underline !important; }
  }
