:root {
    --violet:     #6B63FF;
    --violet-dark:#5550D9;
    --violet-light:#EEEDFF;
    --corail:     #E85D50;
    --corail-dark:#D04A3E;
    --corail-light:#FFF0EE;
    --texte:      #1E1E2E;
    --texte-light:#555568;
    --gris:       #F7F7F9;
    --gris-bord:  #E2E2EA;
    --blanc:      #FFFFFF;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--texte);
    font-size: 16px;
    line-height: 1.72;
    background: var(--blanc);
    -webkit-font-smoothing: antialiased;
  }

  /* --- NAV --- */
  nav {
    background: var(--blanc);
    position: sticky; top: 0; z-index: 100;
    border-bottom: 1px solid var(--gris-bord);
    backdrop-filter: blur(12px);
  }
  nav .nav-inner {
    max-width: 1080px; margin: auto;
    display: flex; align-items: center; flex-wrap: wrap;
  }
  nav .logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700; font-size: 15px;
    color: var(--texte); padding: 14px 24px 14px 16px;
    border-right: 1px solid var(--gris-bord);
    white-space: nowrap;
  }
  nav .logo span { color: var(--violet); }
  nav a.tab {
    color: var(--texte-light); text-decoration: none;
    padding: 16px 16px; font-size: 14px; font-weight: 500;
    cursor: pointer; transition: color 0.2s, box-shadow 0.2s;
    border-bottom: 2px solid transparent;
  }
  nav a.tab:hover { color: var(--violet); }
  nav a.tab.active { color: var(--violet); border-bottom-color: var(--violet); }
  nav .cta-nav {
    margin-left: auto;
    background: var(--corail); color: white;
    padding: 9px 20px; font-size: 13px; font-weight: 600;
    text-decoration: none; border-radius: 6px; margin-right: 16px;
    transition: background 0.2s;
    cursor: pointer;
  }
  nav .cta-nav:hover { background: var(--corail-dark); }

  /* --- PAGES --- */
  /* Multi-page: no show/hide needed */

  /* --- SECTIONS --- */
  section { padding: 64px 24px; }
  section.alt { background: var(--gris); }
  .inner { max-width: 800px; margin: auto; }
  .inner-wide { max-width: 1000px; margin: auto; }

  /* --- TYPO --- */
  h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 2.4rem; line-height: 1.2;
    color: var(--texte); margin-bottom: 20px;
    font-weight: 700;
  }
  h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.55rem; color: var(--texte);
    margin-bottom: 16px; font-weight: 600; line-height: 1.3;
  }
  h3 { font-size: 1.05rem; font-weight: 600; color: var(--texte); margin-bottom: 8px; }
  p { margin-bottom: 16px; }
  p:last-child { margin-bottom: 0; }

  /* --- HERO --- */
  .hero {
    background: linear-gradient(135deg, #2D2A6E 0%, #4540B0 40%, var(--violet) 100%);
    color: white; padding: 88px 24px 80px; text-align: center;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; top: -120px; right: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: var(--corail); opacity: 0.1;
  }
  .hero::after {
    content: ''; position: absolute; bottom: -60px; left: -40px;
    width: 250px; height: 250px; border-radius: 50%;
    background: white; opacity: 0.04;
  }
  .hero .surtitre {
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.14em; opacity: 0.7; margin-bottom: 18px;
    font-weight: 500;
  }
  .hero h1 { color: white; font-size: 2.6rem; position: relative; }
  .hero .sous-titre {
    font-size: 1.08rem; opacity: 0.85; max-width: 640px;
    margin: 20px auto 36px; line-height: 1.7;
  }
  .hero .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

  .btn-principal {
    background: var(--corail); color: white;
    padding: 14px 28px; border-radius: 6px;
    text-decoration: none; font-size: 15px; font-weight: 600;
    transition: background 0.2s; cursor: pointer;
    border: none;
  }
  .btn-principal:hover { background: var(--corail-dark); }
  .btn-secondaire {
    background: transparent; color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 13px 28px; border-radius: 6px;
    text-decoration: none; font-size: 15px; font-weight: 500;
    transition: border-color 0.2s; cursor: pointer;
  }
  .btn-secondaire:hover { border-color: rgba(255,255,255,0.8); }
  .bandeau-credibilite {
    font-size: 13px; opacity: 0.55; margin-top: 40px; position: relative;
  }
  .bandeau-credibilite a { color: rgba(255,255,255,0.7); }

  /* --- SURTITRE --- */
  .surtitre-section {
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--violet);
    font-weight: 600; margin-bottom: 10px;
  }

  /* --- CHIFFRES --- */
  .chiffres {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; margin-top: 32px;
    border: 1px solid var(--gris-bord); border-radius: 10px; overflow: hidden;
    background: white;
  }
  @media (max-width: 650px) { .chiffres { grid-template-columns: repeat(2, 1fr); } }
  .chiffre {
    padding: 28px 16px; text-align: center;
    border-right: 1px solid var(--gris-bord);
  }
  .chiffre:last-child { border-right: none; }
  @media (max-width: 650px) { .chiffre:nth-child(2) { border-right: none; } .chiffre:nth-child(1), .chiffre:nth-child(2) { border-bottom: 1px solid var(--gris-bord); } }
  .chiffre .nombre {
    font-family: 'Fraunces', serif;
    font-size: 2rem; color: var(--violet); font-weight: 700; display: block;
  }
  .chiffre .label { font-size: 13px; color: var(--texte-light); margin-top: 4px; }

  /* --- GRILLES --- */
  .grille-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
  @media (max-width: 700px) { .grille-3 { grid-template-columns: 1fr; } }
  .grille-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
  @media (max-width: 650px) { .grille-2 { grid-template-columns: 1fr; } }

  /* --- CARDS --- */
  .card {
    background: white; border: 1px solid var(--gris-bord);
    border-radius: 10px; padding: 24px;
    transition: box-shadow 0.2s;
  }
  .card:hover { box-shadow: 0 4px 20px rgba(107,99,255,0.08); }

  /* --- MODULE CARDS --- */
  .module-card {
    background: white; border: 1px solid var(--gris-bord);
    border-radius: 10px; padding: 24px;
    border-left: 4px solid var(--violet);
    transition: box-shadow 0.2s;
  }
  .module-card:hover { box-shadow: 0 4px 20px rgba(107,99,255,0.08); }
  .module-card .num {
    font-size: 11px; color: var(--corail); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px;
  }
  .module-card p { color: var(--texte-light); font-size: 15px; margin-top: 8px; }

  /* --- CHECKS --- */
  ul.checks { list-style: none; margin: 16px 0; }
  ul.checks li {
    padding: 7px 0 7px 30px; position: relative; font-size: 15px;
  }
  ul.checks li::before {
    content: "✓"; position: absolute; left: 0;
    color: var(--corail); font-weight: 700; font-size: 15px;
  }

  /* --- PARCOURS COMPARATIF --- */
  .parcours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
  @media (max-width: 700px) { .parcours-grid { grid-template-columns: 1fr; } }
  .parcours-box {
    border: 1.5px solid var(--gris-bord); border-radius: 12px;
    padding: 32px 28px; position: relative;
    background: white;
  }
  .parcours-box.featured {
    border-color: var(--violet);
    box-shadow: 0 6px 30px rgba(107,99,255,0.12);
  }
  .parcours-box .parcours-label {
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.1em; font-weight: 700;
    margin-bottom: 6px;
  }
  .parcours-box .parcours-label.essentiel { color: var(--texte-light); }
  .parcours-box .parcours-label.expert { color: var(--violet); }
  .parcours-box h3 {
    font-family: 'Fraunces', serif; font-size: 1.35rem;
    margin-bottom: 16px; font-weight: 600;
  }
  .parcours-box ul.checks li { font-size: 14px; }
  .parcours-box .disabled { color: #bbb; text-decoration: line-through; }
  .badge-reco {
    position: absolute; top: -12px; right: 20px;
    background: var(--corail); color: white;
    font-size: 11px; font-weight: 700; padding: 4px 14px;
    border-radius: 20px; letter-spacing: 0.04em;
  }

  /* --- TABLEAU RECONNAISSANCE --- */
  .table-reco {
    width: 100%; border-collapse: collapse; margin-top: 24px;
    font-size: 15px;
  }
  .table-reco th {
    background: var(--violet); color: white;
    padding: 12px 16px; text-align: left; font-weight: 600; font-size: 14px;
  }
  .table-reco th:first-child { border-radius: 8px 0 0 0; }
  .table-reco th:last-child { border-radius: 0 8px 0 0; }
  .table-reco td {
    padding: 12px 16px; border-bottom: 1px solid var(--gris-bord);
  }
  .table-reco tr:last-child td:first-child { border-radius: 0 0 0 8px; }
  .table-reco tr:last-child td:last-child { border-radius: 0 0 8px 0; }
  .table-reco td:nth-child(2), .table-reco td:nth-child(3),
  .table-reco th:nth-child(2), .table-reco th:nth-child(3) { text-align: center; }

  /* --- OPTION BOX --- */
  .option-box {
    border: 1.5px solid var(--gris-bord); border-radius: 10px; padding: 28px;
    background: white;
  }
  .option-box.featured {
    border-color: var(--violet); background: var(--violet-light);
  }
  .option-label {
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--corail);
    font-weight: 700; margin-bottom: 10px;
  }
  .badge-exclu {
    display: inline-block; background: var(--violet); color: white;
    font-size: 11px; font-weight: 600; padding: 3px 12px;
    border-radius: 20px; margin-bottom: 14px;
  }

  /* --- CALENDRIER --- */
  .calendrier { margin-top: 28px; }
  .cal-item {
    display: flex; gap: 24px; padding: 16px 0;
    border-bottom: 1px solid var(--gris-bord); align-items: flex-start;
  }
  .cal-item:last-child { border-bottom: none; }
  .cal-date {
    font-size: 13px; color: var(--violet); font-weight: 700;
    min-width: 160px; padding-top: 2px;
  }

  /* --- ÉTAPES --- */
  ol.etapes { list-style: none; counter-reset: step; margin: 20px 0; }
  ol.etapes li {
    counter-increment: step;
    padding: 14px 14px 14px 56px; position: relative;
    border-bottom: 1px solid var(--gris-bord);
  }
  ol.etapes li:last-child { border-bottom: none; }
  ol.etapes li::before {
    content: counter(step); position: absolute; left: 14px;
    width: 28px; height: 28px; background: var(--violet); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 600; top: 14px;
  }

  /* --- EQUIPE --- */
  .equipe-card {
    border: 1px solid var(--gris-bord); border-radius: 10px; padding: 28px;
    background: white;
  }
  .equipe-card .photo-placeholder {
    width: 80px; height: 80px; background: var(--violet-light);
    border-radius: 50%; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; color: var(--violet); text-align: center;
  }
  .equipe-card .role { font-size: 13px; color: var(--texte-light); margin-bottom: 12px; }
  .equipe-card a { color: var(--violet); font-size: 13px; }

  /* --- TARIF BOX --- */
  .tarif-box {
    border: 2px dashed var(--violet); border-radius: 10px;
    padding: 32px; text-align: center; margin-top: 28px; background: var(--violet-light);
  }
  .tarif-box .tarif-label {
    font-size: 12px; text-transform: uppercase;
    color: var(--corail); letter-spacing: 0.1em;
    font-weight: 600; margin-bottom: 10px;
  }

  /* --- LOGOS --- */
  .logos-row {
    display: flex; flex-wrap: wrap; gap: 16px;
    margin-top: 28px; align-items: center;
  }
  .logo-placeholder {
    border: 1px solid var(--gris-bord); border-radius: 6px;
    padding: 12px 24px; font-size: 13px; color: #999; background: white;
  }

  /* --- CTA SECTION --- */
  .cta-section {
    text-align: center; padding: 72px 24px;
    background: linear-gradient(135deg, #2D2A6E 0%, var(--violet) 100%);
    color: white;
  }
  .cta-section h2 { color: white; margin-bottom: 12px; }
  .cta-section p { opacity: 0.8; max-width: 560px; margin: 0 auto 28px; }
  .cta-section .note { font-size: 13px; opacity: 0.5; margin-top: 14px; }

  /* --- FORM --- */
  .form-simple { max-width: 460px; margin: 28px auto 0; }
  .form-simple input, .form-simple textarea {
    width: 100%; padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.1); color: white;
    border-radius: 6px; font-size: 15px; margin-bottom: 10px;
    font-family: 'DM Sans', sans-serif;
  }
  .form-simple input::placeholder, .form-simple textarea::placeholder { color: rgba(255,255,255,0.45); }
  .form-simple textarea { height: 90px; resize: vertical; }
  .form-simple .btn-form {
    width: 100%; background: var(--corail); color: white;
    border: none; padding: 14px; border-radius: 6px;
    font-size: 15px; cursor: pointer; font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.2s;
  }
  .form-simple .btn-form:hover { background: var(--corail-dark); }

  /* --- PREREQUIS BOX --- */
  .prerequis-box {
    margin-top: 24px; padding: 18px 22px;
    background: var(--corail-light); border-radius: 8px;
    font-size: 14px; color: var(--texte-light);
    border-left: 4px solid var(--corail);
  }
  .prerequis-box a { color: var(--violet); font-weight: 500; }

  /* --- COMMUNAUTÉ BOX --- */
  .communaute-box {
    background: var(--violet-light); border: 1px solid rgba(107,99,255,0.2);
    border-radius: 10px; padding: 28px 28px; margin-top: 28px;
  }
  .communaute-box h3 { color: var(--violet); }

  /* --- FOOTER --- */
  footer {
    background: #1E1E2E; color: rgba(255,255,255,0.5);
    text-align: center; padding: 32px 24px; font-size: 13px;
  }
  footer a { color: rgba(255,255,255,0.5); }

  /* --- MANIFESTE QUOTE --- */
  .manifeste-quote {
    padding: 24px 28px; border-left: 4px solid var(--violet);
    background: var(--violet-light); border-radius: 0 8px 8px 0;
    margin: 28px 0; font-style: italic;
  }

  /* --- RESPONSIVE NAV --- */
  @media (max-width: 800px) {
    nav .logo { font-size: 13px; padding: 12px 14px; }
    nav a.tab { padding: 14px 10px; font-size: 12px; }
    nav .cta-nav { padding: 8px 14px; font-size: 12px; margin-right: 8px; }
    .hero h1 { font-size: 1.9rem; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.3rem; }
  }
  @media (max-width: 550px) {
    nav .logo { display: none; }
  }

  /* --- LINK STYLE --- */
  a.link-violet { color: var(--violet); cursor: pointer; font-weight: 500; text-decoration: none; }
  a.link-violet:hover { text-decoration: underline; }

  /* ============================================
     ANIMATIONS
     ============================================ */

  /* --- PROGRESS BAR --- */
  .progress-bar {
    position: fixed; top: 0; left: 0; height: 3px;
    background: linear-gradient(90deg, var(--violet), var(--corail));
    z-index: 200; width: 0%; transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
  }

  /* --- NAV SCROLL EFFECT --- */
  nav { transition: box-shadow 0.3s ease; }
  nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

  /* --- SCROLL REVEAL --- */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* --- HERO CASCADE --- */
  .hero .surtitre,
  .hero h1,
  .hero .sous-titre,
  .hero .ctas,
  .hero .bandeau-credibilite {
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .hero .surtitre     { animation-delay: 0.1s; }
  .hero h1            { animation-delay: 0.25s; }
  .hero .sous-titre   { animation-delay: 0.4s; }
  .hero .ctas         { animation-delay: 0.55s; }
  .hero .bandeau-credibilite { animation-delay: 0.7s; }

  @keyframes heroFadeIn {
    to { opacity: 1; transform: translateY(0); }
  }

  /* --- ENHANCED CARD HOVER --- */
  .card, .module-card, .parcours-box, .option-box, .equipe-card {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .card:hover, .module-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(107,99,255,0.10);
  }
  .parcours-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(107,99,255,0.10);
  }
  .parcours-box.featured:hover {
    box-shadow: 0 10px 40px rgba(107,99,255,0.18);
  }
  .option-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(107,99,255,0.08);
  }
  .equipe-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(107,99,255,0.08);
  }

  /* --- PAGE TRANSITIONS --- */
  /* Multi-page: page loads with body fade */
  main {
    animation: pageFadeIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  @keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* --- BUTTON HOVER EFFECTS --- */
  .btn-principal {
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .btn-principal:hover {
    background: var(--corail-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(232,93,80,0.3);
  }
  .btn-secondaire {
    transition: border-color 0.2s, transform 0.2s;
  }
  .btn-secondaire:hover {
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
  }
  .cta-nav {
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .cta-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232,93,80,0.25);
  }

  /* --- CHECK LIST STAGGER --- */
  .reveal.visible ul.checks li {
    animation: checkSlide 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
  }
  .reveal.visible ul.checks li:nth-child(1) { animation-delay: 0.05s; }
  .reveal.visible ul.checks li:nth-child(2) { animation-delay: 0.1s; }
  .reveal.visible ul.checks li:nth-child(3) { animation-delay: 0.15s; }
  .reveal.visible ul.checks li:nth-child(4) { animation-delay: 0.2s; }
  .reveal.visible ul.checks li:nth-child(5) { animation-delay: 0.25s; }
  .reveal.visible ul.checks li:nth-child(6) { animation-delay: 0.3s; }
  .reveal.visible ul.checks li:nth-child(7) { animation-delay: 0.35s; }
  .reveal.visible ul.checks li:nth-child(8) { animation-delay: 0.4s; }
  @keyframes checkSlide {
    from { opacity: 0; transform: translateX(-12px); }
    to { opacity: 1; transform: translateX(0); }
  }

  /* --- COUNTER GLOW --- */
  .chiffre .nombre {
    transition: color 0.3s;
  }
  .chiffre:hover .nombre {
    color: var(--corail);
  }

  /* --- LOGO PLACEHOLDER HOVER --- */
  .logo-placeholder {
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }
  .logo-placeholder:hover {
    background: var(--violet-light);
    border-color: var(--violet);
    transform: translateY(-2px);
  }
  .logo-img-box {
    border: 1px solid var(--gris-bord); border-radius: 8px;
    background: white; padding: 0; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  }
  .logo-img-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(107,99,255,0.08);
    border-color: var(--violet);
  }
  .logo-img-box img {
    display: block; height: 100px; width: auto; object-fit: contain;
  }
  /* --- FLOATING SHARE BUTTONS --- */
  .share-float {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 150;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .share-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    text-decoration: none;
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
    overflow: hidden;
    white-space: nowrap;
    color: white;
    font-size: 13px;
    font-weight: 600;
  }
  .share-float a svg {
    min-width: 20px;
    min-height: 20px;
  }
  .share-float a span {
    opacity: 0;
    margin-left: 8px;
    transition: opacity 0.2s;
  }
  .share-float a:hover {
    width: 160px;
    border-radius: 0 6px 6px 0;
  }
  .share-float a:hover span {
    opacity: 1;
  }
  .share-float .share-linkedin {
    background: #0A66C2;
    border-radius: 0 6px 0 0;
  }
  .share-float .share-facebook {
    background: #1877F2;
    border-radius: 0 0 6px 0;
  }
  @media (max-width: 700px) {
    .share-float {
      top: auto;
      bottom: 0;
      left: 0;
      right: 0;
      transform: none;
      flex-direction: row;
      justify-content: center;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(8px);
      border-top: 1px solid var(--gris-bord);
      padding: 8px 0;
      gap: 10px;
    }
    .share-float a {
      width: auto;
      height: 38px;
      padding: 0 14px;
      border-radius: 6px;
      font-size: 12px;
    }
    .share-float a span {
      opacity: 1;
      margin-left: 6px;
    }
  }

  /* --- SECTION ICONS --- */
  .section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--violet-light);
    margin-bottom: 20px;
  }
  .section-icon.corail {
    background: var(--corail-light);
  }
  .module-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--violet-light);
    margin-bottom: 14px;
    flex-shrink: 0;
  }
  .module-icon.corail { background: var(--corail-light); }
  .chiffre-icon {
    margin-bottom: 10px;
    opacity: 0.85;
  }
  .modalite-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--violet-light);
    margin-right: 10px;
    vertical-align: middle;
    flex-shrink: 0;
  }

  .module-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 8px;
  }
  .module-card-header .module-icon { margin-bottom: 0; }
  .module-card-header .module-meta { flex: 1; }

  .badge-places {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,93,80,0.15);
    border: 1.5px solid var(--corail);
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-top: 24px;
    animation: pulseBadge 2s ease-in-out infinite;
    position: relative;
  }
  .badge-places svg { flex-shrink: 0; }
  @keyframes pulseBadge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,93,80,0.3); }
    50% { box-shadow: 0 0 0 10px rgba(232,93,80,0); }
  }
  /* --- FLOATING QUESTION BUTTON --- */
  .question-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 150;
  }
  .question-float a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--violet);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(107,99,255,0.35);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  }
  .question-float a:hover {
    background: var(--violet-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(107,99,255,0.45);
  }
  @media (max-width: 700px) {
    .question-float {
      bottom: 56px;
      right: 12px;
    }
    .question-float a span { display: none; }
    .question-float a { padding: 12px; border-radius: 50%; }
  }

  /* ============================================
     VISUAL ENHANCEMENTS
     ============================================ */

  /* --- 1. HERO FLOATING SHAPES --- */
  .hero { position: relative; overflow: hidden; }
  .hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: shapeFloat 8s ease-in-out infinite, shapeFadeIn 1.5s ease forwards;
  }
  .hero-shape.s1 {
    width: 180px; height: 180px;
    background: var(--corail);
    opacity: 0.07;
    top: -40px; right: -30px;
    animation-delay: 0s;
  }
  .hero-shape.s2 {
    width: 120px; height: 120px;
    background: white;
    opacity: 0.05;
    bottom: -20px; left: 5%;
    animation-delay: 2s;
  }
  .hero-shape.s3 {
    width: 80px; height: 80px;
    background: var(--corail);
    opacity: 0.06;
    top: 30%; left: 8%;
    animation-delay: 4s;
  }
  .hero-shape.s4 {
    width: 200px; height: 200px;
    border: 2px solid rgba(255,255,255,0.06);
    background: transparent;
    top: 15%; right: 5%;
    animation-delay: 1s;
  }
  .hero-shape.s5 {
    width: 60px; height: 60px;
    background: white;
    opacity: 0.04;
    bottom: 20%; right: 15%;
    animation-delay: 3s;
  }
  .hero-shape.half {
    border-radius: 0 0 100px 100px;
    clip-path: inset(50% 0 0 0);
  }
  @keyframes shapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-18px) rotate(3deg); }
    66% { transform: translateY(12px) rotate(-2deg); }
  }
  @keyframes shapeFadeIn {
    from { opacity: 0; }
    to { opacity: var(--shape-opacity, 0.06); }
  }

  /* --- 2. WAVE SEPARATORS --- */
  .wave-separator {
    width: 100%;
    height: 48px;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
  }
  .wave-separator.white svg { fill: var(--blanc); }
  .wave-separator.grey svg { fill: var(--gris); }
  .wave-separator svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* --- 3. GRADIENT TITLES --- */
  .hero h1 {
    background: linear-gradient(135deg, #ffffff 0%, #E8D5FF 50%, var(--corail) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .page section h1 {
    background: linear-gradient(135deg, var(--violet) 0%, var(--corail) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
  }

  /* --- 4. SUBTLE PATTERN BACKGROUNDS --- */
  section.alt {
    background-image: radial-gradient(circle, var(--gris-bord) 1px, transparent 1px);
    background-size: 24px 24px;
  }

  /* --- 5. ICON ANIMATIONS ON SCROLL --- */
  .reveal.visible .module-icon,
  .reveal.visible .section-icon,
  .reveal.visible .chiffre-icon {
    animation: iconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  .reveal.visible .module-icon { animation-delay: 0.15s; }
  @keyframes iconPop {
    0% { transform: scale(0.5) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.1) rotate(3deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
  }

  /* --- 6. MODULE CONNECTION LINE --- */
  .grille-2 .module-card {
    position: relative;
  }
  .grille-2 .module-card::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    width: 2px;
    height: 14px;
    background: linear-gradient(to bottom, var(--violet-light), transparent);
  }
  .grille-2 .module-card:nth-last-child(-n+2)::after {
    display: none;
  }

  /* --- 7. PARALLAX HERO --- */
  @media (min-width: 700px) {
    .hero {
      background-attachment: fixed;
    }
  }

  /* --- PREFERS REDUCED MOTION --- */
  @media (prefers-reduced-motion: reduce) {
    .hero-shape,
    .reveal,
    .reveal.visible .module-icon,
    .reveal.visible .section-icon,
    .reveal.visible .chiffre-icon,
    .hero .surtitre,
    .hero h1,
    .hero .sous-titre,
    .hero .ctas,
    .hero .bandeau-credibilite,
    .badge-places {
      animation: none !important;
      transition: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
    main { animation: none !important; opacity: 1 !important; }
    ul.checks li { animation: none !important; opacity: 1 !important; }
  }