: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: 550px;
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%;
    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;
  }
}

* { 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;
    }

    /* ─── LABEL DE SECTION ─── */
    .section-tag {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--orange);
      display: block;
      margin-bottom: 10px;
    }

    /* ======================================================
       AMÉLIORATION 1 — HERO COVER RENFORCÉ
    ====================================================== */
    .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.28) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 100%, rgba(234,88,12,0.18) 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;
    }

    /* Accent bar diagonal */
    .cover-accent {
      position: absolute;
      top: 0;
      right: 0;
      width: 3px;
      height: 100%;
      background: linear-gradient(to bottom, var(--orange) 0%, transparent 70%);
      opacity: 0.6;
    }

    .cover-content {
      position: relative;
      z-index: 2;
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 52px 80px 64px;
      max-width: 1000px;
      margin: 0 auto;
      width: 100%;
    }

    .cover-logo {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 64px;
    }

    .logo-mark {
      width: 48px;
      height: 48px;
      background: var(--orange);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 900;
      color: white;
      letter-spacing: -1px;
      position: relative;
    }

    .logo-text { font-size: 17px; font-weight: 600; color: white; }
    .logo-sub {
      font-size: 11px;
      color: rgba(255,255,255,0.45);
      letter-spacing: 3px;
      text-transform: uppercase;
    }

    /* Badge session ouverte — NOUVEAU : plus prominent */
    .cover-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(234,88,12,0.15);
      border: 1px solid rgba(234,88,12,0.4);
      border-radius: 100px;
      padding: 7px 18px;
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #FCA97A;
      margin-bottom: 28px;
      width: fit-content;
      font-weight: 600;
    }

    .cover-tag .dot-pulse {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--orange-mid);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    /* Titre — AMÉLIORÉ */
    .cover-eyebrow {
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 14px;
    }

    .cover-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(48px, 6.5vw, 78px);
      font-weight: 900;
      line-height: 1.06;
      margin-bottom: 10px;
      color: white;
    }

    .cover-title em {
      color: var(--orange-mid);
      font-style: normal;
      position: relative;
    }

    /* Sous-titre AMÉLIORÉ — plus court, plus punch */
    .cover-subtitle {
      font-size: 19px;
      font-weight: 300;
      color: rgba(255,255,255,0.55);
      margin-bottom: 40px;
      max-width: 500px;
      line-height: 1.6;
    }

    .cover-subtitle strong {
      color: rgba(255,255,255,0.85);
      font-weight: 500;
    }

    /* NOUVEAU : CTA doubles dans le hero */
    .cover-cta-row {
      display: flex;
      gap: 14px;
      margin-bottom: 52px;
      align-items: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--orange);
      color: white;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 12px;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, opacity 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Sans', sans-serif;
    }

    .btn-primary:hover { transform: translateY(-2px); opacity: 0.93; }

    .btn-primary svg { width: 16px; height: 16px; }

    .btn-ghost {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: 13px 24px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.15);
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Sans', sans-serif;
      background: transparent;
    }

    .btn-ghost:hover { background: rgba(255,255,255,0.07); color: white; }

    /* Stats — AMÉLIORÉES : layout en ligne avec séparateurs */
    .cover-stats {
      display: flex;
      gap: 0;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 16px;
      overflow: hidden;
      width: fit-content;
      margin-bottom: auto;
      background: rgba(255,255,255,0.03);
    }

    .stat-cell {
      padding: 22px 36px;
      border-right: 1px solid rgba(255,255,255,0.09);
      text-align: center;
      position: relative;
    }

    .stat-cell:last-child { border-right: none; }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 34px;
      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: 11px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; }

    /* Pilliers bottom */
    .cover-bottom {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding-top: 48px;
      border-top: 1px solid rgba(255,255,255,0.07);
      margin-top: 56px;
    }

    .cover-pillars { display: flex; gap: 10px; }

    .pillar {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 10px;
      padding: 10px 18px;
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .pillar-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

    /* NOUVEAU : indicateur filières */
    .cover-filieres {
      font-size: 12px;
      color: rgba(255,255,255,0.3);
      text-align: right;
      line-height: 1.8;
    }

    .cover-filieres strong {
      color: rgba(255,255,255,0.6);
      font-size: 13px;
      display: block;
      margin-bottom: 2px;
    }


    /* ======================================================
       AMÉLIORATION 2 — SECTION COUNTDOWN (NOUVELLE)
    ====================================================== */
    .countdown-section {
      background: var(--orange);
      padding: 0;
      overflow: hidden;
      position: relative;
    }

    .countdown-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .countdown-inner {
      position: relative;
      z-index: 2;
      max-width: 1000px;
      margin: 0 auto;
      padding: 56px 80px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 48px;
      align-items: center;
    }

    .countdown-left {}

    .countdown-label {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 10px;
    }

    .countdown-title {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 900;
      color: white;
      line-height: 1.15;
      margin-bottom: 8px;
    }

    .countdown-subtitle {
      font-size: 15px;
      color: rgba(255,255,255,0.7);
      margin-bottom: 24px;
    }

    .countdown-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: white;
      color: var(--orange);
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      padding: 12px 24px;
      border-radius: 10px;
      transition: transform 0.2s;
    }

    .countdown-cta:hover { transform: translateY(-2px); }

    /* Les blocs de temps */
    .countdown-clock {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .clock-block {
      background: rgba(0,0,0,0.18);
      border-radius: 14px;
      padding: 20px 20px 16px;
      text-align: center;
      min-width: 82px;
      border: 1px solid rgba(255,255,255,0.15);
      position: relative;
    }

    .clock-num {
      font-family: 'Playfair Display', serif;
      font-size: 44px;
      font-weight: 900;
      color: white;
      line-height: 1;
      display: block;
      letter-spacing: -1px;
    }

    .clock-label {
      font-family: 'DM Mono', monospace;
      font-size: 10px;
      color: rgba(255,255,255,0.55);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-top: 6px;
    }

    .clock-sep {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      font-weight: 700;
      color: rgba(255,255,255,0.35);
      line-height: 1;
      padding-top: 16px;
    }

    /* Barre de progression de la session */
    .session-meta {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 24px;
      flex-wrap: wrap;
    }

    .session-badge {
      background: rgba(0,0,0,0.2);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.85);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .session-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #FCA97A;
    }

    /* ======================================================
       AMÉLIORATION 3 — F09 DRONE (NOUVELLE FILIÈRE)
    ====================================================== */
    .filieres-demo {
      background: white;
      padding: 80px 0;
    }

    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 40px;
    }

    .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: 36px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .divider {
      width: 48px;
      height: 3px;
      background: var(--orange);
      border-radius: 2px;
      margin-bottom: 40px;
    }

    /* Grille 2 colonnes pour afficher F09 en contexte */
    .two-cards {
      display: grid;
      grid-template-columns: 1fr 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);
    }

    /* Carte F09 — mise en valeur "Nouveau" */
    .formation-card.nouveau {
      border: 2px solid var(--orange);
      position: relative;
    }

    .nouveau-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--orange);
      color: white;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 100px;
      z-index: 10;
    }

    .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);
      flex-wrap: wrap;
    }

    .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; }

    /* Note drone */
    .drone-note {
      margin-top: 16px;
      background: #FFF7ED;
      border-left: 3px solid var(--orange);
      border-radius: 0 8px 8px 0;
      padding: 10px 14px;
      font-size: 12px;
      color: #92400E;
      line-height: 1.5;
    }

    .drone-note strong { color: var(--orange); font-weight: 700; }

    /* ─── DIVIDERS ENTRE SECTIONS ─── */
    .section-divider {
      text-align: center;
      padding: 32px 0 20px;
      background: var(--off-white);
      font-family: 'DM Mono', monospace;
      font-size: 11px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gray-400);
    }

    /* ─── WhatsApp flottant ─── */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      cursor: pointer;
      text-decoration: none;
      z-index: 9999;
      transition: transform 0.2s;
    }

    .whatsapp-float:hover { transform: scale(1.08); }

    .whatsapp-float svg { width: 28px; height: 28px; }

    .whatsapp-tooltip {
      position: fixed;
      bottom: 36px;
      right: 94px;
      background: var(--navy);
      color: white;
      font-size: 13px;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 10px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }

    .whatsapp-float:hover + .whatsapp-tooltip { opacity: 1; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      .cover-content { padding: 40px 24px 52px; }
      .countdown-inner {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 32px;
      }
      .countdown-clock { justify-content: center; }
      .two-cards { grid-template-columns: 1fr; }
      .container { padding: 0 20px; }
      .section-title { font-size: 28px; }
      .cover-stats {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
      }
      .stat-cell { padding: 18px 10px; }
      .stat-num { font-size: 26px; }
      .cover-bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
      .cover-cta-row { flex-direction: column; align-items: flex-start; }
      .cover-filieres { text-align: left; }
    }

    @media (max-width: 500px) {
      .clock-block { min-width: 66px; padding: 16px 12px 12px; }
      .clock-num { font-size: 34px; }
    }

    /* ─── COVER CONTENT : alignement nav + 2 colonnes ─── */
.cover-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;          /* ← même max-width que .nav-inner */
  margin: 0 auto;
  width: 100%;
  padding: 80px 24px 72px;   /* ← même padding horizontal que la nav */

  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
  min-height: 100vh;
}

/* Colonne gauche */
.cover-left {
  display: flex;
  flex-direction: column;
}

/* Piliers — retirés du cover-bottom, maintenant dans cover-left */
.cover-left .cover-pillars {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Colonne droite */
.cover-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: center;
}

/* Stats : grille 2×2 dans la colonne droite */
.cover-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  width: 100%;                /* ← prend toute la colonne droite */
}

.stat-cell {
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

/* Enlève les bordures inutiles (grille 2×2) */
.stat-cell:nth-child(2n)   { border-right: none; }
.stat-cell:nth-child(3),
.stat-cell:nth-child(4)    { border-bottom: none; }

/* Filières — dans la colonne droite */
.cover-filieres {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.9;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
}

.cover-filieres strong {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

/* Supprime l'ancien cover-bottom (devenu inutile) */
.cover-bottom { display: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .cover-content {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
    padding: 64px 24px 60px;
  }

  .cover-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .cover-stats {
    flex: 1 1 90px;
  }

  .cover-filieres {
    flex: 1 1 100px;
  }
}

@media (max-width: 640px) {
  .cover-content {
    padding: 48px 18px 52px;
  }

  .cover-right {
    flex-direction: column;
  }

  .cover-stats {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }

  .stat-cell {
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 18px 10px;
  }

  .stat-cell:last-child { border-right: none; }
}

.countdown-inner {
  max-width: 1180px;        /* ← même que .nav-inner et .cover-content */
  margin: 0 auto;
  padding: 56px 24px;       /* ← même padding horizontal que la nav */
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .countdown-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 32px;
  }

  .countdown-clock {
    justify-content: center;
  }
}

.container {
  max-width: 1180px;   /* ← était 960px */
  margin: 0 auto;
  padding: 0 24px;     /* ← était 0 40px */
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (max-width: 768px) {

  .nav-links,
  .nav-print {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
  }

  /* ── Overlay plein écran ── */
  #menu-toggle:checked ~ .nav-links {
    display: flex;
    position: fixed;
    inset: 0;                         /* top/right/bottom/left: 0 */
    width: 100%;
    height: 100vh;
    z-index: 99998;
    background: rgba(10, 22, 40, 0.99);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    padding: 96px 18px 100px;         /* haut : laisse place au logo+hamburger */
    overflow-y: auto;
  }

  #menu-toggle:checked ~ .nav-links .nav-link {
    display: block;
    width: 100%;
    padding: 15px 18px;
    color: white;
    font-size: 16px;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
  }

  #menu-toggle:checked ~ .nav-links .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
  }

  /* ── Bouton S'inscrire figé en bas ── */
  #menu-toggle:checked ~ .nav-print {
    display: block;
    position: fixed;
    bottom: 18px;
    left: 18px;
    right: 18px;
    width: calc(100% - 36px);
    text-align: center;
    padding: 16px 18px;
    border-radius: 14px;
    background: var(--orange);
    color: white !important;
    font-size: 15px;
    font-weight: 700;
    z-index: 99999;                   /* au-dessus de l'overlay */
    text-decoration: none;
  }

  /* ── Logo + hamburger restent visibles au-dessus ── */
  .nav-inner {
    position: relative;
    z-index: 100000;
  }

  /* Animation hamburger → croix */
  #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);
  }
}

/* ─── BLOC PRIX ─── */
.f-price-block {
    margin: 0 -28px;
    background: var(--navy);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.f-price-block::before {
    content: '';
    position: absolute;
    right: -20px; top: -30px;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.12);
}

.f-price-left { position: relative; z-index: 1; }

.f-price-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 5px;
}

.f-price-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.f-price-num {
    font-family: 'DM Mono', monospace;
    font-size: 26px;
    font-weight: 700;
    color: var(--orange-mid);
    letter-spacing: -0.5px;
    line-height: 1;
}

.f-price-currency {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.f-price-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
    display: block;
}

.f-seats {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 6px;
    letter-spacing: 0.3px;
}

.f-seats-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #4ADE80;
    flex-shrink: 0;
}

.f-price-cta {
    position: relative; z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--orange);
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 9px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.15s, transform 0.15s;
}

.f-price-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.f-price-block {
    /* plus besoin de margin négatif */
    background: var(--navy);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    overflow: hidden;
    /* colle parfaitement au bas de la carte grâce au border-radius hérité */
    border-radius: 0 0 20px 20px;
}

/* Montant — Playfair comme les grands chiffres du site */
.f-price-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--orange-mid);
    letter-spacing: -1px;
    line-height: 1;
}

.f-price-currency {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 2px;
    text-transform: uppercase;
    align-self: flex-end;
    margin-bottom: 3px;
}

/* Supprime le padding-bottom qui crée le gap blanc */
.formation-body {
    padding-bottom: 0;
}

/* Donne de l'air aux badges de profil avant le bloc prix */
.f-profiles {
    margin-bottom: 20px; /* était padding-top seulement */
}

/* S'assure que le bloc prix couvre bien toute la largeur */
.f-price-block {
    background: var(--navy);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    /* ↓ retire tout résidu de marge */
    margin: 0;
}

.formation-card {
    display: flex;
    flex-direction: column;
}

.formation-body {
    flex: 1;           /* pousse le bloc prix tout en bas */
    padding-bottom: 0;
}

/* 1. On s'assure que le lien du logo s'aligne bien verticalement */
.nav-logo {
    display: flex;
    align-items: center;
    height: 100%; /* S'adapte à la hauteur de la nav-inner */
    padding: 5px 0; /* Un peu d'espace en haut/bas */
}

/* 2. On dompte l'image du logo */
.nav-logo img {
    height: 40px;       /* Force une hauteur raisonnable (ajustez selon vos goûts) */
    width: auto;        /* Conserve les proportions d'origine du logo */
    object-fit: contain; /* Évite toute déformation */
    display: block;
}

/* 3. Sécurité sur le conteneur parent (optionnel mais recommandé) */
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Espace bien le logo, les liens et le bouton */
    height: 70px; /* Si vous n'avez pas de hauteur fixe, fixez-en une pour la cohérence */
}

/* ══ CARTE WIDE — même ADN que les cartes standards ══ */

.formation-card--wide {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column; /* même flux vertical que les cartes standards */
}

/* Header — reprend .formation-top mais en horizontal étendu */
.fw-header {
    padding: 28px 32px 22px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 20px;
}

.fw-header .f-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    font-size: 26px;
    border-radius: 14px;
}

.fw-header-text { flex: 1; min-width: 0; }

.fw-header-text .f-code  { margin-bottom: 4px; }
.fw-header-text .f-title { font-size: 20px; }

.fw-header-tagline {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    white-space: nowrap;
    padding-left: 24px;
    border-left: 2px solid var(--gray-200);
    margin-left: auto;
}

/* Body — 2 colonnes au lieu d'une */
.fw-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
}

.fw-body-col {
    padding: 22px 32px;
}

.fw-body-col + .fw-body-col {
    border-left: 1px solid var(--gray-100);
}

.fw-body-col .f-profiles {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

/* La barre prix (.f-price-block) est réutilisée telle quelle —
   border-radius 0 0 20px 20px déjà défini dans ton CSS existant */

/* ── Responsive ── */
@media (max-width: 768px) {
    .fw-header {
        flex-wrap: wrap;
        padding: 22px 22px 18px;
    }

    .fw-header-tagline {
        width: 100%;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--gray-200);
        padding-top: 10px;
        margin-left: 0;
        white-space: normal;
    }

    .fw-body {
        grid-template-columns: 1fr;
    }

    .fw-body-col + .fw-body-col {
        border-left: none;
        border-top: 1px solid var(--gray-100);
    }
}

/* ══════════════════════════════════════════════
   SECTION BROCHURE
══════════════════════════════════════════════ */

.brochure-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.brochure-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.brochure-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 80px;
    align-items: center;
}

/* ── Gauche ── */
.brochure-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.brochure-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.brochure-checklist li strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.brochure-checklist li::before {
    content: '';
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-top: 1px;
    border-radius: 5px;
    background: rgba(234, 88, 12, 0.2);
    border: 1px solid rgba(234, 88, 12, 0.4);
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='%23F97316' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.brochure-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.brochure-btn {
    background: var(--orange);
    font-size: 14px;
    padding: 13px 24px;
    gap: 10px;
}

.brochure-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.28);
    font-family: 'DM Mono', monospace;
    letter-spacing: 0.5px;
}

/* ── Mockup flyer ── */
.brochure-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brochure-mockup {
    position: relative;
    width: 230px;
    height: 310px;
}

.bm-page {
    position: absolute;
    width: 220px;
    height: 296px;
    border-radius: 10px;
}

.bm-page--back {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    transform: rotate(4deg) translate(12px, 8px);
    z-index: 0;
}

.bm-page--front {
    z-index: 1;
    background: white;
    padding: 20px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 28px 64px rgba(0,0,0,0.5);
    transform: rotate(-1.5deg);
    overflow: hidden;
}

/* Bande orange diagonale (décorative) */
.bm-diagonal {
    position: absolute;
    top: -30px;
    right: -40px;
    width: 110px;
    height: 200px;
    background: var(--orange);
    opacity: 0.12;
    transform: rotate(20deg);
    pointer-events: none;
}

/* Header logo */
.bm-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.bm-logo-mark {
    width: 30px;
    height: 30px;
    background: var(--navy);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.bm-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.1;
}

.bm-logo-text span:first-child {
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
}

.bm-logo-sub {
    font-size: 9px !important;
    color: var(--text-muted) !important;
    letter-spacing: 0.5px;
    font-weight: 500 !important;
}

/* Titre principal — style flyer */
.bm-headline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.bm-headline-top {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.3px;
    line-height: 1.1;
    text-transform: uppercase;
}

.bm-headline-mid {
    font-family: 'DM Sans', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--orange);
    letter-spacing: -1px;
    line-height: 1;
    text-transform: uppercase;
}

.bm-headline-bot {
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.3px;
    line-height: 1.1;
    text-transform: uppercase;
}

.bm-accent-bar {
    width: 32px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    margin-bottom: 12px;
}

/* Bloc session */
.bm-session-block {
    background: var(--navy);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.bm-session-label {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 3px;
}

.bm-session-dates {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--orange-mid);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.bm-session-contact {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

/* Pilliers */
.bm-pillars {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.bm-pillar {
    font-size: 10px;
    font-weight: 600;
    color: var(--navy);
    background: var(--gray-100);
    border-radius: 5px;
    padding: 5px 9px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .brochure-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .brochure-right { order: -1; }
}

@media (max-width: 480px) {
    .brochure-actions { flex-direction: column; align-items: flex-start; }
    .brochure-btn { width: 100%; justify-content: center; }
}

.brochure-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.brochure-checklist li {
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: baseline;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.brochure-checklist li:last-child {
    border-bottom: none;
}

.brochure-checklist li::before {
    display: none; /* remplacé par la grille */
}

.bc-label {
    font-weight: 700;
    color: rgba(255,255,255,.9);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.bc-label::before {
    content: '';
    width: 16px;
    min-width: 16px;
    height: 16px;
    border-radius: 4px;
    background: rgba(234,88,12,.2);
    border: 1px solid rgba(234,88,12,.4);
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3.2 5.5L8 1' stroke='%23F97316' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.bc-val {
    color: rgba(255,255,255,.55);
    line-height: 1.6;
}

@media (max-width: 640px) {
    .brochure-checklist li {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 0;
    }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: none;
  padding: 0;
  text-align: left;
  font-size: inherit;
  color: inherit;
}

.footer-top {
  padding: 64px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Brand */
.footer-brand {}

.footer-logo img {
  height: 36px;
  width: auto;
  margin-bottom: 18px;
  display: block;
  opacity: .9;
  transition: opacity .2s;
}
.footer-logo:hover img { opacity: 1; }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.42);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 240px;
}

.footer-session {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234,88,12,.12);
  border: 1px solid rgba(234,88,12,.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #FCA97A;
}

.footer-session-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-mid);
  animation: pulse 2s infinite;
}

/* Colonnes */
.footer-col-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .18s;
  display: inline-block;
}
.footer-links li a:hover { color: rgba(255,255,255,.9); }

/* Contact avec icônes */
.footer-links--contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.5);
  font-size: 13.5px;
  line-height: 1.5;
}
.footer-links--contact li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--orange);
  opacity: .8;
}
.footer-links--contact li span { color: rgba(255,255,255,.5); }

/* Barre du bas */
.footer-bottom {
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.22);
}
.footer-copy a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .18s;
}
.footer-copy a:hover { color: rgba(255,255,255,.6); }

.footer-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.25);
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.07);
  transition: background .18s, color .18s, border-color .18s;
}
.footer-admin-link:hover {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.55);
  border-color: rgba(255,255,255,.14);
}
.footer-admin-link svg { color: inherit; }

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer-top { padding: 48px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 768px) {

  /* On cache les éléments desktop */
  .nav-links,
  .nav-print {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-shrink: 0;
    order: 3;
  }

  .nav-logo { order: 1; }

  /* ── Overlay menu ouvert ── */
  #menu-toggle:checked ~ .nav-links {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100dvh;
    z-index: 99998;
    background: rgba(8, 15, 30, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 20px 20px 32px;
    overflow-y: auto;
  }

  /* ── Bouton fermer ── */
  .nav-close {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.45);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 4px 20px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    width: fit-content;
    transition: color .15s;
    user-select: none;
  }
  .nav-close:hover { color: rgba(255,255,255,.8); }
  .nav-close svg { flex-shrink: 0; }

  /* Cacher le bouton fermer sur desktop */
  .nav-close { display: none; }
  #menu-toggle:checked ~ .nav-links .nav-close { display: flex; }

  /* ── Liens de navigation ── */
  #menu-toggle:checked ~ .nav-links .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    color: rgba(255,255,255,.75);
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    text-decoration: none;
    transition: background .15s, color .15s;
  }
  #menu-toggle:checked ~ .nav-links .nav-link:hover,
  #menu-toggle:checked ~ .nav-links .nav-link.active {
    background: rgba(255,255,255,.09);
    color: white;
  }

  /* ── Bouton CTA intégré dans le menu ── */
  .nav-link-cta { display: none; }
  #menu-toggle:checked ~ .nav-links .nav-link-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    padding: 15px 18px;
    background: var(--orange);
    color: white;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    text-align: center;
    transition: opacity .15s, transform .15s;
  }
  #menu-toggle:checked ~ .nav-links .nav-link-cta:hover {
    opacity: .93;
    transform: translateY(-1px);
  }

  /* ── Cacher le nav-print desktop sur mobile ── */
  .nav-print { display: none !important; }

  /* ── Z-index : logo + hamburger restent au-dessus ── */
  .nav-inner { position: relative; z-index: 100000; }

  /* ── Animation hamburger → croix ── */
  #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);
  }

  /* Fermer le menu au clic sur un lien (via JS ci-dessous) */
}

.nav-print {
  background: var(--orange);
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  white-space: nowrap;
  transition: transform .2s ease, opacity .2s ease;
  flex-shrink: 0;
}

.nav-print:hover {
  transform: translateY(-1px);
  opacity: .92;
}

/* Mobile CTA caché par défaut (desktop) */
.nav-link-cta { display: none; }
.nav-close     { display: none; }

/* ── Bouton S'inscrire desktop ── */
.nav-print {
  background: var(--orange);
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 9px;
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .18s, opacity .18s;
}
.nav-print:hover { transform: translateY(-1px); opacity: .92; }

/* ── CTA mobile — caché par défaut ── */
.nav-link-cta { display: none; }
.nav-close     { display: none; }

/* ── Mobile ── */
@media (max-width: 768px) {

  /* Masquer le bouton desktop */
  .nav-print { display: none !important; }

  /* Masquer hamburger et liens par défaut */
  .nav-links { display: none; }
  .hamburger { display: flex; flex-shrink: 0; }

  /* Menu ouvert */
  #menu-toggle:checked ~ .nav-links {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%; height: 100dvh;
    z-index: 99998;
    background: rgba(8, 15, 30, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 6px;
    padding: 20px 20px 32px;
    overflow-y: auto;
  }

  /* Bouton fermer */
  #menu-toggle:checked ~ .nav-links .nav-close {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.45);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 4px 20px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    width: fit-content;
    user-select: none;
  }

  /* Liens */
  #menu-toggle:checked ~ .nav-links .nav-link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    color: rgba(255,255,255,.75);
    font-size: 15px;
    font-weight: 500;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    text-decoration: none;
    transition: background .15s, color .15s;
  }
  #menu-toggle:checked ~ .nav-links .nav-link:hover {
    background: rgba(255,255,255,.09);
    color: white;
  }

  /* Bouton S'inscrire mobile */
  #menu-toggle:checked ~ .nav-links .nav-link-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    padding: 15px 18px;
    background: var(--orange);
    color: white !important;
    font-size: 15px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    transition: opacity .15s, transform .15s;
  }

  /* Animation hamburger → croix */
  #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); }

  /* Logo + hamburger au-dessus de l'overlay */
  .nav-inner { position: relative; z-index: 100000; }
}

@media (max-width: 768px) {
  .top-nav .nav-inner > a.nav-print, #menu-toggle:checked ~ .nav-print {
    display: none !important;
  }
}

@media (max-width: 768px) {

  .cover-content {
    padding: 32px 20px 36px;
    gap: 24px;
    min-height: auto;
  }

  .cover-right {
    gap: 10px;
  }

  .cover-filieres {
    padding: 14px 16px;
    margin-bottom: 0;
    line-height: 1.7;
  }

  /* Supprime tout espace résiduel après le bloc filières */
  .cover-right > *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  /* Si le cover lui-même a du padding-bottom excessif */
  .cover {
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .cover-content { min-height: unset !important; }
}

@media (max-width: 768px) {
  .cover-cta-row {
    flex-direction: column;
    gap: 10px;
  }

  .cover-cta-row .btn-primary,
  .cover-cta-row .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

/* ── BLOC PRIX — fix affichage ── */
.f-price-block {
    background: var(--navy);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    margin: 0;
}
.f-price-block::before {
    content: '';
    position: absolute;
    right: -20px; top: -30px;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: rgba(249,115,22,.12);
    pointer-events: none;
}
.f-price-left { position: relative; z-index: 1; min-width: 0; }

.f-price-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    display: block;
    margin-bottom: 6px;
}

/* Ligne prix : false_price barré + prix réel + FCFA + badge */
.f-price-amount {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1;
}

/* Prix barré */
.f-price-false {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,.35);
    text-decoration: line-through;
    text-decoration-color: rgba(239,68,68,.7);
    text-decoration-thickness: 1.5px;
    white-space: nowrap;
    align-self: center;
}

/* Prix réel — compact, sur une seule ligne */
.f-price-num {
    font-family: 'DM Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--orange-mid);
    letter-spacing: -0.5px;
    line-height: 1;
    white-space: nowrap;   /* ← empêche la coupure */
}

.f-price-currency {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.35);
    letter-spacing: 2px;
    text-transform: uppercase;
    align-self: flex-end;
    margin-bottom: 2px;
    white-space: nowrap;
}

/* Badge réduction */
.f-price-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(239,68,68,.15);
    border: 1px solid rgba(239,68,68,.3);
    color: #FCA5A5;
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    white-space: nowrap;
    align-self: center;
}

.f-seats {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: rgba(255,255,255,.4);
    margin-top: 6px;
    letter-spacing: 0.3px;
}
.f-seats-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #4ADE80;
    flex-shrink: 0;
}

.f-price-cta {
    position: relative; z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--orange);
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 18px;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity .15s, transform .15s;
}
.f-price-cta:hover { opacity: .9; transform: translateY(-1px); }

/* Prix barré — gris clair, pas orange */
.f-price-false {
    font-family: 'DM Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,.35);
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,.4);
    text-decoration-thickness: 1.5px;
    white-space: nowrap;
    align-self: center;
}

/* Bloc prix : empêche la troncature du bouton */
.f-price-block {
    background: var(--navy);
    padding: 18px 20px;          /* ← padding réduit */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    overflow: visible;            /* ← était hidden, causait la troncature */
    border-radius: 0 0 20px 20px;
    margin: 0;
}

/* Bouton : ne jamais rétrécir */
.f-price-cta {
    position: relative; z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--orange);
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;               /* ← ne se compresse pas */
    min-width: fit-content;       /* ← garantit la largeur minimale */
    transition: opacity .15s, transform .15s;
}