    :root {
        --navy: #0A1628;
        --navy2: #112240;
        --navy3: #1B3460;
        --blue: #2563EB;
        --blue-light: #DBEAFE;
        --blue-mid: #3B82F6;
        --orange: #EA580C;
        --orange-light: #FFF7ED;
        --orange-mid: #F97316;
        --gold: #D97706;
        --gold-light: #FEF3C7;
        --white: #FFFFFF;
        --off-white: #F8F9FC;
        --gray-100: #F1F5F9;
        --gray-200: #E2E8F0;
        --gray-300: #CBD5E1;
        --gray-400: #94A3B8;
        --gray-600: #475569;
        --gray-800: #1E293B;
        --text: #0F172A;
        --text-muted: #64748B;
    }

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

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--off-white);
        color: var(--text);
        line-height: 1.7;
    }

    a {
        color: var(--blue);
    }

    /* ─── PRINT / PDF ─── */
    @media print {
        .no-print {
            display: none !important;
        }

        body {
            background: white;
        }

        .page-break {
            page-break-before: always;
        }
    }

    /* ─── COVER ─── */
    .cover {
        background: var(--navy);
        color: white;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .cover-bg {
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 80% 60% at 70% 0%, rgba(37, 99, 235, 0.25) 0%, transparent 60%),
            radial-gradient(ellipse 50% 50% at 10% 100%, rgba(234, 88, 12, 0.15) 0%, transparent 60%);
    }

    .cover-grid {
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
    }

    .cover-content {
        position: relative;
        z-index: 2;
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 60px 80px;
        max-width: 960px;
        margin: 0 auto;
        width: 100%;
    }

    .cover-logo {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 80px;
    }

    .logo-mark {
        width: 52px;
        height: 52px;
        background: var(--orange);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Playfair Display', serif;
        font-size: 24px;
        font-weight: 900;
        color: white;
        letter-spacing: -1px;
    }

    .logo-text {
        font-size: 18px;
        font-weight: 600;
        color: white;
        letter-spacing: 0.5px;
    }

    .logo-sub {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .cover-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(37, 99, 235, 0.2);
        border: 1px solid rgba(37, 99, 235, 0.4);
        border-radius: 100px;
        padding: 6px 16px;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #93C5FD;
        margin-bottom: 32px;
        width: fit-content;
    }

    .cover-title {
        font-family: 'Playfair Display', serif;
        font-size: clamp(42px, 6vw, 72px);
        font-weight: 900;
        line-height: 1.08;
        margin-bottom: 12px;
        color: white;
    }

    .cover-title span {
        color: var(--orange-mid);
    }

    .cover-subtitle {
        font-size: 20px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 56px;
        max-width: 540px;
    }

    .cover-stats {
        display: flex;
        gap: 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        overflow: hidden;
        width: fit-content;
        margin-bottom: auto;
    }

    .stat-cell {
        padding: 24px 36px;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .stat-cell:last-child {
        border-right: none;
    }

    .stat-num {
        font-family: 'Playfair Display', serif;
        font-size: 36px;
        font-weight: 700;
        color: white;
        line-height: 1;
        margin-bottom: 4px;
    }

    .stat-num em {
        color: var(--orange-mid);
        font-style: normal;
    }

    .stat-label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.45);
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .cover-bottom {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding-top: 60px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 60px;
    }

    .cover-pillars {
        display: flex;
        gap: 12px;
    }

    .pillar {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 12px 20px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .pillar-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .cover-date {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.3);
    }

    /* ─── LAYOUT ─── */
    .container {
        max-width: 960px;
        margin: 0 auto;
        padding: 0 40px;
    }

    .section {
        padding: 80px 0;
    }

    .section-alt {
        background: white;
    }

    /* ─── SECTION HEADER ─── */
    .section-num {
        font-family: 'DM Mono', monospace;
        font-size: 11px;
        letter-spacing: 3px;
        color: var(--orange);
        text-transform: uppercase;
        margin-bottom: 12px;
        display: block;
    }

    .section-title {
        font-family: 'Playfair Display', serif;
        font-size: 38px;
        font-weight: 700;
        color: var(--navy);
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .section-lead {
        font-size: 17px;
        color: var(--text-muted);
        max-width: 640px;
        margin-bottom: 48px;
        font-weight: 300;
    }

    .divider {
        width: 48px;
        height: 3px;
        background: var(--orange);
        border-radius: 2px;
        margin-bottom: 48px;
    }

    /* ─── VISION / MISSION ─── */
    .vm-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .vm-card {
        background: var(--navy);
        border-radius: 20px;
        padding: 40px;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .vm-card::before {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.03);
    }

    .vm-card.orange {
        background: var(--orange);
    }

    .vm-icon {
        font-size: 32px;
        margin-bottom: 20px;
        display: block;
    }

    .vm-label {
        font-family: 'DM Mono', monospace;
        font-size: 11px;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 12px;
    }

    .vm-text {
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        font-weight: 700;
        line-height: 1.35;
        margin-bottom: 16px;
    }

    .vm-desc {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.7;
    }

    /* ─── OBJECTIFS ─── */
    .obj-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .obj-item {
        background: white;
        border: 1px solid var(--gray-200);
        border-radius: 14px;
        padding: 24px 28px;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        transition: box-shadow 0.2s, transform 0.2s;
    }

    .obj-item:hover {
        box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
        transform: translateY(-2px);
    }

    .obj-num {
        font-family: 'DM Mono', monospace;
        font-size: 13px;
        font-weight: 400;
        color: var(--blue);
        background: var(--blue-light);
        width: 36px;
        height: 36px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .obj-text {
        font-size: 15px;
        font-weight: 500;
        color: var(--navy);
        line-height: 1.5;
    }

    /* ─── PROFILS ─── */
    .profils-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .profil-card {
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--gray-200);
        background: white;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .profil-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    }

    .profil-header {
        padding: 28px 28px 20px;
        background: var(--navy);
        position: relative;
        overflow: hidden;
    }

    .profil-header.p2 {
        background: var(--orange);
    }

    .profil-header.p3 {
        background: var(--blue);
    }

    .profil-header::after {
        content: attr(data-label);
        position: absolute;
        bottom: -20px;
        right: -10px;
        font-family: 'Playfair Display', serif;
        font-size: 80px;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.07);
        line-height: 1;
    }

    .profil-num {
        font-family: 'DM Mono', monospace;
        font-size: 11px;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.5);
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .profil-title {
        font-size: 20px;
        font-weight: 600;
        color: white;
        margin-bottom: 6px;
    }

    .profil-tag {
        display: inline-block;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 100px;
        padding: 4px 12px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 500;
    }

    .profil-body {
        padding: 24px 28px;
    }

    .profil-desc {
        font-size: 14px;
        color: var(--text-muted);
        margin-bottom: 16px;
        line-height: 1.6;
    }

    .profil-example {
        background: var(--gray-100);
        border-radius: 10px;
        padding: 12px 16px;
        font-size: 13px;
        color: var(--gray-600);
        font-style: italic;
        margin-bottom: 16px;
    }

    .profil-duree {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        color: var(--navy);
    }

    .duree-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--orange);
    }

    .profil-livrable {
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 6px;
    }

    /* ─── CATALOGUE ─── */
    .catalogue-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .formation-card {
        background: white;
        border: 1px solid var(--gray-200);
        border-radius: 20px;
        overflow: hidden;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .formation-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    }

    .formation-top {
        padding: 24px 28px 20px;
        border-bottom: 1px solid var(--gray-100);
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .f-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
    }

    .f-code {
        font-family: 'DM Mono', monospace;
        font-size: 11px;
        letter-spacing: 2px;
        color: var(--text-muted);
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .f-title {
        font-size: 17px;
        font-weight: 600;
        color: var(--navy);
        line-height: 1.3;
    }

    .formation-body {
        padding: 20px 28px;
    }

    .f-section-label {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gray-400);
        margin-bottom: 10px;
    }

    .tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 20px;
    }

    .tag {
        background: var(--gray-100);
        border-radius: 6px;
        padding: 4px 10px;
        font-size: 12px;
        color: var(--gray-600);
        font-weight: 500;
    }

    .debouches {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .debouche {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: var(--text);
    }

    .debouche::before {
        content: '';
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--orange);
        flex-shrink: 0;
    }

    .f-profiles {
        display: flex;
        gap: 6px;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--gray-100);
    }

    .f-profile-badge {
        font-size: 11px;
        font-weight: 600;
        border-radius: 6px;
        padding: 3px 10px;
        letter-spacing: 0.5px;
    }

    .badge-p1 {
        background: #EFF6FF;
        color: #1D4ED8;
    }

    .badge-p2 {
        background: #FFF7ED;
        color: #C2410C;
    }

    .badge-p3 {
        background: #F0FDF4;
        color: #15803D;
    }

    /* ─── DUREE FORMATS ─── */
    .formats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .format-card {
        border-radius: 16px;
        padding: 28px 24px;
        position: relative;
        overflow: hidden;
        border: 1px solid var(--gray-200);
    }

    .format-card.highlight {
        background: var(--navy);
        border-color: var(--navy);
    }

    .format-label {
        font-family: 'DM Mono', monospace;
        font-size: 28px;
        font-weight: 400;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .format-card.highlight .format-label {
        color: white;
    }

    .format-public {
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 4px;
    }

    .format-card.highlight .format-public {
        color: rgba(255, 255, 255, 0.9);
    }

    .format-duree {
        font-size: 13px;
        color: var(--text-muted);
    }

    .format-card.highlight .format-duree {
        color: rgba(255, 255, 255, 0.5);
    }

    .format-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--orange);
    }

    /* ─── PÉDAGOGIE ─── */
    .peda-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start;
    }

    .ratio-visual {
        border-radius: 16px;
        overflow: hidden;
        height: 64px;
        display: flex;
        margin-bottom: 24px;
    }

    .ratio-pratique {
        background: var(--navy);
        flex: 80;
        display: flex;
        align-items: center;
        padding: 0 24px;
        font-size: 22px;
        font-weight: 700;
        color: white;
    }

    .ratio-theorie {
        background: var(--gray-200);
        flex: 20;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0 16px;
        font-size: 14px;
        font-weight: 600;
        color: var(--gray-600);
    }

    .peda-principles {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .peda-item {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        padding: 16px 20px;
        background: white;
        border-radius: 12px;
        border: 1px solid var(--gray-200);
    }

    .peda-icon {
        font-size: 20px;
        flex-shrink: 0;
    }

    .peda-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 2px;
    }

    .peda-desc {
        font-size: 13px;
        color: var(--text-muted);
    }

    /* ─── EXPOSITION ─── */
    .exposition-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }

    .expo-item {
        background: white;
        border: 1px solid var(--gray-200);
        border-radius: 14px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .expo-icon {
        font-size: 24px;
    }

    .expo-label {
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
    }

    .expo-desc {
        font-size: 13px;
        color: var(--text-muted);
    }

    .platforms-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .platform-pill {
        background: var(--navy);
        color: white;
        border-radius: 100px;
        padding: 8px 18px;
        font-size: 13px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .platform-pill.alt {
        background: transparent;
        border: 1.5px solid var(--gray-300);
        color: var(--navy);
    }

    /* ─── MODÈLE ÉCON ─── */
    .eco-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .eco-card {
        border-radius: 14px;
        padding: 24px;
        background: white;
        border: 1px solid var(--gray-200);
    }

    .eco-card.featured {
        background: var(--navy);
        border-color: var(--navy);
    }

    .eco-num {
        font-family: 'Playfair Display', serif;
        font-size: 32px;
        font-weight: 700;
        color: var(--orange);
        margin-bottom: 4px;
    }

    .eco-title {
        font-size: 14px;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 8px;
    }

    .eco-card.featured .eco-title {
        color: white;
    }

    .eco-desc {
        font-size: 13px;
        color: var(--text-muted);
    }

    .eco-card.featured .eco-desc {
        color: rgba(255, 255, 255, 0.5);
    }

    /* ─── RESSOURCES ─── */
    .ressources-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .res-section {}

    .res-title {
        font-size: 14px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .res-title::before {
        content: '';
        width: 20px;
        height: 3px;
        background: var(--orange);
        border-radius: 2px;
    }

    .res-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .res-item {
        display: flex;
        gap: 10px;
        align-items: center;
        padding: 10px 14px;
        background: white;
        border: 1px solid var(--gray-200);
        border-radius: 10px;
        font-size: 14px;
        color: var(--navy);
    }

    .res-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    /* ─── IMPACT ─── */
    .impact-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .impact-card {
        border-radius: 20px;
        padding: 32px 28px;
        border: 1px solid var(--gray-200);
        background: white;
        position: relative;
        overflow: hidden;
    }

    .impact-phase {
        font-family: 'DM Mono', monospace;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 16px;
        padding: 5px 12px;
        border-radius: 100px;
        display: inline-block;
        font-weight: 600;
    }

    .phase-ct {
        background: #EFF6FF;
        color: #1D4ED8;
    }

    .phase-mt {
        background: #FFF7ED;
        color: #C2410C;
    }

    .phase-lt {
        background: #F0FDF4;
        color: #15803D;
    }

    .impact-title {
        font-size: 18px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 12px;
    }

    .impact-items {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .impact-item {
        font-size: 14px;
        color: var(--text-muted);
        display: flex;
        gap: 8px;
    }

    .impact-item::before {
        content: '→';
        color: var(--orange);
        flex-shrink: 0;
    }

    /* ─── CONCLUSION ─── */
    .conclusion {
        background: var(--navy);
        color: white;
        padding: 80px 0;
    }

    .conclusion .section-title {
        color: white;
    }

    .conclusion .section-lead {
        color: rgba(255, 255, 255, 0.6);
    }

    .conclusion .divider {
        background: var(--orange);
    }

    .cta-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 48px;
    }

    .cta-item {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        padding: 20px 24px;
        display: flex;
        gap: 14px;
        align-items: flex-start;
    }

    .cta-step {
        font-family: 'DM Mono', monospace;
        background: var(--orange);
        color: white;
        width: 28px;
        height: 28px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        flex-shrink: 0;
        font-weight: 600;
    }

    .cta-text {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
    }

    .tagline {
        text-align: center;
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        font-weight: 700;
        color: white;
        padding: 40px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
    }

    .tagline span {
        color: var(--orange-mid);
    }

    /* ─── NAV ─── */
    .top-nav {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(10, 22, 40, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 0 40px;
    }

    .nav-inner {
        max-width: 960px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 56px;
    }

    .nav-logo {
        font-size: 15px;
        font-weight: 600;
        color: white;
    }

    .nav-links {
        display: flex;
        gap: 4px;
    }

    .nav-link {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        padding: 6px 14px;
        border-radius: 8px;
        transition: background 0.15s, color 0.15s;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.06);
        color: white;
    }

    .nav-print {
        font-size: 12px;
        background: var(--orange);
        color: white;
        border: none;
        cursor: pointer;
        padding: 7px 16px;
        border-radius: 8px;
        font-weight: 600;
        font-family: 'DM Sans', sans-serif;
    }

    /* ─── FOOTER ─── */
    .footer {
        background: var(--off-white);
        border-top: 1px solid var(--gray-200);
        padding: 32px 40px;
        text-align: center;
        font-size: 13px;
        color: var(--text-muted);
    }

    /* ─── RESSOURCES LIBRES TABLEAU ─── */
    .res-libre-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .res-libre-row {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: 16px;
        align-items: start;
        background: white;
        border: 1px solid var(--gray-200);
        border-radius: 14px;
        overflow: hidden;
    }

    .rl-left {
        background: var(--navy);
        padding: 18px 20px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .rl-filiere {
        font-size: 14px;
        font-weight: 600;
        color: white;
    }

    .rl-code {
        font-family: 'DM Mono', monospace;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.4);
        margin-top: 2px;
        letter-spacing: 1px;
    }

    .rl-right {
        padding: 16px 20px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .rl-link {
        background: var(--gray-100);
        border-radius: 8px;
        padding: 5px 12px;
        font-size: 12px;
        color: var(--navy);
        font-weight: 500;
        text-decoration: none;
        transition: background 0.15s;
        border: 1px solid var(--gray-200);
    }

    .rl-link:hover {
        background: var(--blue-light);
        border-color: var(--blue-mid);
        color: var(--blue);
    }

    .nav-print {
        text-decoration: none;
    }

/* =========================================================
   HEADER FIXE + MENU HAMBURGER MOBILE
   TwoF Academy
   À placer à la fin du fichier CSS
   ========================================================= */

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 88px;
}

body {
  overflow-x: hidden;
  padding-top: 72px;
}

/* Header fixe */
.top-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 999999 !important;
  background: rgba(10, 22, 40, 0.98) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 40px;
}

.nav-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav-logo {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.nav-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-print {
  background: var(--orange);
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  white-space: nowrap;
  transition: 0.2s ease;
}

.nav-print:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Input invisible du menu */
#menu-toggle {
  display: none;
}

/* Bouton hamburger caché sur desktop */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #fff;
  border-radius: 999px;
  transition: 0.25s ease;
}

/* Animation hamburger -> croix */
#menu-toggle:checked + .hamburger span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

#menu-toggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked + .hamburger span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* =========================================================
   RESPONSIVE GLOBAL
   ========================================================= */

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

@media (min-width: 1200px) {
  .container,
  .cover-content {
    max-width: 1180px;
  }

  .catalogue-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .top-nav {
    padding: 0 24px;
  }

  .container,
  .cover-content {
    max-width: 100%;
  }

  .cover-content {
    padding: 56px 48px;
  }

  .nav-link {
    padding: 7px 9px;
    font-size: 12px;
  }

  .profils-grid,
  .impact-grid,
  .eco-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 28px;
  }

  .section,
  .conclusion {
    padding: 64px 0;
  }

  .cover {
    min-height: auto;
  }

  .cover-content {
    padding: 48px 28px;
  }

  .cover-logo {
    margin-bottom: 56px;
  }

  .cover-title {
    font-size: clamp(42px, 8vw, 64px);
  }

  .cover-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .cover-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-cell {
    padding: 22px 14px;
  }

  .cover-bottom {
    align-items: flex-start;
    gap: 20px;
  }

  .cover-pillars {
    flex-wrap: wrap;
  }

  .vm-grid,
  .peda-split,
  .ressources-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-grid,
  .obj-grid,
  .exposition-grid,
  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .res-libre-row {
    grid-template-columns: 170px 1fr;
  }
}

/* Mobile : hamburger */
@media (max-width: 768px) {
  body {
    padding-top: 72px;
  }

  html {
    scroll-padding-top: 88px;
  }

  .top-nav {
    padding: 0 16px;
  }

  .nav-inner {
    height: 72px;
    min-height: 72px;
    flex-wrap: nowrap;
  }

  .nav-logo {
    font-size: 15px;
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
  }

  .nav-links,
  .nav-print {
    display: none;
  }

  #menu-toggle:checked ~ .nav-links {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    padding: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
  }

  #menu-toggle:checked ~ .nav-links .nav-link {
    width: 100%;
    text-align: left;
    padding: 13px 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
  }

  #menu-toggle:checked ~ .nav-print {
    display: block;
    position: fixed;
    top: 420px;
    left: 18px;
    right: 18px;
    width: auto;
    text-align: center;
    z-index: 1000000;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }

  .section,
  .conclusion {
    padding: 52px 0;
  }

  .section-title {
    font-size: 30px;
  }

  .section-lead {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .divider {
    margin-bottom: 32px;
  }

  .cover-content {
    padding: 36px 18px 44px;
  }

  .cover-logo {
    margin-bottom: 42px;
  }

  .logo-mark {
    width: 46px;
    height: 46px;
    font-size: 21px;
  }

  .cover-tag {
    font-size: 10px;
    letter-spacing: 1.4px;
    padding: 6px 12px;
  }

  .cover-title {
    font-size: clamp(38px, 13vw, 52px);
  }

  .cover-subtitle {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 32px;
  }

  .cover-stats {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 14px;
  }

  .stat-cell {
    padding: 18px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-cell:nth-child(2n) {
    border-right: none;
  }

  .stat-cell:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .stat-num {
    font-size: 30px;
  }

  .stat-label {
    font-size: 10px;
  }

  .cover-bottom {
    margin-top: 40px;
    padding-top: 32px;
    flex-direction: column;
  }

  .pillar {
    padding: 10px 14px;
    font-size: 12px;
  }

  .vm-grid,
  .obj-grid,
  .profils-grid,
  .formats-grid,
  .catalogue-grid,
  .peda-split,
  .exposition-grid,
  .eco-grid,
  .ressources-grid,
  .impact-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .vm-card,
  .profil-body,
  .formation-body,
  .impact-card,
  .tagline {
    padding: 24px;
  }

  .profil-header,
  .formation-top {
    padding: 22px 24px 18px;
  }

  .formation-top {
    gap: 12px;
  }

  .f-icon {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .f-title {
    font-size: 16px;
  }

  .f-profiles,
  .platforms-row,
  .tags {
    flex-wrap: wrap;
  }

  .ratio-visual {
    height: auto;
    min-height: 58px;
  }

  .ratio-pratique {
    font-size: 18px;
    padding: 16px;
  }

  .ratio-theorie {
    padding: 16px 10px;
  }

  .peda-item,
  .obj-item,
  .cta-item {
    padding: 16px;
  }

  .res-libre-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rl-left {
    min-height: auto;
    padding: 16px 18px;
  }

  .rl-right {
    padding: 16px 18px;
  }

  .rl-link,
  .platform-pill {
    font-size: 12px;
  }

  .tagline {
    font-size: 23px;
  }

  .footer {
    padding: 28px 18px;
  }
}

@media (max-width: 420px) {
  .section-title {
    font-size: 27px;
  }

  .cover-title {
    font-size: 36px;
  }

  .cover-subtitle {
    font-size: 15px;
  }

  .cover-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat-cell {
    padding: 16px 8px;
  }

  .stat-num {
    font-size: 27px;
  }

  .obj-item,
  .peda-item,
  .cta-item {
    gap: 12px;
  }

  .obj-num,
  .cta-step {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .formation-top {
    align-items: flex-start;
  }

  .profil-header::after {
    font-size: 64px;
  }

  .platform-pill,
  .rl-link,
  .tag {
    width: fit-content;
  }
}

    /* HEADER FIXE + MENU HAMBURGER MOBILE */
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 90px;
    }

    body {
      padding-top: 72px;
    }

    .top-nav {
      position: fixed !important;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      z-index: 999999 !important;
      background: rgba(10, 22, 40, 0.98) !important;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-inner {
      position: relative;
      max-width: 1180px;
      min-height: 72px;
      height: 72px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    #menu-toggle {
      display: none;
    }

    .hamburger {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hamburger span {
      width: 22px;
      height: 2px;
      display: block;
      background: #fff;
      border-radius: 999px;
      transition: transform .2s ease, opacity .2s ease;
    }

    @media (max-width: 768px) {
      body {
        padding-top: 72px;
      }

      .nav-inner {
        height: 72px;
        min-height: 72px;
        padding: 0 16px;
        flex-wrap: nowrap !important;
      }

      .hamburger {
        display: flex;
        order: 3;
      }

      .nav-logo {
        order: 1;
      }

      .nav-links,
      .nav-print {
        display: none !important;
      }

      #menu-toggle:checked + .hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }

      #menu-toggle:checked + .hamburger span:nth-child(2) {
        opacity: 0;
      }

      #menu-toggle:checked + .hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      #menu-toggle:checked ~ .nav-links {
        display: flex !important;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
        padding: 18px 16px 94px;
        background: rgba(10, 22, 40, 0.98);
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
      }

      #menu-toggle:checked ~ .nav-links .nav-link {
        width: 100%;
        display: block;
        padding: 13px 16px;
        color: #fff;
        text-align: left;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 10px;
      }

      #menu-toggle:checked ~ .nav-print {
        display: block !important;
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 18px;
        width: auto;
        padding: 13px 18px;
        text-align: center;
        color: #fff !important;
        background: var(--orange);
        border-radius: 12px;
        z-index: 1000000;
      }
    }
