/* ==========================================================================
   STAND-UP ACADEMY — Page Formations / Carte de l'école
   File: ecole-figma.css
   Note: Complète home-figma.css (qui fournit nav, footer, btn, container).
   Reference Figma: ZoVLyHTGe31oZGn7rbEoq0 (node 336:235)
   Palette : orange / brown / cream — alignée sur la home.
   ========================================================================== */

/* ---------- Tokens locaux (palette ecole) ---------- */
:root {
    --ecole-bg-1: linear-gradient(-42deg, #1a0a00 40%, #2b1200 100%);
    --ecole-bg-2: linear-gradient(134deg, #2b1200 0%, #1a0a00 60%);
    --ecole-bg-3: linear-gradient(165deg, #2b1200 0%, #150700 100%);
    --ecole-glass-bg: linear-gradient(168deg, rgba(170, 78, 0, 0.18) 0%, rgba(85, 35, 0, 0.22) 100%);
    --ecole-glass-strong: linear-gradient(160deg, rgba(240, 122, 26, 0.18) 0%, rgba(85, 35, 0, 0.32) 100%);
    --ecole-glass-shadow: 4px 8px 22px rgba(0, 0, 0, 0.35);
    --ecole-orange-soft: rgba(240, 122, 26, 0.10);
    --ecole-orange-line: rgba(240, 122, 26, 0.32);
    --ecole-orange-line-strong: rgba(240, 122, 26, 0.55);
    --ecole-cream-soft: rgba(240, 236, 228, 0.85);
    --ecole-cream-dim: rgba(240, 236, 228, 0.65);
    --ecole-cream-faint: rgba(240, 236, 228, 0.45);
}

/* ==========================================================================
   PAGE BASE — fond global et utilitaires
   ========================================================================== */
body.ecole-page {
    background:
        radial-gradient(ellipse 1200px 800px at 80% -10%, rgba(240, 122, 26, 0.07), transparent 60%),
        radial-gradient(ellipse 900px 600px at 20% 110%, rgba(240, 122, 26, 0.05), transparent 60%),
        var(--brown-darker);
}

.ecole-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Reveal animation */
.ecole-reveal {
    opacity: 0;
    transform: translateY(48px);
    transition:
        opacity 0.85s cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: opacity, transform;
}
.ecole-reveal.is-revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .ecole-reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   HERO — La carte de l'école
   ========================================================================== */
.ecole-hero {
    position: relative;
    min-height: 820px;
    height: 100vh;
    max-height: 1100px;
    padding: 140px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 760px 420px at 50% 110%, rgba(240, 122, 26, 0.18) 0%, transparent 65%),
        var(--brown-darker);
    display: flex;
    align-items: center;
}

.ecole-hero-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 3px 3px;
    mix-blend-mode: overlay;
    opacity: 0.4;
}

/* Hero orbs — 4 anneaux concentriques orange ancrés en bas, comme la home */
.ecole-hero-orb {
    position: absolute;
    pointer-events: none;
    aspect-ratio: 1;
    left: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    --ecole-orb-y: 0px;
    --ecole-orb-x: 0px;
    --ecole-orb-scale: 1;
    --ecole-orb-rotate: 0deg;
    transform:
        translate(calc(-50% + var(--ecole-orb-x)), calc(-50% + var(--ecole-orb-y)))
        scale(var(--ecole-orb-scale))
        rotate(var(--ecole-orb-rotate));
    transition: transform 0.18s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: transform;
}
.ecole-hero-orb.h29 {
    background-image: url('assets/figma/hero-ellipse-29.svg');
    width: 167%;
    top: 100%;
    animation: ecoleOrbBreathe 14s ease-in-out infinite;
}
.ecole-hero-orb.h27 {
    background-image: url('assets/figma/hero-ellipse-27.svg');
    width: 107%;
    top: 112%;
    animation: ecoleOrbBreathe 11s ease-in-out infinite reverse;
}
.ecole-hero-orb.h26 {
    background-image: url('assets/figma/hero-ellipse-26.svg');
    width: 77%;
    top: 108.5%;
    animation: ecoleOrbBreathe 9s ease-in-out infinite;
    animation-delay: -3s;
}
.ecole-hero-orb.h28 {
    background-image: url('assets/figma/hero-ellipse-28.svg');
    width: 40%;
    top: 104.5%;
    animation: ecoleOrbBreathe 7s ease-in-out infinite reverse;
    animation-delay: -1.5s;
}

@keyframes ecoleOrbBreathe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.78; }
}

@media (prefers-reduced-motion: reduce) {
    .ecole-hero-orb { animation: none !important; }
}

.ecole-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.ecole-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 100px;
    background: var(--ecole-glass-bg);
    backdrop-filter: blur(11.5px);
    -webkit-backdrop-filter: blur(11.5px);
    border: 1px solid var(--ecole-orange-line);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 32px;
}
.ecole-hero-eyebrow svg {
    width: 16px;
    height: 18px;
    color: var(--orange);
}

.ecole-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.86;
    margin: 0 0 28px;
    color: var(--cream);
    letter-spacing: 0.01em;
    text-shadow: var(--text-shadow);
}
.ecole-h1-main {
    display: block;
    font-size: clamp(3.6rem, 9vw, 7.5rem);
    font-weight: 400;
}
.ecole-h1-sub {
    display: block;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    color: var(--ecole-cream-soft);
    margin-top: 4px;
}
.ecole-h1-sub strong {
    background: var(--orange-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 400;
}

.ecole-hero-desc {
    max-width: 640px;
    margin: 0 auto 36px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    font-style: italic;
    color: var(--ecole-cream-soft);
    line-height: 1.65;
}
.ecole-hero-desc strong {
    color: var(--orange);
    font-weight: 700;
    font-style: normal;
}

.ecole-hero-flow {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
    padding: 12px 24px;
    border-radius: 100px;
    background: var(--ecole-glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--ecole-orange-line);
}
.ecole-flow-step {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--ecole-cream-soft);
}
.ecole-flow-step strong {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--orange-grad);
    color: var(--brown-darker);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
}
.ecole-flow-arrow {
    color: var(--ecole-cream-faint);
    font-size: 0.85rem;
}

/* Hero CTA — boutons gauche/droite + scroll au centre */
.ecole-hero-cta {
    position: absolute;
    bottom: clamp(28px, 4vw, 56px);
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 6vw, 80px);
    pointer-events: none;
}
.ecole-hero-cta > * { pointer-events: auto; }

.ecole-hero-scroll {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--ecole-cream-faint);
}
.ecole-hero-scroll-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.ecole-hero-scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
}

/* Boutons */
.ecole-btn-orange,
.ecole-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    white-space: nowrap;
}
.ecole-btn-orange {
    background: var(--orange-grad);
    color: var(--brown-darker);
    box-shadow: var(--orange-glow-soft);
    border: 1px solid transparent;
}
.ecole-btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(240, 122, 26, 0.4), var(--orange-glow);
}
.ecole-btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--ecole-orange-line);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.ecole-btn-ghost:hover {
    transform: translateY(-2px);
    border-color: var(--orange);
    background: var(--orange-soft);
}

@media (max-width: 880px) {
    .ecole-hero-cta {
        flex-direction: column;
        gap: 14px;
        padding: 0 24px;
        bottom: 28px;
    }
    .ecole-hero-scroll { display: none; }
    .ecole-hero-cta-left,
    .ecole-hero-cta-right { width: 100%; }
}

@media (max-width: 600px) {
    .ecole-hero { min-height: 720px; padding: 120px 0 70px; }
    .ecole-hero-eyebrow { font-size: 0.65rem; padding: 6px 14px; }
    .ecole-hero-flow { padding: 10px 18px; gap: 8px 10px; }
    .ecole-flow-step { font-size: 0.7rem; }
    .ecole-flow-step strong { width: 22px; height: 22px; font-size: 0.85rem; }
}

/* ==========================================================================
   SECTIONS — base et orbes décoratifs
   ========================================================================== */
.ecole-section {
    position: relative;
    padding: 130px 0 140px;
    background: var(--ecole-bg-1);
    border-top: 1px solid var(--orange-border-2);
    overflow: hidden;
    isolation: isolate;
}
.ecole-section.ecole-section-alt {
    background: var(--ecole-bg-2);
}

/* Orbes décoratifs — réutilisent les sec-ellipse-XX.svg de la home */
.ecole-section-glow {
    position: absolute;
    pointer-events: none;
    aspect-ratio: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 0;
    transform: translate(-50%, calc(-50% + var(--orb-offset, 0px)));
    will-change: transform;
}
.ecole-section-glow.left {
    background-image: url('assets/figma/sec-ellipse-34.svg');
    width: 130%;
    left: -10%;
    top: 30%;
}
.ecole-section-glow.right {
    background-image: url('assets/figma/sec-ellipse-35.svg');
    width: 110%;
    left: 90%;
    top: 60%;
}
.ecole-section-glow.top-left {
    background-image: url('assets/figma/sec-ellipse-30.svg');
    width: 90%;
    left: 0%;
    top: 20%;
}
.ecole-section-glow.top-right {
    background-image: url('assets/figma/sec-ellipse-31.svg');
    width: 95%;
    left: 100%;
    top: 25%;
}
.ecole-section-glow.bottom-right {
    background-image: url('assets/figma/sec-ellipse-32.svg');
    width: 100%;
    left: 95%;
    top: 95%;
}
.ecole-section-glow.bottom-left {
    background-image: url('assets/figma/sec-ellipse-33.svg');
    width: 100%;
    left: 5%;
    top: 95%;
}

/* En-tête de section */
.ecole-section-header {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.ecole-pill-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--orange-soft);
    border: 1px solid var(--orange-border);
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 22px;
}
.ecole-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    line-height: 0.96;
    letter-spacing: 0.01em;
    color: var(--cream);
    margin: 0 0 22px;
}
.ecole-section-title .accent {
    background: var(--orange-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 400;
}
.ecole-section-desc {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: var(--ecole-cream-soft);
    line-height: 1.7;
    margin: 0;
}
.ecole-section-desc strong {
    color: var(--cream);
    font-weight: 700;
    font-style: normal;
}
.ecole-section-desc em {
    color: var(--orange);
    font-style: italic;
}

/* Liens « amateur / semi-pro / pro » sous le titre L'école (index) */
.ecole-section-desc .ecole-desc-link,
.ecole-section-desc .ecole-desc-link:visited {
    font-family: 'Bebas Neue', sans-serif;
    font-style: normal;
    font-size: clamp(1.05rem, 1.45vw, 1.2rem);
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    color: var(--orange);
    -webkit-text-fill-color: currentColor;
    border-bottom: 2px solid rgba(240, 122, 26, 0.75);
    padding-bottom: 2px;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease,
        -webkit-text-fill-color 0.25s ease;
}

.ecole-section-desc .ecole-desc-link:hover,
.ecole-section-desc .ecole-desc-link:focus-visible:hover {
    color: var(--cream);
    -webkit-text-fill-color: var(--cream);
    border-bottom-color: rgba(240, 236, 228, 0.85);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.ecole-section-desc .ecole-desc-link:active {
    color: #fff;
    -webkit-text-fill-color: #fff;
    border-bottom-color: #fff;
    transform: translateY(0);
}

.ecole-section-desc .ecole-desc-link:focus-visible {
    outline: 2px solid var(--orange, #f07a1a);
    outline-offset: 4px;
}

/* ==========================================================================
   PARCOURS — Grille A / B / C
   ========================================================================== */
.ecole-parcours-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 24px;
    position: relative;
    z-index: 2;
    perspective: 1400px;
}

.ecole-parcours {
    --card-rx: 0deg;
    --card-ry: 0deg;
    position: relative;
    padding: 36px 32px 30px;
    border-radius: 22px;
    background: var(--ecole-glass-bg);
    backdrop-filter: blur(11.5px);
    -webkit-backdrop-filter: blur(11.5px);
    border: 1px solid var(--orange-border-2);
    box-shadow: var(--ecole-glass-shadow);
    display: flex;
    flex-direction: column;
    transition:
        transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
        box-shadow 0.5s ease,
        border-color 0.5s ease;
    transform-style: preserve-3d;
    transform: rotateX(var(--card-rx)) rotateY(var(--card-ry));
}
.ecole-parcours:hover {
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--orange-border);
    border-color: var(--orange-border);
}

.ecole-parcours-featured {
    background: var(--ecole-glass-strong);
    border: 1px solid var(--ecole-orange-line);
    box-shadow:
        var(--ecole-glass-shadow),
        0 0 0 1px var(--orange-border) inset,
        0 0 60px rgba(240, 122, 26, 0.18);
}
.ecole-parcours-featured::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(240, 122, 26, 0.4), transparent 50%, rgba(240, 122, 26, 0.2));
    opacity: 0.4;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.ecole-parcours-ribbon {
    position: absolute;
    top: 14px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 100px;
    background: var(--orange-grad);
    color: var(--brown-darker);
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: var(--orange-glow);
}
.ecole-parcours-ribbon-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brown-darker);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}

.ecole-parcours-tag {
    display: inline-block;
    width: max-content;
    padding: 5px 12px;
    border-radius: 100px;
    background: var(--ecole-orange-soft);
    border: 1px solid var(--orange-border-2);
    font-family: 'Inter', sans-serif;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 22px;
}
.ecole-parcours-tag.tag-pro {
    background: var(--orange-grad);
    color: var(--brown-darker);
    border-color: transparent;
}
.ecole-parcours-tag.tag-semipro {
    background: var(--purple-tag-bg);
    border-color: var(--purple-tag-border);
    color: var(--purple-tag);
}
.ecole-parcours-tag.tag-decouverte {
    background: var(--yellow-tag-bg);
    border-color: var(--yellow-tag-border);
    color: var(--yellow-tag);
}

.ecole-parcours-h {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    line-height: 0.94;
    letter-spacing: 0.01em;
    margin: 0 0 18px;
    color: var(--cream);
}

.ecole-parcours-goal {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--ecole-cream-soft);
    margin: 0 0 22px;
    min-height: 6.4em;
}

.ecole-parcours-meta {
    list-style: none;
    margin: 0 0 18px;
    padding: 18px 0;
    border-top: 1px solid var(--orange-border-2);
    border-bottom: 1px solid var(--orange-border-2);
    display: grid;
    gap: 10px;
}
.ecole-parcours-meta li {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 14px;
    align-items: baseline;
    font-size: 0.82rem;
}
.ecole-parcours-meta span {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ecole-cream-faint);
}
.ecole-parcours-meta strong {
    color: var(--cream);
    font-weight: 600;
    font-size: 0.86rem;
}

.ecole-parcours-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 22px;
}
.ecole-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(240, 236, 228, 0.05);
    border: 1px solid rgba(240, 236, 228, 0.12);
    font-family: 'Inter', sans-serif;
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--ecole-cream-soft);
}
.ecole-badge-strong {
    background: var(--orange-soft);
    border-color: var(--orange-border-2);
    color: var(--orange);
}
.ecole-badge-warn {
    background: rgba(255, 49, 49, 0.08);
    border-color: rgba(255, 49, 49, 0.22);
    color: #ff7a7a;
}

.ecole-parcours-cta {
    margin-top: auto;
    align-self: flex-start;
}
.ecole-parcours-foot {
    margin: 14px 0 0;
    font-size: 0.72rem;
    color: var(--ecole-cream-faint);
    line-height: 1.45;
}

@media (max-width: 1080px) {
    .ecole-parcours-grid { grid-template-columns: 1fr 1fr; }
    .ecole-parcours-featured { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
    .ecole-parcours-grid { grid-template-columns: 1fr; gap: 18px; }
    .ecole-parcours-featured { grid-column: auto; }
    .ecole-parcours { padding: 28px 22px 24px; }
    .ecole-parcours-goal { min-height: 0; }
}

/* ==========================================================================
   CERTIFICATION RS6554
   ========================================================================== */
.ecole-cert-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ecole-cert-header { text-align: left; max-width: none; margin: 0; }
.ecole-cert-header .ecole-section-title { text-align: left; }

.ecole-cert-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}
.ecole-cert-meta-item {
    display: inline-flex;
    flex-direction: column;
    padding: 12px 18px;
    border-radius: 14px;
    background: var(--ecole-orange-soft);
    border: 1px solid var(--orange-border-2);
    min-width: 110px;
}
.ecole-cert-meta-item strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.65rem;
    color: var(--orange);
    line-height: 1;
    letter-spacing: 0.02em;
}
.ecole-cert-meta-item span:not(strong) {
    margin-top: 4px;
    font-size: 0.7rem;
    color: var(--ecole-cream-soft);
    letter-spacing: 0.04em;
}

.ecole-cert-card {
    position: relative;
    padding: 38px 36px 32px;
    border-radius: 24px;
    background: var(--ecole-glass-strong);
    backdrop-filter: blur(11.5px);
    -webkit-backdrop-filter: blur(11.5px);
    border: 1px solid var(--ecole-orange-line);
    box-shadow:
        var(--ecole-glass-shadow),
        0 0 60px rgba(240, 122, 26, 0.12);
}
.ecole-cert-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--cream);
    margin: 0 0 22px;
    text-transform: uppercase;
}

.ecole-cert-list {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: grid;
    gap: 16px;
}
.ecole-cert-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
}
.ecole-cert-num {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--orange-grad);
    color: var(--brown-darker);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--orange-glow);
}
.ecole-cert-list strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--cream);
    margin-bottom: 4px;
    font-weight: 600;
}
.ecole-cert-list li > div {
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--ecole-cream-soft);
}

.ecole-cert-quote {
    margin: 22px 0 0;
    padding-top: 22px;
    border-top: 1px solid var(--orange-border-2);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--ecole-cream-soft);
}
.ecole-cert-quote strong {
    color: var(--orange);
    font-style: normal;
    font-weight: 700;
}

.ecole-star {
    color: var(--orange);
    font-style: normal;
    font-size: 0.9em;
}

@media (max-width: 1000px) {
    .ecole-cert-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
    .ecole-cert-card { padding: 28px 22px; }
    .ecole-cert-list li { grid-template-columns: 40px 1fr; gap: 12px; }
    .ecole-cert-num { width: 36px; height: 36px; font-size: 1rem; }
}

/* ==========================================================================
   AXES PÉDAGOGIQUES — 5 cartes numérotées
   ========================================================================== */
.ecole-axes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    position: relative;
    z-index: 2;
    perspective: 1200px;
}
.ecole-axis {
    --card-rx: 0deg;
    --card-ry: 0deg;
    position: relative;
    padding: 28px 22px 24px;
    border-radius: 18px;
    background: var(--ecole-glass-bg);
    backdrop-filter: blur(11.5px);
    -webkit-backdrop-filter: blur(11.5px);
    border: 1px solid var(--orange-border-2);
    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    transform: rotateX(var(--card-rx)) rotateY(var(--card-ry));
}
.ecole-axis:hover {
    border-color: var(--ecole-orange-line);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}
.ecole-axis-num {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--orange);
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    text-shadow: 0 0 14px rgba(240, 122, 26, 0.4);
}
.ecole-axis h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cream);
    margin: 0 0 10px;
    line-height: 1.3;
    letter-spacing: 0.01em;
}
.ecole-axis p {
    font-size: 0.82rem;
    color: var(--ecole-cream-soft);
    line-height: 1.55;
    margin: 0;
}
.ecole-axis-diff {
    background: linear-gradient(168deg, rgba(240, 122, 26, 0.15) 0%, rgba(85, 35, 0, 0.25) 100%);
    border-color: var(--ecole-orange-line);
}
.ecole-axis-diff::before {
    content: "Différenciateur";
    position: absolute;
    top: -10px;
    left: 18px;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--orange-grad);
    color: var(--brown-darker);
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: var(--orange-glow);
}

.ecole-axes-note {
    margin-top: 32px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--ecole-cream-dim);
    line-height: 1.7;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}
.ecole-axes-note em {
    color: var(--orange);
    font-style: italic;
}

@media (max-width: 1080px) {
    .ecole-axes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
    .ecole-axes-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .ecole-axis { padding: 22px 18px 20px; }
    .ecole-axis-num { font-size: 2rem; }
}
@media (max-width: 480px) {
    .ecole-axes-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   TABLEAU AXES × PARCOURS
   ========================================================================== */
.ecole-table-wrap {
    position: relative;
    z-index: 2;
    overflow-x: auto;
    border-radius: 22px;
    border: 1px solid var(--orange-border-2);
    background: var(--ecole-glass-bg);
    backdrop-filter: blur(11.5px);
    -webkit-backdrop-filter: blur(11.5px);
    box-shadow: var(--ecole-glass-shadow);
}
.ecole-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    color: var(--cream);
}
.ecole-table thead {
    background: linear-gradient(180deg, rgba(240, 122, 26, 0.10), rgba(240, 122, 26, 0.02));
}
.ecole-table th,
.ecole-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid var(--orange-border-2);
    vertical-align: middle;
}
.ecole-table thead th {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orange);
    line-height: 1.2;
}
.ecole-table thead th span {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--cream);
    letter-spacing: 0.04em;
    margin-bottom: 2px;
    text-transform: none;
    font-weight: 400;
    line-height: 1;
}
.ecole-table tbody th {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cream);
}
.ecole-table tr:last-child th,
.ecole-table tr:last-child td { border-bottom: none; }
.ecole-table tbody tr {
    transition: background 0.25s ease;
}
.ecole-table tbody tr:hover {
    background: rgba(240, 122, 26, 0.04);
}

.ecole-cell-empty {
    color: var(--ecole-cream-faint);
    font-size: 1.05rem;
}
.ecole-cell-1 { color: var(--ecole-cream-dim); font-weight: 600; letter-spacing: 0.05em; }
.ecole-cell-2 { color: var(--orange-1); font-weight: 700; letter-spacing: 0.05em; }
.ecole-cell-3 {
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(240, 122, 26, 0.5);
}
.ecole-cell-ref {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    background: var(--ecole-orange-soft);
    border: 1px solid var(--orange-border-2);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--ecole-cream-soft);
    letter-spacing: 0.04em;
}

@media (max-width: 700px) {
    .ecole-table th,
    .ecole-table td { padding: 14px 16px; }
    .ecole-table thead th span { font-size: 1.3rem; }
}

/* ==========================================================================
   MODULES — Grille (D & E)
   ========================================================================== */
.ecole-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
    position: relative;
    z-index: 2;
    perspective: 1200px;
}
.ecole-module {
    --card-rx: 0deg;
    --card-ry: 0deg;
    position: relative;
    padding: 26px 22px 22px;
    border-radius: 18px;
    background: var(--ecole-glass-bg);
    backdrop-filter: blur(11.5px);
    -webkit-backdrop-filter: blur(11.5px);
    border: 1px solid var(--orange-border-2);
    transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    transform: rotateX(var(--card-rx)) rotateY(var(--card-ry));
    display: flex;
    flex-direction: column;
}
.ecole-module:hover {
    border-color: var(--ecole-orange-line);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.ecole-module-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 28px;
    border-radius: 6px;
    background: var(--orange-grad);
    color: var(--brown-darker);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    box-shadow: var(--orange-glow);
}
.ecole-module h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--cream);
    margin: 0 0 8px;
    line-height: 1.3;
}
.ecole-module p {
    font-size: 0.83rem;
    color: var(--ecole-cream-soft);
    line-height: 1.55;
    margin: 0 0 14px;
    flex-grow: 1;
}
.ecole-module-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--ecole-cream-faint);
    text-transform: uppercase;
    padding-top: 12px;
    border-top: 1px solid var(--orange-border-2);
}
.ecole-module-e .ecole-module-code {
    background: linear-gradient(135deg, var(--purple-tag), #9d3fc4);
    color: var(--white);
}

/* ==========================================================================
   QG — QG cross-link card
   ========================================================================== */
.ecole-qg-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    padding: 56px 60px;
    border-radius: 28px;
    background: var(--ecole-glass-strong);
    backdrop-filter: blur(11.5px);
    -webkit-backdrop-filter: blur(11.5px);
    border: 1px solid var(--ecole-orange-line);
    box-shadow:
        var(--ecole-glass-shadow),
        0 0 80px rgba(240, 122, 26, 0.15);
    overflow: hidden;
}
.ecole-qg-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(240, 122, 26, 0.5), transparent 50%, rgba(240, 122, 26, 0.2));
    opacity: 0.35;
    pointer-events: none;
    mix-blend-mode: overlay;
}
.ecole-qg-text { position: relative; z-index: 2; }
.ecole-qg-text .ecole-section-title { text-align: left; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.ecole-qg-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ecole-cream-soft);
    margin: 0 0 28px;
}
.ecole-qg-text strong { color: var(--cream); font-weight: 600; }

.ecole-qg-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.ecole-qg-stat {
    display: flex;
    flex-direction: column;
    padding: 22px 26px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--orange-border-2);
}
.ecole-qg-stat strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    color: var(--orange);
    line-height: 1;
    letter-spacing: 0.02em;
    text-shadow: 0 0 18px rgba(240, 122, 26, 0.4);
}
.ecole-qg-stat span {
    margin-top: 6px;
    font-size: 0.78rem;
    color: var(--ecole-cream-soft);
    letter-spacing: 0.04em;
}

@media (max-width: 900px) {
    .ecole-qg-card { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px; }
}

/* ==========================================================================
   RESPONSIVE — adjustments
   ========================================================================== */
@media (max-width: 800px) {
    .ecole-section { padding: 90px 0 100px; }
    .ecole-section-header { margin-bottom: 44px; }
    .ecole-cert-grid { gap: 32px; }
    .ecole-modules-grid { gap: 14px; }
}
@media (max-width: 480px) {
    .ecole-section { padding: 70px 0 80px; }
}
