:root {
    --navy:      #1A3568;
    --navy-deep: #12213D;
    --navy-dark: #12213D;
    --royal:     #2B6FA8;
    --turq:      #4AAFD4;
    --gold:      #C9A43C;
    --gold-lt:   #E8B84B;
    --purple:    #7C3AED;
    --green:     #059669;
    --bg:        #FFFFFF;
    --bg-alt:    #EEF2F8;
    --border:    #D8E3F0;
    --muted:     #64748B;
    --text:      #1A1A2E;
    --container: 1100px;
    --radius:    12px;
    --radius-sm: 6px;
    --error: #DC2626;
    --success-bg: #D1FAE5;
    --success-border: #6EE7B7;
    --success-text: #065F46;
}

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

body {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

/* Titres globaux — Sora 600 */
h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Pre-header (barre utilitaire) ── */
.pre-header {
    background: var(--navy-dark);
    height: 36px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 101;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pre-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.pre-header-tagline {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
}
.pre-header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}
.pre-header-link {
    display: flex; align-items: center; gap: 5px;
    font-size: 11.5px; color: rgba(255,255,255,0.55);
    text-decoration: none; transition: color 0.15s;
}
.pre-header-link:hover { color: var(--turq); }
.pre-header-link svg { opacity: 0.7; }
.pre-header-sep { color: rgba(255,255,255,0.2); font-size: 12px; }
.pre-header-member {
    display: flex; align-items: center; gap: 5px;
    font-size: 11.5px; font-weight: 600;
    color: var(--turq); text-decoration: none;
    transition: color 0.15s;
}
.pre-header-member:hover { color: var(--gold-lt); }
.pre-header-member svg { color: var(--turq); }

/* ── Navbar principale ── */
.navbar {
    background: var(--bg);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    height: 76px;
    position: sticky;
    top: 36px;
    z-index: 100;
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
}

.navbar-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: stretch;
    width: 100%;
    padding: 0 40px;
    gap: 0;
}

/* Zone logo */
.nav-brand {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none;
    padding-right: 48px;
}
.nav-logo-img { height: 50px; width: auto; flex-shrink: 0; }

.nlt {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}
.nlt .name {
    font-family: 'Sora', sans-serif;
    font-size: 19px; font-weight: 700;
    color: var(--navy); line-height: 1; letter-spacing: 0.04em;
    white-space: nowrap;
}
.nlt .sub {
    display: block;
    font-size: 10.5px; color: var(--muted);
    margin-top: 5px;
    letter-spacing: 0.01em; line-height: 1.45;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    max-width: 148px;
}

/* Zone menu (centré) */
.nav-links {
    display: flex; align-items: center;
    justify-content: center;
    gap: 0; list-style: none;
    padding: 0 32px;
}
.nav-links a {
    color: var(--navy); text-decoration: none;
    font-size: 12px; font-weight: 400;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 7px 18px;
    border-radius: 4px;
    transition: color 0.15s;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--turq); }
.nav-links a.active { color: var(--turq); }

/* Zone droite : langue + CTA */
.navbar-actions {
    display: flex; align-items: center;
    gap: 24px;
    padding-left: 48px;
}

/* Sélecteur de langue */
.lang-switcher {
    display: flex; align-items: center;
    gap: 2px;
}
.lang-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 5px 7px;
    font-family: 'Sora', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.07em;
    color: var(--muted);
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
}
.lang-btn:hover { color: var(--navy); }
.lang-btn.active { color: var(--turq); }

/* CTA don */
.nav-cta {
    background: var(--turq); color: #fff !important;
    border-radius: var(--radius-sm); padding: 10px 22px;
    font-weight: 700; font-size: 11.5px;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase; letter-spacing: 0.07em;
    text-decoration: none;
    transition: filter 0.2s;
    white-space: nowrap;
}
.nav-cta:hover { filter: brightness(1.08); }

/* ── Bouton hamburger (mobile) ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none; border: none; cursor: pointer;
    padding: 0;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links-mobile-extra { display: none; }

/* ── Responsive : navbar + pre-header ── */
@media (max-width: 900px) {
    .pre-header-tagline { display: none; }

    .navbar-inner {
        grid-template-columns: 1fr auto;
        padding: 0 16px;
    }
    .nav-brand { padding-right: 0; }
    .nav-logo-img { height: 38px; }
    .nlt .sub { display: none; }

    .navbar-actions { display: none; }
    .nav-toggle { display: flex; }

    .nav-links {
        display: none;
        position: absolute;
        top: 112px;
        left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 16px 20px;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 12px 8px;
        text-align: left;
        border-radius: 6px;
    }
    .nav-links-mobile-extra {
        display: block;
        padding-top: 12px;
        margin-top: 8px;
        border-top: 1px solid var(--border);
    }
    .nav-links-mobile-extra .lang-switcher { padding: 4px 8px; }
    .nav-links-mobile-extra .nav-cta { display: block; text-align: center; margin: 8px; }
}
@media (max-width: 520px) {
    .pre-header-link { display: none; }
    .pre-header-sep { display: none; }
}

/* Footer */
.footer { background: var(--navy-deep); padding: 60px 0 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
.footer-title { color: #fff; font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-link { color: rgba(255,255,255,0.6); text-decoration: none; display: block; margin-bottom: 8px; font-size: 14px; }
.footer-link:hover { color: var(--turq); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-copy { color: rgba(255,255,255,0.45); font-size: 13px; }
.footer-bottom-legal { display: flex; flex-direction: column; gap: 4px; }
.footer-business-number { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-credit {
    text-align: center;
    padding: 14px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: 12px;
}
.footer-credit a { color: rgba(255,255,255,0.65); font-weight: 600; text-decoration: none; }
.footer-credit a:hover { color: var(--turq); text-decoration: underline; }

.footer-brand .nlt .name { color: #fff; font-size: 17px; font-weight: 700; }
.footer-brand .nlt .sub { color: rgba(255,255,255,0.55); font-size: 10px; }

/* Boutons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 22px; border-radius: var(--radius-sm);
    font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px;
    cursor: pointer; border: none; text-decoration: none;
    transition: filter 0.2s, transform 0.15s;
}
.btn:hover { filter: brightness(1.08); }
.btn-primary { background: var(--turq); color: #fff; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--navy); }
.btn-outline-white { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff; }
.btn-full { width: 100%; }

/* Eyebrow */
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(74,175,212,0.15); color: var(--turq);
    padding: 5px 12px; border-radius: 999px;
    font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 16px;
}

/* Cards */
.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.card-navy { background: var(--navy); border: none; color: #fff; }

/* Stats bar */
.stats-bar {
    background: linear-gradient(100deg, var(--navy-dark) 0%, var(--navy) 55%, var(--royal) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2748%27 height=%2748%27%3E%3Cpath d=%27M.5 48V.5H48%27 fill=%27none%27 stroke=%27rgba%28255,255,255,0.04%29%27 stroke-width=%271%27/%3E%3C/svg%3E");
    background-size: 48px 48px;
    pointer-events: none;
}
.stats-bar-inner {
    display: flex;
    align-items: stretch;
    position: relative; z-index: 1;
}
@keyframes statSlideUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes statGlow {
    0%   { text-shadow: 0 0 0px rgba(247,181,0,0); }
    50%  { text-shadow: 0 0 18px rgba(247,181,0,0.55); }
    100% { text-shadow: 0 0 0px rgba(247,181,0,0); }
}

.stat-item {
    flex: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 28px 24px;
    text-align: center;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stats-bar.animated .stat-item:nth-child(1) { animation: statSlideUp 0.55s ease 0.05s forwards; }
.stats-bar.animated .stat-item:nth-child(3) { animation: statSlideUp 0.55s ease 0.18s forwards; }
.stats-bar.animated .stat-item:nth-child(5) { animation: statSlideUp 0.55s ease 0.31s forwards; }
.stats-bar.animated .stat-item:nth-child(7) { animation: statSlideUp 0.55s ease 0.44s forwards; }

.stat-top {
    display: flex; align-items: center; gap: 8px;
    justify-content: center;
    margin-bottom: 6px;
    color: rgba(255,255,255,0.5);
}
.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 34px; font-weight: 700;
    color: var(--gold);
    line-height: 1;
    transition: text-shadow 0.3s;
}
.stat-number.glow { animation: statGlow 0.9s ease forwards; }

.stat-label {
    color: rgba(255,255,255,0.65);
    font-size: 11.5px;
    font-family: 'Sora', sans-serif;
    letter-spacing: 0.04em;
    margin-top: 4px;
}
.stat-sep {
    width: 1px;
    background: rgba(255,255,255,0.1);
    margin: 20px 0;
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.4s ease 0.5s;
}
.stats-bar.animated .stat-sep { opacity: 1; }

/* Alerts */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 14px; }
.alert-danger { background: #FEE2E2; color: #991B1B; border: 1px solid #FECACA; }
.alert-success { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }

/* ════════════════════════════════════════
   AUTH SPLIT — login + register
════════════════════════════════════════ */
.auth-split-page {
    display: flex;
    min-height: calc(100vh - 64px);
    background: var(--bg);
}

/* Left panel */
.auth-panel-left {
    display: none;
    position: relative;
    width: 42%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--royal) 100%);
    overflow: hidden;
}
@media (min-width: 900px) { .auth-panel-left { display: flex; } }

.auth-dot-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}
.auth-panel-left-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    width: 100%;
    text-align: center;
}
.auth-brand-monogram {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 0 0 14px rgba(201,164,60,0.1), 0 8px 32px rgba(0,0,0,0.35);
    animation: authPulse 3s ease-in-out infinite;
    overflow: hidden;
}
.auth-brand-monogram img {
    width: 80px;
    height: 80px;
    display: block;
    border-radius: 50%;
}
@keyframes authPulse {
    0%, 100% { box-shadow: 0 0 0 14px rgba(201,164,60,0.10), 0 8px 32px rgba(0,0,0,0.35); }
    50%       { box-shadow: 0 0 0 20px rgba(201,164,60,0.05), 0 8px 32px rgba(0,0,0,0.35); }
}
.auth-brand-name {
    font-family: 'Sora', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: 0.06em;
}
.auth-brand-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    max-width: 260px;
    margin: 0 auto 40px;
}
.auth-brand-stats {
    display: flex;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    width: 100%;
    max-width: 300px;
}
.auth-brand-stat {
    flex: 1;
    padding: 16px 8px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.auth-brand-stat:last-child { border-right: none; }
.auth-brand-stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--gold-lt);
    display: block;
    line-height: 1;
}
.auth-brand-stat-label {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-top: 4px;
    line-height: 1.3;
}

/* Right panel */
.auth-panel-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background: var(--bg);
    overflow-y: auto;
}
.auth-form-wrap {
    width: 100%;
    max-width: 420px;
    animation: authFadeUp 0.5s ease both;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 36px 36px 28px;
    box-shadow: 0 4px 32px rgba(26,53,104,0.07);
    background: var(--bg);
}
.auth-form-wrap-wide { max-width: 560px; }
@keyframes authFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Form header */
.auth-form-eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 8px;
}
.auth-form-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 6px;
}
.auth-form-sub {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 28px;
}

/* Fields */
.auth-field { margin-bottom: 18px; }
.auth-field > label,
.auth-field label:first-child {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.auth-input-wrap { position: relative; }
.auth-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
    background: var(--bg-alt);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}
.auth-input:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201,164,60,0.14);
}
.auth-input::placeholder { color: #aab4c4; }
.auth-input.has-toggle { padding-right: 44px; }
.auth-eye-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--muted);
    display: flex;
    align-items: center;
    transition: color 0.2s;
    line-height: 0;
}
.auth-eye-btn:hover { color: var(--navy); }
.auth-eye-btn .icon-eye-off { display: none; }

/* Form error (Symfony) */
.auth-field ul.form-errors,
.auth-field .form-error {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    font-size: 12px;
    color: var(--error);
}

/* Submit button */
.btn-auth-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    background: linear-gradient(100deg, var(--navy-dark) 0%, var(--navy) 60%, var(--royal) 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: filter 0.2s, box-shadow 0.2s;
    margin-top: 8px;
}
.btn-auth-submit:hover {
    filter: brightness(1.12);
    box-shadow: 0 6px 24px rgba(26,53,104,0.3);
}
.btn-auth-submit::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    left: -100%;
    width: 60px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
    filter: blur(6px);
    transition: left 0.6s ease;
}
.btn-auth-submit:hover::after { left: 150%; }

/* Switch link */
.auth-switch {
    text-align: center;
    font-size: 13px;
    color: var(--muted);
    margin-top: 22px;
}
.auth-switch a { color: var(--turq); font-weight: 600; text-decoration: none; }
.auth-switch a:hover { color: var(--royal); }

/* Name row (register) */
.auth-name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 480px) { .auth-name-row { grid-template-columns: 1fr; } }

/* Legacy .auth-page/.auth-card preserved for any other use */
.auth-page { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; background: var(--bg-alt); padding: 40px 24px; }
.auth-card { background: var(--bg); border-radius: var(--radius); padding: 40px; width: 100%; max-width: 440px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.auth-title { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.auth-footer { margin-top: 20px; font-size: 14px; color: var(--muted); text-align: center; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-input { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; }
.form-input:focus { outline: none; border-color: var(--turq); box-shadow: 0 0 0 3px rgba(74,175,212,0.15); }

/* Fade-in animation */
.fade-in-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Section spacing + filigrane */
.section,
.section-alt {
    padding: 72px 0;
    position: relative;
}
.section-alt { background: var(--bg-alt); }

.section::before,
.section-alt::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2748%27 height=%2748%27%3E%3Cpath d=%27M.5 48V.5H48%27 fill=%27none%27 stroke=%27%231A3568%27 stroke-width=%270.6%27 stroke-opacity=%270.045%27/%3E%3C/svg%3E");
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}
.section > *,
.section-alt > * { position: relative; z-index: 1; }

/* ── Section headers numérotés ── */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.section-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.section-num {
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--turq);
    background: rgba(74,175,212,0.1);
    border: 1px solid rgba(74,175,212,0.25);
    border-radius: 4px;
    padding: 4px 8px;
    white-space: nowrap;
}
/* Eyebrow + titre groupés — espacement interne réduit */
.section-header-left > div,
.section-header-left > * + * { }
.section-header-left .eyebrow {
    display: block;
    margin-bottom: 6px;
}
.section-title {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
    line-height: 1.25;
}

/* ── Grid pattern filigrane (SVG) ── */
.grid-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27%3E%3Cpath d=%27M.5 40V.5H40%27 fill=%27none%27 stroke=%27rgba%28255,255,255,0.07%29%27 stroke-width=%271%27/%3E%3C/svg%3E");
    background-size: 40px 40px;
    -webkit-mask-image: radial-gradient(ellipse 70% 80% at 35% 50%, white 30%, transparent 80%);
    mask-image: radial-gradient(ellipse 70% 80% at 35% 50%, white 30%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

/* ── Hero accordion ── */
.hero-accordion {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    min-height: calc(100vh - 100px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
}
@media (max-width: 900px) {
    .hero-accordion { grid-template-columns: 1fr; min-height: auto; }
    .hero-acc-right { display: none; }
}

/* Left text */
.hero-acc-left {
    padding: 80px 60px 80px 48px;
    position: relative;
    z-index: 3;
}
@media (max-width: 1100px) { .hero-acc-left { padding: 60px 40px 60px 32px; } }

.hero-acc-left .eyebrow {
    background: var(--turq);
    color: #fff;
    border: none;
    margin-bottom: 24px;
}
.hero-acc-left h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 600;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 20px;
}
.hero-acc-left h1 em {
    color: var(--gold-lt);
    font-style: normal;
}
.hero-acc-left .hero-sub {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    margin: 0 0 28px 0;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-acc-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Right accordion */
.hero-acc-right {
    padding: 48px 48px 48px 0;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.acc-track {
    display: flex;
    gap: 10px;
    height: 460px;
    align-items: stretch;
}
.acc-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
    width: 68px;
    flex-shrink: 0;
}
.acc-item.active { width: 340px; }

.acc-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.acc-item:hover img { transform: scale(1.04); }
.acc-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18,33,61,0.85) 0%, rgba(18,33,61,0.2) 60%, transparent 100%);
    z-index: 1;
}
.acc-item-label {
    position: absolute;
    z-index: 2;
    white-space: nowrap;
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    transition: all 0.4s ease;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    transform-origin: center;
    opacity: 0.85;
}
.acc-item.active .acc-item-label {
    transform: translateX(-50%) rotate(0deg);
    bottom: 20px;
    font-size: 14px;
    opacity: 1;
}
.acc-item-num {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    font-family: 'Sora', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    transition: opacity 0.3s;
}
.acc-item.active .acc-item-num { opacity: 0; }

/* ── Legacy hero (kept for other pages that may use it) ── */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 44px; font-weight: 600;
    color: #fff; margin: 0 auto 20px;
    line-height: 1.2;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 560px; margin: 0 auto 32px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   PÔLES — Design onglets
══════════════════════════════════════════════ */
.poles-tab-section { padding-bottom: 80px; }

.poles-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.poles-tab-nav::-webkit-scrollbar { display: none; }

.ptab-btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 14px 22px;
    background: none; border: none; border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: 'Sora', sans-serif;
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.09em;
    color: var(--muted);
    cursor: pointer; white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}
.ptab-btn:hover { color: var(--navy); }
.ptab-btn.active { color: var(--navy); border-bottom-color: var(--turq); }
.ptab-icon { display: flex; align-items: center; color: var(--turq); opacity: 0.5; transition: opacity 0.2s; }
.ptab-btn.active .ptab-icon,
.ptab-btn:hover .ptab-icon { opacity: 1; }

/* Panels */
.ptab-panels { background: #fff; }
.ptab-panel { display: none; }
.ptab-panel.active {
    display: block;
    animation: ptabFadeIn 0.35s cubic-bezier(0.4,0,0.2,1);
}
@keyframes ptabFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.ptab-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}
@media (max-width: 768px) { .ptab-panel-inner { grid-template-columns: 1fr; } }

/* Panel gauche */
.ptab-left {
    padding: 52px 56px;
    display: flex; flex-direction: column;
    border-right: 1px solid var(--border);
}
.ptab-badge {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 28px;
}
.ptab-badge-num {
    font-family: 'Sora', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--turq);
    background: rgba(74,175,212,0.1);
    border: 1px solid rgba(74,175,212,0.25);
    border-radius: 4px; padding: 4px 8px;
}
.ptab-badge-label {
    font-family: 'Sora', sans-serif;
    font-size: 10px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--muted);
}
.ptab-title {
    font-family: 'Sora', sans-serif;
    font-size: 28px; font-weight: 600;
    color: var(--navy); line-height: 1.25;
    margin-bottom: 18px;
}
.ptab-desc {
    color: var(--muted); font-size: 15px; line-height: 1.8;
    margin-bottom: 28px; flex: 1;
}
.ptab-themes { margin-bottom: 32px; }
.ptab-theme-label {
    font-family: 'Sora', sans-serif;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--muted); display: block; margin-bottom: 10px;
}
.ptab-theme-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ptab-tag {
    padding: 5px 12px; border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 12px; color: var(--navy);
    font-family: 'Sora', sans-serif; font-weight: 400;
}
.ptab-cta {
    display: inline-flex; align-items: center; gap: 10px;
    align-self: flex-start;
}

/* Panel droit — visuel */
.ptab-right {
    background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 52px 48px;
    position: relative;
    overflow: hidden;
}
.ptab-visual {
    width: 100%; height: 100%;
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
}
.ptab-visual-grid {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2740%27 height=%2740%27%3E%3Cpath d=%27M.5 40V.5H40%27 fill=%27none%27 stroke=%27rgba%28255,255,255,0.04%29%27 stroke-width=%271%27/%3E%3C/svg%3E");
    background-size: 40px 40px;
}
.ptab-visual-num {
    position: absolute;
    font-family: 'Sora', sans-serif;
    font-size: 180px; font-weight: 800;
    color: rgba(255,255,255,0.03);
    line-height: 1; user-select: none;
    bottom: -20px; right: 10px;
    letter-spacing: -0.04em;
}
.ptab-visual-center {
    position: relative; z-index: 2;
    text-align: center; display: flex; flex-direction: column; align-items: center;
}
.ptab-visual-icon {
    width: 120px; height: 120px;
    border-radius: 28px;
    border: 1px solid rgba(74,175,212,0.25);
    background: rgba(74,175,212,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--turq);
    margin-bottom: 24px;
}
.ptab-visual-name {
    font-family: 'Sora', sans-serif;
    font-size: 15px; font-weight: 600;
    color: #fff; margin-bottom: 6px;
}
.ptab-visual-sub {
    font-size: 11px; color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em; text-transform: uppercase;
    font-family: 'Sora', sans-serif;
    margin: 0;
}
.ptab-corner {
    position: absolute; width: 40px; height: 40px;
    border-color: rgba(74,175,212,0.3); border-style: solid;
}
.ptab-corner-tl { top: 20px; left: 20px; border-width: 1px 0 0 1px; }
.ptab-corner-br { bottom: 20px; right: 20px; border-width: 0 1px 1px 0; }

/* ══════════════════════════════════════════════
   THÉMATIQUES — Physique interactive (Matter.js)
══════════════════════════════════════════════ */
.gravity-wrap {
    background: var(--navy-dark);
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.gravity-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 0 0;
}
.gravity-label {
    font-family: 'Sora', sans-serif;
    font-size: 10.5px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: rgba(255,255,255,0.3);
}
.gravity-label::before {
    content: '↓';
    margin-right: 8px;
    color: var(--turq);
    font-style: normal;
}

.gravity-stage {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-top: 0;
}

.gravity-pill {
    position: absolute;
    top: 0; left: 0;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    font-family: 'Sora', sans-serif;
    font-size: 12px; font-weight: 600;
    white-space: nowrap;
    user-select: none;
    pointer-events: auto;
    box-shadow: 0 3px 12px rgba(0,0,0,0.22);
    will-change: transform;
    cursor: grab;
    transition: box-shadow 0.15s;
    border: 1px solid rgba(255,255,255,0.1);
}
.gravity-pill:active { cursor: grabbing; box-shadow: 0 6px 20px rgba(0,0,0,0.32); }

/* ══════════════════════════════════════════════
   ACTUALITÉS — Grille éditoriale
══════════════════════════════════════════════ */
.editorial-section { }
.editorial-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 24px;
    align-items: start;
}
@media (max-width: 900px) { .editorial-grid { grid-template-columns: 1fr; } }

/* Article vedette */
.editorial-featured {
    position: relative; overflow: hidden;
    background: var(--navy);
    border-radius: var(--radius);
    padding: 40px 40px 36px;
    text-decoration: none;
    display: flex; flex-direction: column;
    min-height: 420px;
    border: none;
    transition: transform 0.25s;
}
.editorial-featured:hover { transform: translateY(-3px); }
.editorial-featured::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--turq), var(--gold));
}
.ef-header {
    display: flex; align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.ef-tag {
    font-family: 'Sora', sans-serif;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--turq);
    background: rgba(74,175,212,0.12);
    padding: 4px 10px; border-radius: 999px;
}
.ef-date { font-size: 11px; color: rgba(255,255,255,0.35); }
.ef-label {
    font-family: 'Sora', sans-serif;
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 14px;
}
.ef-title {
    font-family: 'Sora', sans-serif;
    font-size: 22px; font-weight: 600;
    color: #fff; line-height: 1.4;
    margin-bottom: 16px; flex: 1;
}
.ef-excerpt {
    color: rgba(255,255,255,0.6);
    font-size: 14px; line-height: 1.75;
    margin-bottom: 28px;
}
.ef-read {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Sora', sans-serif;
    font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--turq);
}
.ef-bg-num {
    position: absolute; bottom: -24px; right: 20px;
    font-family: 'Sora', sans-serif;
    font-size: 140px; font-weight: 800;
    color: rgba(255,255,255,0.025);
    line-height: 1; user-select: none;
    letter-spacing: -0.04em;
}

/* Articles secondaires */
.editorial-stack { display: flex; flex-direction: column; gap: 16px; }
.editorial-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 24px 20px;
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
    border-left: 4px solid var(--border);
    transition: border-left-color 0.2s, box-shadow 0.2s;
}
.editorial-item:hover { border-left-color: var(--turq); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.ei-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ei-tag {
    font-family: 'Sora', sans-serif;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--turq);
}
.ei-date { font-size: 11px; color: var(--muted); }
.ei-title {
    font-family: 'Sora', sans-serif;
    font-size: 15px; font-weight: 600;
    color: var(--navy); line-height: 1.45;
    margin-bottom: 8px;
}
.ei-excerpt { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; }
.ei-read {
    margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border);
    font-family: 'Sora', sans-serif;
    font-size: 11px; font-weight: 600;
    color: var(--royal); text-transform: uppercase; letter-spacing: 0.07em;
}

/* ══════════════════════════════════════════════
   MISSION — Statement design
══════════════════════════════════════════════ */
.mission-section { background: var(--bg); }
.mission-statement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}
@media (max-width: 860px) { .mission-statement { grid-template-columns: 1fr; gap: 48px; } }

.ms-body {
    color: var(--muted); font-size: 15px; line-height: 1.85;
    margin-bottom: 0;
}
blockquote.ms-quote {
    display: flex; gap: 14px; align-items: flex-start;
    margin: 28px 0 0;
    padding: 20px 24px;
    background: rgba(74,175,212,0.05);
    border-left: 3px solid var(--turq);
    border-radius: 0 10px 10px 0;
}
blockquote.ms-quote p {
    font-family: 'Sora', sans-serif;
    font-size: 15px; font-weight: 600;
    color: var(--navy); line-height: 1.6;
    font-style: italic; margin: 0;
}

/* Pilliers */
.ms-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.ms-pillar {
    background: var(--bg);
    padding: 28px 28px 24px;
    position: relative;
}
.ms-pillar-num {
    font-family: 'Sora', sans-serif;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em; color: var(--turq);
    display: block; margin-bottom: 12px;
}
.ms-pillar-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(74,175,212,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--turq);
    margin-bottom: 14px;
}
.ms-pillar h4 {
    font-family: 'Sora', sans-serif;
    font-size: 13px; font-weight: 700;
    color: var(--navy); margin-bottom: 6px;
}
.ms-pillar p {
    font-size: 12.5px; color: var(--muted); line-height: 1.6; margin: 0;
}

/* Section Don CTA */
.section-don { background: var(--navy); padding: 80px 0; text-align: center; }
.don-eyebrow-line { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; }
.don-eyebrow-num { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); }
.section-don h2 { font-family: 'Sora', sans-serif; font-size: 34px; font-weight: 600; color: #fff; margin-bottom: 16px; line-height: 1.25; }
.section-don p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 560px; margin: 0 auto 32px; }
.section-don .don-note { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 16px; }

/* Blog cards (conservé pour blog/index) */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { display: flex; flex-direction: column; }
.blog-card .post-tag { background: rgba(74,175,212,0.1); color: var(--turq); padding: 3px 10px; border-radius: 999px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; }
.blog-card h3 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-card p { color: var(--muted); font-size: 14px; line-height: 1.6; flex: 1; }
.blog-card .post-meta { margin-top: 12px; font-size: 12px; color: var(--muted); }

/* ── Section Mission (Accueil) ── */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}
@media (max-width: 768px) { .mission-grid { grid-template-columns: 1fr; gap: 40px; } }

.mission-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: var(--navy);
    margin: 8px 0 20px;
    line-height: 1.3;
}
.mission-text p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.value-icon {
    flex-shrink: 0;
    width: 42px; height: 42px;
    background: rgba(74,175,212,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--turq);
}
.value-item h4 {
    font-family: 'Sora', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.value-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* ── Page Pôles ── */
.poles-hero {
    background: linear-gradient(155deg, var(--navy-dark) 0%, #1A3568 100%);
    min-height: 520px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}
.poles-hero-content { position: relative; z-index: 2; max-width: 680px; }
.poles-hero h1 { font-family: 'Sora', sans-serif; font-size: 42px; font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 18px; }
.poles-hero p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 32px; }
.hero-map { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.3; will-change: transform; pointer-events: none; }

/* Poles detail */
.pole-detail { padding: 72px 0; }
.pole-detail:nth-child(even) { background: var(--bg-alt); }
.pole-detail-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 768px) { .pole-detail-inner { grid-template-columns: 1fr; } }
.pole-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.pole-detail h2 { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 16px; }
.pole-detail .pole-desc { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.pub-mini-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; margin-bottom: 12px; }
.pub-mini-card .pub-type { font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--turq); letter-spacing: 0.06em; }
.pub-mini-card h4 { font-family: 'Sora', sans-serif; font-size: 14px; color: var(--navy); margin-top: 4px; }

/* ── Page Blog ── */
.blog-hero { background: var(--navy); padding: 60px 0; text-align: center; }
.blog-hero h1 { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 700; color: #fff; }
.blog-hero p { color: rgba(255,255,255,0.7); margin-top: 10px; }
.blog-list { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
@media (max-width: 900px) { .blog-list { grid-template-columns: 1fr; } }
.blog-card-lg { border-bottom: 1px solid var(--border); padding-bottom: 28px; margin-bottom: 28px; }
.blog-card-lg h2 { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.blog-card-lg h2 a { text-decoration: none; color: inherit; }
.blog-card-lg h2 a:hover { color: var(--royal); }
.blog-sidebar { position: sticky; top: 80px; }
.sidebar-section h3 { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }

/* ── Page Publication ── */
.pub-hero { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 48px 0; }
.pub-badge { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; background: var(--turq); color: #fff; margin-bottom: 16px; }
.pub-detail-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
@media (max-width: 768px) { .pub-detail-grid { grid-template-columns: 1fr; } }
.pub-sidebar-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 24px; position: sticky; top: 80px; }
.download-btn { display: flex; align-items: center; gap: 10px; background: var(--turq); color: #fff; padding: 12px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 14px; margin-bottom: 12px; transition: filter 0.2s; }
.download-btn:hover { filter: brightness(1.08); }

/* ── Page Don ── */
.don-hero {
    background: linear-gradient(155deg, var(--navy-dark) 0%, #1A3568 60%, #1E3B6E 100%);
    display: grid;
    grid-template-columns: 1fr 420px;
    min-height: 480px;
}
@media (max-width: 900px) { .don-hero { grid-template-columns: 1fr; } }
.dh-text-col { padding: 64px 48px; display: flex; flex-direction: column; justify-content: center; }
.dh-text-col h1 { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 16px; }
.dh-text-col h1 em { color: var(--gold-lt); font-style: normal; }
.dh-text-col p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 28px; }
.trust-item { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.85); font-size: 14px; margin-bottom: 10px; }
.trust-check { color: var(--turq); flex-shrink: 0; margin-top: 2px; }
.dh-form-col { background: #fff; box-shadow: -8px 0 32px rgba(0,0,0,0.2); display: flex; flex-direction: column; }
.form-header { background: var(--gold); color: var(--navy); padding: 16px 24px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px; }
.form-body { padding: 24px; flex: 1; }
.freq-group { display: flex; gap: 8px; margin-bottom: 20px; }
.freq-btn { flex: 1; padding: 9px; border: 1px solid var(--border); border-radius: 999px; background: #fff; font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.freq-btn.active { background: var(--turq); color: #fff; border-color: var(--turq); }
.amounts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
.amount-btn { padding: 10px 6px; border: 1px solid var(--border); border-radius: 8px; background: #fff; cursor: pointer; text-align: center; transition: all 0.2s; }
.amount-btn .amt { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); display: block; }
.amount-btn .impact { font-size: 10px; color: var(--muted); display: block; margin-top: 2px; }
.amount-btn.selected { border-color: var(--turq); background: rgba(74,175,212,0.08); }
.amount-btn.selected .amt { color: var(--turq); }
.fiscal-card { background: rgba(74,175,212,0.08); border-left: 3px solid var(--turq); border-radius: 4px; padding: 10px 12px; font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.don-cta-btn { width: 100%; background: var(--turq); color: #fff; border: none; border-radius: 8px; padding: 14px; font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; cursor: pointer; transition: filter 0.2s; }
.don-cta-btn:hover { filter: brightness(1.08); }
.payment-icons { display: flex; justify-content: center; gap: 12px; margin-top: 12px; opacity: 0.5; font-size: 11px; color: var(--muted); }

/* Don — sections */
.adhesion-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .adhesion-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .adhesion-grid { grid-template-columns: 1fr; } }
.adhesion-card { text-align: center; }
.adhesion-card.featured { background: var(--navy); color: #fff; border: none; }
.adhesion-card .plan-price { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 700; color: var(--turq); display: block; margin: 12px 0; }
.adhesion-card.featured .plan-price { color: var(--gold); }
.adhesion-card .plan-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; }
.adhesion-card .plan-period { font-size: 12px; opacity: 0.6; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 16px 20px; cursor: pointer; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; color: var(--navy); }
.faq-answer { color: var(--muted); font-size: 14px; margin-top: 10px; display: none; line-height: 1.6; }
.faq-answer.open { display: block; }

/* ═══════════════════════════════════════════════════════════
   PAGE PÔLES — redesign v2
═══════════════════════════════════════════════════════════ */

/* Hero — left-aligned with right index nav */
.poles-hero-v2 {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    min-height: 580px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 240px;
    align-items: center;
    padding: 80px 0;
}
.phv2-content {
    padding: 0 48px;
    position: relative; z-index: 2;
}
.phv2-content h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(30px, 3.2vw, 46px);
    font-weight: 700; color: #fff;
    line-height: 1.18; margin: 20px 0 18px;
}
.phv2-content h1 em { color: var(--gold-lt); font-style: normal; }
.phv2-content p {
    color: rgba(255,255,255,0.68); font-size: 16px;
    line-height: 1.7; max-width: 520px; margin-bottom: 32px;
}
.phv2-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Right index nav */
.phv2-index {
    height: 100%;
    display: flex; flex-direction: column;
    justify-content: center; gap: 4px;
    padding: 0 40px 0 0;
    border-left: 1px solid rgba(255,255,255,0.08);
    position: relative; z-index: 2;
}
.phv2-index-item {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 10px 12px; border-radius: 8px;
    text-decoration: none;
    color: rgba(255,255,255,0.4);
    font-family: 'Sora', sans-serif;
    transition: background 0.2s, color 0.2s;
}
.phv2-index-item:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.9); }
.phv2-idx-num { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; margin-top: 2px; flex-shrink: 0; }
.phv2-idx-name { font-size: 12px; line-height: 1.4; }

/* Pole overview grid */
.poc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.poc-card {
    background: var(--bg);
    padding: 32px 28px;
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    border-left: 3px solid var(--pole-color, var(--turq));
    transition: background 0.2s;
}
.poc-card:hover { background: var(--bg-alt); }
.poc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.poc-num { font-family:'Sora'; font-size:11px; font-weight:700; color:var(--muted); letter-spacing:0.14em; }
.poc-icon {
    width:36px; height:36px; border-radius:8px;
    display:flex; align-items:center; justify-content:center;
    background: color-mix(in srgb, var(--pole-color, var(--turq)) 12%, transparent);
    color: var(--pole-color, var(--turq));
    flex-shrink: 0;
}
.poc-name { font-family:'Sora'; font-size:15px; font-weight:600; color:var(--navy); line-height:1.35; margin-bottom:8px; }
.poc-desc { font-size:13px; color:var(--muted); line-height:1.55; flex:1; margin-bottom:16px; }
.poc-link { font-size:12px; color:var(--turq); font-weight:600; font-family:'Sora'; margin-top:auto; }

/* Pole detail sections (redesigned) */
.pole-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}
.pole-section-alt { background: var(--bg-alt); }
.pole-bg-num {
    position: absolute;
    right: -20px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Sora';
    font-size: 220px; font-weight: 800;
    color: rgba(26,53,104,0.045);
    line-height: 1;
    pointer-events: none; user-select: none; z-index: 0;
}
.pole-section-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    align-items: start;
    position: relative; z-index: 1;
}
.pole-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.pole-index-badge {
    font-family: 'Sora'; font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 4px; border: 1px solid;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.pole-color-line { width: 32px; height: 2px; border-radius: 1px; }
.pole-title { font-family:'Sora'; font-size:26px; font-weight:600; color:var(--navy); line-height:1.3; margin-bottom:16px; }
.pole-desc-full { font-size:15px; color:var(--muted); line-height:1.72; }

.pole-pubs-title {
    font-family:'Sora'; font-size:11px; font-weight:700;
    text-transform:uppercase; letter-spacing:0.1em;
    color:var(--muted); margin-bottom:14px;
}
.pole-pubs-list { display:flex; flex-direction:column; gap:1px; }
.pole-pub-item {
    display:block; text-decoration:none; color:inherit;
    padding:16px 18px;
    background:var(--bg);
    border-left:3px solid var(--border);
    transition:border-left-color 0.2s, background 0.2s;
}
.pole-section-alt .pole-pub-item { background:#fff; }
.pole-pub-item:hover { border-left-color:var(--turq); background:rgba(74,175,212,0.04); }
.pole-pub-title { font-family:'Sora'; font-size:14px; font-weight:600; color:var(--navy); line-height:1.4; margin:6px 0 4px; }
.pole-pub-date { font-size:12px; color:var(--muted); }
.pole-no-pubs { font-size:14px; color:var(--muted); font-style:italic; padding:16px 0; }

/* Publication type chips (shared) */
.pub-type-chip { display:inline-block; font-size:10px; font-weight:700; font-family:'Sora'; text-transform:uppercase; letter-spacing:0.08em; padding:3px 8px; border-radius:3px; }
.pub-type-chip.policy-brief, .pub-type-chip.pub-type-policy-brief { background:rgba(42,111,168,0.12); color:#2B6FA8; }
.pub-type-chip.rapport, .pub-type-chip.pub-type-rapport { background:rgba(74,175,212,0.14); color:#1e8db0; }
.pub-type-chip.cahier, .pub-type-chip.pub-type-cahier { background:rgba(201,164,60,0.15); color:#8a6510; }
.pub-type-chip.tribune, .pub-type-chip.pub-type-tribune { background:rgba(26,53,104,0.1); color:var(--navy); }

/* Researchers CTA section */
.researchers-section { background: var(--navy-dark); padding: 72px 0; }
.researchers-inner { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.researchers-text .eyebrow { background:rgba(74,175,212,0.15); color:var(--turq); }
.researchers-text h2 { font-family:'Sora'; font-size:28px; font-weight:700; color:#fff; margin:16px 0 0; line-height:1.3; }
.researchers-text p { color:rgba(255,255,255,0.6); line-height:1.72; margin:16px 0 28px; max-width:400px; }
.researchers-stats { display:flex; gap:36px; padding: 24px 0; border-top:1px solid rgba(255,255,255,0.08); border-bottom:1px solid rgba(255,255,255,0.08); }
.rs-stat { display:flex; flex-direction:column; }
.rs-num { font-family:'Sora'; font-size:34px; font-weight:800; color:var(--gold-lt); line-height:1; }
.rs-label { font-size:12px; color:rgba(255,255,255,0.45); margin-top:4px; }
.researchers-visual {
    display:grid; grid-template-columns:repeat(4,1fr); gap:10px;
}
.researcher-avatar {
    aspect-ratio:1; border-radius:50%; overflow:hidden;
    opacity:0; animation:rAvIn 0.5s ease forwards;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    display:flex; align-items:center; justify-content:center;
}
@keyframes rAvIn { from{opacity:0;transform:scale(0.8)} to{opacity:1;transform:scale(1)} }
.researcher-avatar svg { width:60%; height:60%; }

/* ═══════════════════════════════════════════════════════════
   PAGE ACTUALITÉS — redesign v2
═══════════════════════════════════════════════════════════ */
.blog-page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 72px 0 0 0;
    position: relative; overflow: hidden;
}
.blog-page-hero::before {
    content:''; position:absolute; inset:0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2748%27 height=%2748%27%3E%3Cpath d=%27M.5 48V.5H48%27 fill=%27none%27 stroke=%27rgba%28255,255,255,0.035%29%27 stroke-width=%271%27/%3E%3C/svg%3E");
    background-size:48px 48px; pointer-events:none;
}
.bph-inner {
    display:grid; grid-template-columns:1fr auto;
    align-items:end; gap:48px;
    position:relative; z-index:1;
}
.bph-title {
    font-family:'Sora'; font-size:clamp(34px,4vw,54px); font-weight:700;
    color:#fff; line-height:1.1; margin:16px 0 14px;
}
.bph-title em { color:var(--gold-lt); font-style:normal; }
.bph-sub { color:rgba(255,255,255,0.6); font-size:16px; line-height:1.65; max-width:520px; }
.bph-meta { text-align:right; padding-bottom:8px; }
.bph-count-num { display:block; font-family:'Sora'; font-size:52px; font-weight:800; color:var(--gold-lt); line-height:1; }
.bph-count-label { font-size:11px; color:rgba(255,255,255,0.4); text-transform:uppercase; letter-spacing:0.12em; font-family:'Sora'; }
.bph-formats { display:flex; gap:6px; justify-content:flex-end; flex-wrap:wrap; margin-top:20px; }
.bph-fmt-chip { font-size:11px; font-family:'Sora'; font-weight:600; padding:4px 10px; border:1px solid rgba(255,255,255,0.18); border-radius:999px; color:rgba(255,255,255,0.55); }
.bph-rule { height:3px; background:linear-gradient(90deg,var(--turq) 0%,var(--gold) 60%,transparent 100%); margin-top:40px; }

/* Blog section label style */
.blog-section-label {
    font-family:'Sora'; font-size:11px; font-weight:700;
    text-transform:uppercase; letter-spacing:0.12em; color:var(--muted);
    display:flex; align-items:center; gap:10px;
}
.blog-section-label::before { content:''; display:block; width:24px; height:1px; background:var(--turq); }
.blog-grid-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:32px; }
.blog-count-chip { font-size:12px; font-family:'Sora'; font-weight:600; background:rgba(74,175,212,0.1); color:var(--turq); padding:4px 12px; border-radius:999px; }

/* Featured article card */
.blog-featured-card {
    display:grid; grid-template-columns:1fr 340px;
    border-radius:16px; overflow:hidden;
    text-decoration:none; color:inherit;
    transition:transform 0.2s, box-shadow 0.25s;
    margin-top:28px;
}
.blog-featured-card:hover { transform:translateY(-3px); box-shadow:0 20px 48px rgba(26,53,104,0.18); }
.bfc-left { padding:44px 48px; display:flex; flex-direction:column; background:var(--bg); border:1px solid var(--border); border-right:none; border-radius:16px 0 0 16px; }
.bfc-title { font-family:'Sora'; font-size:24px; font-weight:700; color:var(--navy); line-height:1.3; margin:14px 0 14px; flex:1; }
.bfc-excerpt { font-size:15px; color:var(--muted); line-height:1.68; }
.bfc-byline { display:flex; align-items:center; gap:10px; margin-top:20px; font-size:13px; color:var(--muted); font-family:'Sora'; }
.bfc-sep { color:var(--border); }
.bfc-right {
    background:linear-gradient(145deg,var(--navy-dark) 0%,var(--navy) 100%);
    display:flex; align-items:center; justify-content:center;
    position:relative; overflow:hidden; border-radius:0 16px 16px 0;
}
.bfc-bg-num { position:absolute; font-family:'Sora'; font-size:160px; font-weight:800; color:rgba(255,255,255,0.025); line-height:1; pointer-events:none; }
.bfc-deco { position:relative; z-index:1; width:100px; height:100px; border-radius:20px; background:rgba(74,175,212,0.08); display:flex; align-items:center; justify-content:center; border:1px solid rgba(74,175,212,0.2); }

/* Blog tag chip */
.blog-tag-chip { display:inline-block; font-size:11px; font-weight:700; font-family:'Sora'; text-transform:uppercase; letter-spacing:0.08em; padding:3px 10px; border-radius:999px; background:rgba(74,175,212,0.12); color:var(--turq); }
.blog-tag-chip-sm { font-size:10px; padding:2px 7px; }

/* Blog article grid */
.blog-card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.blog-card {
    background:var(--bg); border-radius:12px;
    padding:24px; display:flex; flex-direction:column;
    text-decoration:none; color:inherit;
    border:1px solid var(--border);
    border-top:3px solid var(--border);
    transition:border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { border-color:var(--turq); border-top-color:var(--turq); transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,0.07); }
.bc-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; }
.bc-date { font-size:11px; color:var(--muted); font-family:'Sora'; }
.bc-title { font-family:'Sora'; font-size:15px; font-weight:700; color:var(--navy); line-height:1.4; margin-bottom:10px; flex:1; }
.bc-excerpt { font-size:13px; color:var(--muted); line-height:1.6; margin-bottom:14px; }
.bc-byline { display:flex; justify-content:space-between; align-items:center; font-size:12px; color:var(--muted); font-family:'Sora'; margin-top:auto; padding-top:12px; border-top:1px solid var(--border); }
.bc-read { color:var(--turq); font-weight:600; }
.blog-pagination { margin-top:48px; }

/* Blog mission section */
.bms-inner { display:grid; grid-template-columns:1fr 360px; gap:60px; align-items:start; }
.bms-list { list-style:none; padding:0; margin:16px 0 0; display:flex; flex-direction:column; gap:10px; }
.bms-list li { display:flex; align-items:center; gap:10px; font-size:15px; color:var(--muted); }
.bms-cta-box { background:var(--navy-dark); border-radius:16px; padding:32px; }
.bms-cta-label { font-family:'Sora'; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.14em; color:var(--turq); margin-bottom:8px; display:block; }

/* Blog newsletter */
.blog-nl-section { background:linear-gradient(100deg,var(--navy-dark) 0%,var(--navy) 60%,#1E3B6E 100%); padding:60px 0; }
.nl-inner { display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.nl-title { font-family:'Sora'; font-size:26px; font-weight:700; color:#fff; }
.nl-sub { color:rgba(255,255,255,0.55); margin-top:6px; font-size:15px; }
.nl-form { display:flex; gap:8px; }
.nl-input { padding:12px 18px; border-radius:var(--radius-sm); border:1px solid rgba(255,255,255,0.15); background:rgba(255,255,255,0.08); color:#fff; font-size:14px; width:280px; }
.nl-input::placeholder { color:rgba(255,255,255,0.35); }
.nl-input:focus { outline:none; border-color:var(--turq); }

/* ═══════════════════════════════════════════════════════════
   PAGE PUBLICATIONS — redesign v2
═══════════════════════════════════════════════════════════ */
.pub-page-hero {
    background:linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 100%);
    padding:72px 0 0 0; overflow:hidden; position:relative;
}
.pub-page-hero::before {
    content:''; position:absolute; inset:0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2748%27 height=%2748%27%3E%3Cpath d=%27M.5 48V.5H48%27 fill=%27none%27 stroke=%27rgba%28255,255,255,0.03%29%27 stroke-width=%271%27/%3E%3C/svg%3E");
    background-size:48px 48px; pointer-events:none;
}
.pph-top { position:relative; z-index:1; padding-bottom:48px; }
.pph-title { font-family:'Sora'; font-size:clamp(28px,3.5vw,44px); font-weight:700; color:#fff; margin:14px 0 12px; }
.pph-sub { color:rgba(255,255,255,0.6); max-width:560px; line-height:1.65; }
.pph-type-bar {
    display:flex; align-items:stretch;
    background:rgba(0,0,0,0.25);
    border-top:1px solid rgba(255,255,255,0.07);
    position:relative; z-index:1;
}
.pph-type-item {
    flex:1; text-align:center; padding:20px 16px;
    text-decoration:none; color:rgba(255,255,255,0.45);
    border-right:1px solid rgba(255,255,255,0.06);
    transition:background 0.2s, color 0.2s;
    font-family:'Sora';
}
.pph-type-item:last-child { border-right:none; }
.pph-type-item:hover { background:rgba(255,255,255,0.05); color:#fff; }
.pph-type-item.active { color:var(--gold-lt); border-bottom:2px solid var(--gold); background:rgba(247,181,0,0.07); }
.pph-type-count { display:block; font-size:22px; font-weight:800; line-height:1; margin-bottom:5px; }
.pph-type-name { font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:0.08em; }

/* Sticky filter bar */
.pub-filters-bar { background:var(--bg); border-bottom:1px solid var(--border); padding:12px 0; position:sticky; top:76px; z-index:10; box-shadow:0 2px 8px rgba(0,0,0,0.04); }
.pfb-inner { display:flex; align-items:center; gap:16px; }
.pfb-label { font-family:'Sora'; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:var(--muted); white-space:nowrap; }
.pfb-chips { display:flex; gap:6px; flex:1; flex-wrap:wrap; }
.pfb-chip { font-size:12px; font-family:'Sora'; font-weight:600; padding:5px 12px; border-radius:999px; background:var(--bg-alt); color:var(--muted); text-decoration:none; border:1px solid var(--border); transition:all 0.15s; white-space:nowrap; }
.pfb-chip:hover { border-color:var(--turq); color:var(--turq); }
.pfb-chip.active { background:var(--navy); color:#fff; border-color:var(--navy); }
.pfb-count { font-size:12px; color:var(--muted); font-family:'Sora'; white-space:nowrap; }

/* Featured publications (top 3 large) */
.pub-featured-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:28px; }
.pub-featured-card {
    border-radius:12px; overflow:hidden;
    text-decoration:none; color:inherit;
    background:var(--bg); border:1px solid var(--border);
    display:flex; flex-direction:column;
    transition:transform 0.2s, box-shadow 0.2s;
}
.pub-featured-card:hover { transform:translateY(-3px); box-shadow:0 12px 32px rgba(0,0,0,0.09); }
.pfc-type-bar { height:4px; }
.pfc-type-bar.type-policy-brief { background:#2B6FA8; }
.pfc-type-bar.type-rapport { background:#4AAFD4; }
.pfc-type-bar.type-cahier { background:#C9A43C; }
.pfc-type-bar.type-tribune { background:var(--navy); }
.pfc-body { padding:24px; flex:1; display:flex; flex-direction:column; }
.pfc-title { font-family:'Sora'; font-size:16px; font-weight:700; color:var(--navy); line-height:1.4; margin:10px 0; flex:1; }
.pfc-abstract { font-size:13px; color:var(--muted); line-height:1.6; margin-bottom:16px; }
.pfc-foot { display:flex; align-items:center; justify-content:space-between; font-size:12px; color:var(--muted); font-family:'Sora'; margin-top:auto; padding-top:12px; border-top:1px solid var(--border); }
.pfc-oa { display:flex; align-items:center; gap:4px; color:var(--turq); font-weight:600; }

/* Library grid */
.pub-library-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:28px; }
.pub-lib-card { display:flex; text-decoration:none; color:inherit; background:var(--bg); border-radius:10px; overflow:hidden; border:1px solid var(--border); transition:border-color 0.2s, transform 0.15s; }
.pub-lib-card:hover { border-color:var(--turq); transform:translateY(-2px); }
.plc-accent { width:4px; flex-shrink:0; }
.plc-accent.type-policy-brief { background:#2B6FA8; }
.plc-accent.type-rapport { background:#4AAFD4; }
.plc-accent.type-cahier { background:#C9A43C; }
.plc-accent.type-tribune { background:var(--navy); }
.plc-body { padding:16px 18px; flex:1; display:flex; flex-direction:column; }
.plc-title { font-family:'Sora'; font-size:14px; font-weight:600; color:var(--navy); line-height:1.4; margin:7px 0 6px; flex:1; }
.plc-abstract { font-size:12px; color:var(--muted); line-height:1.55; margin-bottom:10px; }
.plc-foot { display:flex; justify-content:space-between; align-items:center; margin-top:auto; }

/* Academic citation */
.citation-section { border-top:1px solid var(--border); }
.cite-inner { display:grid; grid-template-columns:1fr 1.3fr; gap:60px; align-items:start; }
.cite-formats { display:flex; gap:6px; margin-top:20px; }
.cite-fmt-btn { font-family:'Sora'; font-size:11px; font-weight:600; padding:5px 12px; border-radius:4px; cursor:pointer; border:1px solid var(--border); color:var(--muted); background:none; transition:all 0.15s; }
.cite-fmt-btn.active { background:var(--navy); color:#fff; border-color:var(--navy); }
.cite-box { background:var(--bg-alt); border-radius:12px; padding:28px; border:1px solid var(--border); }
.cite-box-label { font-family:'Sora'; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:var(--turq); margin-bottom:14px; display:block; }
.cite-code { display:block; font-family:'Courier New',monospace; font-size:13px; line-height:1.75; color:var(--navy); word-break:break-word; }
.cite-code em { font-style:italic; color:var(--muted); }
.cite-box-note { display:flex; align-items:flex-start; gap:8px; margin-top:16px; font-size:12px; color:var(--muted); border-top:1px solid var(--border); padding-top:12px; }

/* ── Responsive (pages secondaires) ── */
@media (max-width: 900px) {
    .poles-hero-v2 { grid-template-columns:1fr; padding:60px 0 40px; }
    .phv2-index { display:none; }
    .poc-grid { grid-template-columns:1fr; }
    .pole-section-inner { grid-template-columns:1fr; gap:32px; }
    .researchers-inner { grid-template-columns:1fr; }
    .bph-inner { grid-template-columns:1fr; }
    .bph-meta { text-align:left; }
    .blog-featured-card { grid-template-columns:1fr; }
    .bfc-right { display:none; }
    .blog-card-grid { grid-template-columns:1fr 1fr; }
    .bms-inner { grid-template-columns:1fr; }
    .nl-inner { flex-direction:column; align-items:flex-start; }
    .pph-type-bar { flex-wrap:wrap; }
    .prog-hero-grid { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
    .prog-hero-index { display: none; }
    .prog-overview-grid { grid-template-columns: 1fr; }
    .prog-section-inner, .prog-section-reverse { grid-template-columns: 1fr; gap: 28px; }
    .prog-section-reverse .prog-section-text { order: 1; }
    .prog-section-reverse .prog-section-visual { order: 2; }
    .prog-closing-stats { flex-wrap: wrap; gap: 28px; }
    .pub-featured-grid { grid-template-columns:1fr; }
    .pub-library-grid { grid-template-columns:1fr 1fr; }
    .cite-inner { grid-template-columns:1fr; }
}
@media (max-width: 600px) {
    .blog-card-grid { grid-template-columns:1fr; }
    .pub-library-grid { grid-template-columns:1fr; }
    .researchers-stats { flex-wrap:wrap; gap:20px; }
}

/* ═══════════════════════════════════════════════════════════
   ARTICLE DÉTAIL (blog/show)
═══════════════════════════════════════════════════════════ */
.article-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 60px 0 0;
    position: relative; overflow: hidden;
}
.article-hero::before {
    content:''; position:absolute; inset:0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2748%27 height=%2748%27%3E%3Cpath d=%27M.5 48V.5H48%27 fill=%27none%27 stroke=%27rgba%28255,255,255,0.03%29%27 stroke-width=%271%27/%3E%3C/svg%3E");
    background-size:48px 48px; pointer-events:none;
}
.ah-inner { position:relative; z-index:1; max-width:780px; }
.ah-top { display:flex; align-items:center; gap:14px; margin-bottom:24px; }
.ah-reading { font-family:'Sora'; font-size:11px; font-weight:600; color:rgba(255,255,255,0.4); text-transform:uppercase; letter-spacing:0.1em; }
.ah-title {
    font-family:'Sora'; font-size:clamp(24px,3vw,38px); font-weight:700;
    color:#fff; line-height:1.25; margin-bottom:20px;
}
.ah-byline {
    display:flex; align-items:center; gap:10px;
    font-size:13px; color:rgba(255,255,255,0.5);
    font-family:'Sora'; padding-bottom:40px;
}
.ah-byline-sep { color:rgba(255,255,255,0.2); }
.ah-byline-author { color:rgba(255,255,255,0.75); font-weight:600; }
.ah-rule { height:3px; background:linear-gradient(90deg,var(--turq) 0%,var(--gold) 60%,transparent 100%); }

/* Breadcrumb */
.breadcrumb {
    display:flex; align-items:center; gap:6px;
    font-family:'Sora'; font-size:11px; font-weight:600;
    text-transform:uppercase; letter-spacing:0.1em;
    margin-bottom:24px;
}
.breadcrumb a { color:rgba(255,255,255,0.4); text-decoration:none; transition:color 0.15s; }
.breadcrumb a:hover { color:rgba(255,255,255,0.8); }
.breadcrumb-sep { color:rgba(255,255,255,0.2); }
.breadcrumb-current { color:rgba(255,255,255,0.7); }

/* Article layout */
.article-layout { display:grid; grid-template-columns:1fr 300px; gap:56px; align-items:start; }
@media (max-width:900px) { .article-layout { grid-template-columns:1fr; } }

.article-body {
    font-size:17px; line-height:1.82; color:#2d3748;
}
.article-body p { margin-bottom:1.4em; }
.article-body h2 { font-family:'Sora'; font-size:22px; font-weight:700; color:var(--navy); margin:2em 0 0.7em; padding-left:18px; border-left:3px solid var(--turq); }
.article-body h3 { font-family:'Sora'; font-size:18px; font-weight:600; color:var(--navy); margin:1.6em 0 0.6em; }
.article-body blockquote { border-left:4px solid var(--gold); margin:1.8em 0; padding:16px 24px; background:rgba(201,164,60,0.05); font-style:italic; color:var(--muted); font-size:16px; border-radius:0 8px 8px 0; }
.article-body ul, .article-body ol { padding-left:1.4em; margin-bottom:1.4em; }
.article-body li { margin-bottom:0.5em; }
.article-body a { color:var(--royal); text-decoration:underline; }
.article-body strong { color:var(--navy); font-weight:700; }
.article-body img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 8px;
    margin: 24px auto;
    box-shadow: 0 2px 12px rgba(26,53,104,0.10);
    object-fit: contain;
}
.article-body figure { margin: 24px 0; text-align: center; }
.article-body figure img { margin: 0 auto; }
.article-body figure figcaption { font-size:13px; color:var(--muted); margin-top:8px; font-style:italic; }

.article-footer { margin-top:48px; padding-top:28px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.article-back { display:inline-flex; align-items:center; gap:8px; color:var(--muted); font-size:14px; font-weight:600; font-family:'Sora'; text-decoration:none; transition:color 0.15s; }
.article-back:hover { color:var(--navy); }
.article-back svg { transition:transform 0.15s; }
.article-back:hover svg { transform:translateX(-3px); }

/* Article sidebar */
.article-sidebar { position:sticky; top:96px; }
.asb-box {
    background:var(--bg-alt); border-radius:14px; padding:24px;
    border:1px solid var(--border); margin-bottom:16px;
}
.asb-label { font-family:'Sora'; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.12em; color:var(--muted); margin-bottom:12px; display:block; }
.asb-about { font-size:13px; color:var(--muted); line-height:1.65; margin-bottom:16px; }
.asb-tags { display:flex; flex-wrap:wrap; gap:6px; }

/* ═══════════════════════════════════════════════════════════
   PUBLICATION DÉTAIL (publication/show)
═══════════════════════════════════════════════════════════ */
.pub-detail-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 60px 0 0; position:relative; overflow:hidden;
}
.pub-detail-hero::before {
    content:''; position:absolute; inset:0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2748%27 height=%2748%27%3E%3Cpath d=%27M.5 48V.5H48%27 fill=%27none%27 stroke=%27rgba%28255,255,255,0.03%29%27 stroke-width=%271%27/%3E%3C/svg%3E");
    background-size:48px 48px; pointer-events:none;
}
.pdh-inner { position:relative; z-index:1; max-width:820px; }
.pdh-meta { display:flex; align-items:center; gap:14px; margin-bottom:20px; }
.pdh-pole { font-family:'Sora'; font-size:12px; color:rgba(255,255,255,0.5); }
.pdh-title {
    font-family:'Sora'; font-size:clamp(22px,2.8vw,34px); font-weight:700;
    color:#fff; line-height:1.3; margin-bottom:18px;
}
.pdh-byline {
    display:flex; align-items:center; gap:12px; flex-wrap:wrap;
    font-size:13px; color:rgba(255,255,255,0.5); font-family:'Sora';
    padding-bottom:40px;
}
.pdh-oa { display:inline-flex; align-items:center; gap:5px; background:rgba(74,175,212,0.15); color:var(--turq); padding:3px 10px; border-radius:999px; font-size:11px; font-weight:700; }

/* Publication detail layout */
.pub-detail-layout { display:grid; grid-template-columns:1fr 300px; gap:48px; align-items:start; }
@media (max-width:900px) { .pub-detail-layout { grid-template-columns:1fr; } }

.pub-abstract-box {
    background:rgba(74,175,212,0.05); border-radius:12px;
    padding:28px; margin-bottom:32px;
    border-left:4px solid var(--turq);
}
.pub-abstract-label { font-family:'Sora'; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:var(--turq); margin-bottom:10px; display:block; }
.pub-abstract-text { font-size:16px; line-height:1.75; color:var(--navy); }

.pub-body-text { font-size:15px; line-height:1.78; color:var(--muted); }

/* Publication sidebar v2 */
.pub-sidebar-v2 { position:sticky; top:96px; display:flex; flex-direction:column; gap:16px; }
.psv-download {
    display:flex; align-items:center; gap:12px;
    background:var(--turq); color:#fff;
    padding:14px 18px; border-radius:10px;
    text-decoration:none; font-weight:700; font-size:14px;
    font-family:'Sora'; transition:filter 0.2s, transform 0.15s;
    border:none;
}
.psv-download:hover { filter:brightness(1.08); transform:translateY(-1px); }
.psv-card { background:var(--bg-alt); border-radius:12px; padding:20px; border:1px solid var(--border); }
.psv-label { font-family:'Sora'; font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.12em; color:var(--muted); margin-bottom:10px; display:block; }
.psv-pole-badge { display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:8px; background:rgba(26,53,104,0.06); border:1px solid var(--border); font-size:13px; color:var(--navy); font-weight:600; font-family:'Sora'; }
.psv-oa-badge { display:flex; align-items:center; gap:6px; color:var(--turq); font-size:13px; font-weight:700; font-family:'Sora'; }
.psv-footer-cta { background:var(--navy-dark); border-radius:12px; padding:20px; text-align:center; }
.psv-footer-cta p { color:rgba(255,255,255,0.6); font-size:13px; line-height:1.55; margin-bottom:14px; }

/* breadcrumb dark variant already defined above */
.breadcrumb-light a { color:rgba(255,255,255,0.4); }
.breadcrumb-light .breadcrumb-current { color:rgba(255,255,255,0.7); }

/* Don — section headers (remove inline style debt) */
.section-heading-center { text-align:center; margin-bottom:40px; }
.section-heading-center h2 { font-family:'Sora'; font-size:30px; font-weight:700; color:var(--navy); margin-top:10px; }

/* ── Chatbot ── */
.chatbot-toggle { position: fixed; bottom: 80px; right: 24px; z-index: 200; width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: transform 0.2s; }
.chatbot-toggle:hover { transform: scale(1.08); }
.chatbot-invite {
    position: fixed;
    bottom: 92px;
    right: 86px;
    z-index: 199;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--navy);
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 600;
    max-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
}
.chatbot-invite.visible { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.chatbot-invite::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
}
.chatbot-invite-text { cursor: pointer; }
.chatbot-invite-close { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 16px; line-height: 1; padding: 0; margin-left: 2px; flex-shrink: 0; }
.chatbot-window { position: fixed; bottom: 148px; right: 24px; z-index: 200; width: 360px; max-height: 480px; background: var(--navy-deep); border-radius: 16px; box-shadow: 0 8px 40px rgba(0,0,0,0.25); display: flex; flex-direction: column; display: none; overflow: hidden; }
.chatbot-window.open { display: flex; }
.chatbot-header { background: linear-gradient(135deg, var(--royal), var(--turq)); color: #fff; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.chatbot-header-info { display: flex; align-items: center; gap: 12px; }
.chatbot-header-text h4 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin: 0; line-height: 1.3; }
.chatbot-status { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.85); margin-top: 2px; }
.chatbot-status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 2px rgba(255,255,255,0.25); flex-shrink: 0; }
.chatbot-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255,255,255,0.18);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
}
.chatbot-close-btn { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.15); border: none; color: #fff; cursor: pointer; font-size: 16px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background-color 0.15s; flex-shrink: 0; }
.chatbot-close-btn:hover { background: rgba(255,255,255,0.28); }
.chatbot-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--navy-deep); }
.chat-msg { padding: 10px 14px; border-radius: 10px; font-size: 14px; line-height: 1.5; max-width: 85%; }
.chat-msg.bot { background: rgba(255,255,255,0.07); color: #E4EAF5; border: 1px solid rgba(255,255,255,0.08); align-self: flex-start; }
.chat-msg.user { background: var(--turq); color: #fff; align-self: flex-end; }
.chatbot-input-row { padding: 12px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; gap: 8px; background: var(--navy-deep); flex-shrink: 0; }
.chatbot-input { flex: 1; padding: 8px 12px; border: 1px solid rgba(255,255,255,0.14); border-radius: 6px; font-size: 13px; background: rgba(255,255,255,0.06); color: #fff; }
.chatbot-input::placeholder { color: rgba(255,255,255,0.4); }
.chatbot-input:focus { outline: none; border-color: var(--turq); }
.chatbot-send { background: var(--turq); color: #fff; border: none; border-radius: 6px; padding: 8px 14px; font-size: 13px; font-weight: 600; cursor: pointer; }

/* ── Pagination ── */
.knp-pagination { display: flex; justify-content: center; gap: 8px; padding: 32px 0; }
.knp-pagination li { list-style: none; }
.knp-pagination a, .knp-pagination span { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 6px; border: 1px solid var(--border); color: var(--navy); text-decoration: none; font-size: 14px; }
.knp-pagination .current span { background: var(--turq); color: #fff; border-color: var(--turq); }
.knp-pagination a:hover { background: var(--bg-alt); }

/* ════════════════════════════════════════
   PAGE À PROPOS
════════════════════════════════════════ */
.about-hero {
    background: linear-gradient(100deg, var(--navy-dark) 0%, var(--navy) 60%, var(--royal) 100%);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.about-hero-inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: center;
    padding-bottom: 64px;
}
.about-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 12px 0 18px;
}
.about-hero-title em { color: var(--gold-lt); font-style: normal; }
.about-hero-sub { color: rgba(255,255,255,0.7); line-height: 1.72; max-width: 500px; margin-bottom: 28px; }
.about-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.about-hero-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-val-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about-val-icon {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--gold-lt);
    line-height: 1;
}
.about-val-label { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: #fff; }
.about-val-desc { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* Why section */
.about-why-grid { display: grid; grid-template-columns: 1fr 280px; gap: 56px; align-items: start; }
.about-why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.about-why-item { display: flex; gap: 16px; align-items: flex-start; }
.awi-num {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--turq);
    line-height: 1;
    flex-shrink: 0;
    min-width: 32px;
}
.about-why-item strong { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); }
.about-why-item p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 4px 0 0; }
.about-stat-panel {
    background: var(--navy-dark);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.asp-item { display: flex; flex-direction: column; gap: 4px; }
.asp-num { font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 800; color: var(--gold-lt); line-height: 1; }
.asp-label { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* Timeline */
.about-timeline { display: flex; flex-direction: column; gap: 0; max-width: 680px; margin: 0 auto; }
.atl-item { display: grid; grid-template-columns: 80px 1fr; gap: 24px; position: relative; padding-bottom: 32px; }
.atl-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 28px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.atl-year {
    font-family: 'Sora', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--turq);
    padding-top: 4px;
    text-align: right;
    padding-right: 20px;
    position: relative;
}
.atl-year::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--turq);
    border-radius: 50%;
}
.atl-content strong { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); display: block; margin-bottom: 6px; }
.atl-content p { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Partners */
.about-partners-section { position: relative; }
.about-partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-partner-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.about-partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(26,53,104,0.13);
    border-color: transparent;
}
.apc-logo-wrap { height: 56px; display: flex; align-items: center; }
.apc-logo-wrap img { max-height: 52px; max-width: 170px; object-fit: contain; }
.apc-logo-fallback {
    width: 52px; height: 52px; border-radius: 12px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Sora', sans-serif; font-weight: 700; font-size: 20px;
}
.apc-body { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.apc-type {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--turq);
    background: rgba(74,175,212,0.1);
    border-radius: 999px;
    padding: 4px 10px;
    width: fit-content;
}
.apc-name { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); }
.apc-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; flex: 1; }
.apc-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--turq); text-decoration: none; font-weight: 600;
    padding-top: 14px; border-top: 1px solid var(--border);
}
.apc-link:hover { color: var(--navy); }

/* ════════════════════════════════════════
   PAGE GOUVERNANCE
════════════════════════════════════════ */
.gov-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 70%, var(--royal) 100%);
    padding: 80px 0 0;
}
.gov-hero-inner { padding-bottom: 64px; max-width: 600px; }
.gov-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 12px 0 18px;
}
.gov-hero-sub { color: rgba(255,255,255,0.65); line-height: 1.72; max-width: 480px; }

.gov-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gov-team-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.gtc-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--turq), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.gtc-role { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--turq); }
.gtc-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); }
.gtc-bio { font-size: 12px; color: var(--muted); line-height: 1.55; margin: 0; text-align: left; }

.gov-council-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gov-council-card {
    border: 1px solid var(--border);
    border-left: 3px solid var(--turq);
    border-radius: 8px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
}
.gcc-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); }
.gcc-affil { font-size: 12px; color: var(--muted); }
.gcc-domain {
    font-size: 11px;
    font-weight: 600;
    color: var(--turq);
    margin-top: 4px;
    background: rgba(74,175,212,0.08);
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
}

.gov-transparency-grid { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.gov-transparency-cta {
    background: var(--navy-dark);
    border-radius: 14px;
    padding: 28px 24px;
}

/* ════════════════════════════════════════
   ABOUT — HISTOIRE (dark premium)
════════════════════════════════════════ */
.about-history-section {
    background: var(--navy-dark);
    padding: 80px 0;
}
.about-history-header {
    text-align: center;
    margin-bottom: 56px;
}
.about-history-header .eyebrow { color: var(--gold-lt); }
.about-history-header .section-title { color: #fff; }

.about-history-section .atl-item:not(:last-child)::before {
    background: rgba(201,164,60,0.25);
}
.about-history-section .atl-year {
    color: var(--gold-lt);
}
.about-history-section .atl-year::after {
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(201,164,60,0.18);
}
.about-history-section .atl-content strong { color: #fff; }
.about-history-section .atl-content p { color: rgba(255,255,255,0.58); }

/* ════════════════════════════════════════
   ABOUT — CTA (gold premium)
════════════════════════════════════════ */
.about-cta-section {
    background: linear-gradient(135deg, #C9A43C 0%, #E8B84B 55%, #D4AA40 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.about-cta-section::before {
    content: '';
    position: absolute;
    top: -90px; right: -90px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    pointer-events: none;
}
.about-cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px; left: -50px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}
.about-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1px auto;
    gap: 56px;
    align-items: center;
    position: relative;
}
.about-cta-copy .eyebrow {
    color: var(--navy-dark);
    opacity: 0.65;
}
.about-cta-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 700;
    color: var(--navy-dark);
    margin: 10px 0 14px;
    line-height: 1.22;
}
.about-cta-sub {
    color: rgba(18,33,61,0.68);
    line-height: 1.72;
    max-width: 460px;
    margin: 0;
    font-size: 15px;
}
.about-cta-divider {
    width: 1px;
    height: 130px;
    background: rgba(18,33,61,0.2);
    align-self: center;
}
.about-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 210px;
}
.btn-navy { background: var(--navy-dark); color: #fff; }
.btn-navy:hover { filter: brightness(1.18); }
.btn-outline-navy {
    background: transparent;
    border: 1.5px solid rgba(18,33,61,0.35);
    color: var(--navy-dark);
    font-weight: 600;
}
.btn-outline-navy:hover { background: rgba(18,33,61,0.08); filter: none; }

/* Responsive institutions */
@media (max-width: 900px) {
    .about-hero-inner,
    .about-why-grid,
    .gov-transparency-grid { grid-template-columns: 1fr; }
    .about-hero-values { grid-template-columns: 1fr 1fr; }
    .about-partners-grid,
    .gov-team-grid { grid-template-columns: repeat(2, 1fr); }
    .gov-council-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .about-cta-inner { grid-template-columns: 1fr; gap: 32px; }
    .about-cta-divider { width: 56px; height: 1px; }
    .about-cta-actions { flex-direction: row; flex-wrap: wrap; min-width: unset; }
}
@media (max-width: 600px) {
    .about-partners-grid,
    .gov-team-grid,
    .gov-council-grid { grid-template-columns: 1fr; }
    .about-hero-values { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   PAGE ÉVÉNEMENTS
════════════════════════════════════════ */
.events-hero {
    background: linear-gradient(100deg, var(--navy-dark) 0%, var(--navy) 60%, var(--royal) 100%);
    padding: 80px 0 0;
}
.events-hero-inner { padding-bottom: 64px; max-width: 620px; }
.events-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 12px 0 18px;
}
.events-hero-sub { color: rgba(255,255,255,0.65); line-height: 1.72; max-width: 440px; }

.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.event-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
    background: #fff;
}
.event-card:hover { box-shadow: 0 6px 24px rgba(27,42,74,0.12); transform: translateY(-2px); }
.ec-type-bar { height: 4px; background: var(--turq); }
.ec-type-bar.type-conference { background: var(--royal); }
.ec-type-bar.type-webinaire { background: var(--turq); }
.ec-type-bar.type-formation { background: var(--gold); }
.ec-type-bar.type-atelier { background: var(--purple); }
.ec-type-bar.type-table-ronde { background: var(--navy); }
.ec-type-bar.type-seminaire { background: var(--green); }
.ec-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ec-meta { display: flex; gap: 8px; align-items: center; }
.ec-type-chip {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--navy);
    background: var(--bg-alt);
    padding: 2px 8px;
    border-radius: 4px;
}
.ec-online {
    font-size: 10px;
    font-weight: 700;
    color: var(--turq);
    background: rgba(74,175,212,0.1);
    padding: 2px 8px;
    border-radius: 4px;
}
.ec-title { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.4; margin: 0; flex: 1; }
.ec-date, .ec-location { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.ec-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.ec-reg-open { font-size: 11px; font-weight: 600; color: var(--green); }
.ec-price { font-size: 13px; font-weight: 700; color: var(--navy); }
.ec-price-free { font-size: 11px; font-weight: 600; color: var(--turq); }

.events-past-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.event-past-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    text-decoration: none;
    background: #fff;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.event-past-card:hover { opacity: 1; }
.epc-type { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
.epc-title { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.35; }
.epc-date { font-size: 11px; color: var(--muted); }
.epc-loc { font-size: 11px; color: var(--turq); }

.events-empty { padding: 40px 0; text-align: center; color: var(--muted); }

/* Event detail */
.event-detail-hero {
    background: linear-gradient(100deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 80px 0 0;
}
.edh-inner { padding-bottom: 48px; }
.edh-meta { display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.edh-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 16px;
    max-width: 640px;
}
.edh-details { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.65); }
.edh-details span { display: flex; align-items: center; gap: 6px; }
.event-detail-layout { display: grid; grid-template-columns: 1fr 300px; gap: 48px; }

@media (max-width: 900px) {
    .events-grid, .events-past-grid { grid-template-columns: repeat(2, 1fr); }
    .event-detail-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .events-grid, .events-past-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   PAGE CONTACT
════════════════════════════════════════ */
.contact-hero {
    background: linear-gradient(100deg, var(--navy-dark) 0%, var(--navy) 60%, var(--royal) 100%);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2748%27 height=%2748%27%3E%3Cpath d=%27M.5 48V.5H48%27 fill=%27none%27 stroke=%27rgba%28255,255,255,0.045%29%27 stroke-width=%271%27/%3E%3C/svg%3E");
    background-size: 48px 48px;
    pointer-events: none;
}
.contact-hero-inner { position: relative; z-index: 1; padding-bottom: 64px; max-width: 560px; }
.contact-hero-icon {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--gold-lt);
    margin-bottom: 20px;
}
.contact-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 12px 0 18px;
}
.contact-hero-sub { color: rgba(255,255,255,0.65); line-height: 1.72; }

.contact-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; }
.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 40px 40px 36px;
    box-shadow: 0 24px 56px rgba(26,53,104,0.09);
}
.contact-form-col form { display: flex; flex-direction: column; gap: 20px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--navy);
}
.contact-field input,
.contact-field select,
.contact-field textarea {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 7px;
    font-size: 14px;
    font-family: inherit;
    color: var(--navy);
    background: #fff;
    transition: border-color 0.15s;
    width: 100%;
    box-sizing: border-box;
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: var(--turq);
    box-shadow: 0 0 0 3px rgba(74,175,212,0.12);
}
.contact-field ul.form-error { list-style: none; padding: 0; margin: 0; }
.contact-field ul.form-error li { font-size: 12px; color: var(--error); }
.contact-consent {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13px; color: var(--muted); line-height: 1.55;
    cursor: pointer;
}
.contact-consent input[type="checkbox"] {
    margin-top: 3px; width: 16px; height: 16px; flex-shrink: 0;
    accent-color: var(--turq); cursor: pointer;
}
.contact-consent a { color: var(--turq); text-decoration: underline; }
.contact-consent a:hover { color: var(--navy); }

.contact-flash-success {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    color: var(--success-text);
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.flash-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    border-radius: 8px;
    color: var(--success-text);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-info-col { display: flex; flex-direction: column; gap: 16px; }
.cic-box {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cic-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.cic-val { font-size: 14px; color: var(--navy); line-height: 1.5; margin: 4px 0 0; }
.cic-link { font-size: 14px; color: var(--turq); text-decoration: none; font-weight: 600; margin-top: 4px; }
.cic-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-form-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════
   ESPACE MEMBRE
════════════════════════════════════════ */
.member-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}
.member-sidebar {
    background: var(--navy-dark);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    position: sticky;
    top: 88px;
}
.member-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-dark);
    margin: 0 auto 14px;
}
.member-sidebar-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: #fff; margin: 0 0 4px; }
.member-sidebar-email { font-size: 12px; color: rgba(255,255,255,0.45); margin: 0 0 14px; word-break: break-all; }
.member-sidebar-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.badge-verified { background: rgba(5,150,105,0.2); color: #34d399; }
.badge-pending  { background: rgba(201,164,60,0.15); color: var(--gold-lt); }
.member-sidebar-nav { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.msn-item {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.msn-item:hover { background: rgba(255,255,255,0.06); color: #fff; }
.msn-item.active { background: rgba(201,164,60,0.12); color: var(--gold-lt); }
.msn-logout { color: rgba(255,100,100,0.65); margin-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 14px; }
.msn-logout:hover { color: #f87171; background: rgba(248,113,113,0.06); }

.member-section-header { margin-bottom: 24px; }
.member-title { font-family: 'Sora', sans-serif; font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; color: var(--navy); margin: 6px 0 0; }

.member-card { background: #fff; border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; }
.member-card-row { display: grid; grid-template-columns: 140px 1fr; gap: 16px; padding: 14px 24px; border-bottom: 1px solid var(--border); align-items: start; }
.member-card-row:last-child { border-bottom: none; }
.mcr-label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; padding-top: 2px; }
.mcr-value { font-size: 14px; color: var(--text); line-height: 1.6; }
.member-card-bio .mcr-value { white-space: pre-wrap; }

@media (max-width: 860px) {
    .member-layout { grid-template-columns: 1fr; }
    .member-sidebar { position: static; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; text-align: left; }
    .member-avatar { margin: 0; }
    .member-sidebar-nav { flex-direction: row; flex-wrap: wrap; width: 100%; }
    .msn-logout { margin-top: 0; border-top: none; padding-top: 10px; }
}

/* ════════════════════════════════════════
   PAGE PROGRAMMES v2
════════════════════════════════════════ */

/* Hero immersif avec image + nav-index */
.prog-hero {
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.prog-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, var(--navy-dark) 15%, rgba(18,33,61,0.88) 55%, rgba(43,111,168,0.75) 100%);
}
.prog-hero-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 48px;
    align-items: center;
    padding: 72px 0;
}
.prog-hero-content h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 14px 0 16px;
}
.prog-hero-content p { color: rgba(255,255,255,0.7); line-height: 1.72; max-width: 480px; font-size: 15px; }

.prog-hero-index {
    display: flex; flex-direction: column; gap: 4px;
    padding-left: 32px;
    border-left: 1px solid rgba(255,255,255,0.12);
}
.prog-hero-index-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 10px; border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.prog-hero-index-item:hover { background: rgba(255,255,255,0.08); }
.prog-hero-idx-num { font-family: 'Sora'; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; }
.prog-hero-idx-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); }

/* Grille de synthèse */
.prog-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}
.prog-overview-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--prog-color, var(--turq));
    border-radius: 12px;
    padding: 26px 22px;
    display: flex; flex-direction: column; gap: 10px;
    text-decoration: none; color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
}
.prog-overview-card:hover { box-shadow: 0 8px 28px rgba(27,42,74,0.1); transform: translateY(-2px); }
.prog-overview-header { display: flex; align-items: center; justify-content: space-between; }
.prog-overview-num { font-family: 'Sora'; font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; }
.prog-overview-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--prog-color, var(--turq)) 12%, transparent);
    color: var(--prog-color, var(--turq));
}
.prog-overview-name { font-family: 'Sora'; font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.35; margin: 0; }
.prog-overview-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; flex: 1; }
.prog-overview-link { font-size: 12px; font-weight: 600; color: var(--prog-color, var(--turq)); }

/* Fiches détaillées alternées */
.prog-section {
    padding: 76px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}
.prog-section-alt { background: var(--bg-alt); }
.prog-bg-num {
    position: absolute;
    right: -16px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Sora';
    font-size: 200px; font-weight: 800;
    color: rgba(26,53,104,0.045);
    line-height: 1;
    pointer-events: none; user-select: none; z-index: 0;
}
.prog-section-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: center;
    position: relative; z-index: 1;
}
.prog-section-reverse { grid-template-columns: 420px 1fr; }
.prog-section-reverse .prog-section-text { order: 2; }
.prog-section-reverse .prog-section-visual { order: 1; }

.prog-section-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.prog-index-badge {
    font-family: 'Sora'; font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 4px; border: 1px solid;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.prog-color-line { width: 32px; height: 2px; border-radius: 1px; }
.prog-section-title { font-family: 'Sora'; font-size: 26px; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 16px; }
.prog-section-desc { font-size: 15px; color: var(--muted); line-height: 1.72; }

.prog-stat {
    display: flex; align-items: baseline; gap: 10px;
    margin: 24px 0 4px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.prog-stat-value { font-family: 'Sora'; font-size: 32px; font-weight: 800; line-height: 1; }
.prog-stat-label { font-size: 13px; color: var(--muted); }

.prog-section-visual { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.prog-section-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prog-visual-icon-badge {
    position: absolute; bottom: 16px; right: 16px;
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Section de clôture */
.prog-closing-section { background: var(--navy); padding: 72px 0; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.08); }
.prog-closing-inner { max-width: 640px; margin: 0 auto; }
.prog-closing-inner .eyebrow { background: rgba(74,175,212,0.15); color: var(--turq); }
.prog-closing-inner h2 { font-family: 'Sora'; font-size: 28px; font-weight: 700; color: #fff; margin: 16px 0 0; line-height: 1.3; }
.prog-closing-inner p { color: rgba(255,255,255,0.6); line-height: 1.72; margin: 16px auto 0; max-width: 480px; }
.prog-closing-stats {
    display: flex; justify-content: center; gap: 48px;
    margin: 36px 0 32px;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.prog-cs-stat { display: flex; flex-direction: column; align-items: center; }
.prog-cs-num { font-family: 'Sora'; font-size: 34px; font-weight: 800; color: var(--gold-lt); line-height: 1; }
.prog-cs-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* ════════════════════════════════════════
   PAGE PARTENAIRES
════════════════════════════════════════ */
.partners-hero {
    background: linear-gradient(100deg, var(--navy-dark) 0%, var(--navy) 60%, var(--royal) 100%);
    padding: 80px 0 0;
}
.partners-hero-inner { padding-bottom: 64px; max-width: 620px; }
.partners-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 12px 0 18px;
}
.partners-hero-sub { color: rgba(255,255,255,0.65); line-height: 1.72; max-width: 460px; }

/* ════════════════════════════════════════
   ACCUEIL — SECTION PARTENAIRES
════════════════════════════════════════ */
.partner-marquee {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partner-marquee-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: partner-marquee-scroll 22s linear infinite;
}
.partner-marquee:hover .partner-marquee-track { animation-play-state: paused; }
@keyframes partner-marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.partner-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 76px;
    min-width: 168px;
    padding: 0 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    opacity: 0.9;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.partner-logo-link:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(26,53,104,0.12); }
.partner-logo-link img { max-height: 44px; max-width: 130px; object-fit: contain; }
.partner-logo-fallback {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
    white-space: nowrap;
}

.home-partners-section::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2728%27 height=%2728%27%3E%3Ccircle cx=%272%27 cy=%272%27 r=%271.4%27 fill=%27%231A3568%27 fill-opacity=%270.07%27/%3E%3C/svg%3E");
    background-size: 28px 28px;
}

@media (max-width: 600px) {
    .partner-marquee-track { gap: 14px; }
    .partner-logo-link { height: 64px; min-width: 140px; padding: 0 16px; }
}

/* ════════════════════════════════════════
   INSCRIPTION — SÉLECTION D'ADHÉSION
════════════════════════════════════════ */
.auth-plan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 8px; }
.auth-plan-card {
    display: flex; align-items: center; gap: 8px;
    border: 1px solid var(--border, #D8E3F0);
    border-radius: 8px;
    padding: 12px 14px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.auth-plan-card:has(input:checked) { border-color: var(--turq); border-width: 2px; }
.auth-plan-name { font-size: 13px; font-weight: 600; }

/* ════════════════════════════════════════
   PAGE PARTENARIAT v2
════════════════════════════════════════ */
.partnership-hero {
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.partnership-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, var(--navy-dark) 15%, rgba(18,33,61,0.88) 55%, rgba(43,111,168,0.75) 100%);
}
.partnership-hero-grid {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 48px;
    align-items: center;
    padding: 72px 0;
}
.partnership-hero-content h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 14px 0 16px;
}
.partnership-hero-content p { color: rgba(255,255,255,0.7); line-height: 1.72; max-width: 480px; font-size: 15px; }

.partnership-hero-index {
    display: flex; flex-direction: column; gap: 4px;
    padding-left: 32px;
    border-left: 1px solid rgba(255,255,255,0.12);
}
.partnership-hero-index-item {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 10px; border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.partnership-hero-index-item:hover { background: rgba(255,255,255,0.08); }
.partnership-hero-idx-num { font-family: 'Sora'; font-size: 11px; font-weight: 800; letter-spacing: 0.06em; }
.partnership-hero-idx-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.85); }

.partnership-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}
.partnership-overview-card {
    background: #fff;
    border: 1px solid var(--border);
    border-top: 3px solid var(--partnership-color, var(--turq));
    border-radius: 12px;
    padding: 26px 22px;
    display: flex; flex-direction: column; gap: 10px;
    text-decoration: none; color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
}
.partnership-overview-card:hover { box-shadow: 0 8px 28px rgba(27,42,74,0.1); transform: translateY(-2px); }
.partnership-overview-header { display: flex; align-items: center; justify-content: space-between; }
.partnership-overview-num { font-family: 'Sora'; font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.1em; }
.partnership-overview-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: color-mix(in srgb, var(--partnership-color, var(--turq)) 12%, transparent);
    color: var(--partnership-color, var(--turq));
}
.partnership-overview-name { font-family: 'Sora'; font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.35; margin: 0; }
.partnership-overview-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; flex: 1; }
.partnership-overview-link { font-size: 12px; font-weight: 600; color: var(--partnership-color, var(--turq)); }

/* Fiches détaillées alternées */
.partnership-section {
    padding: 76px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}
.partnership-section-alt { background: var(--bg-alt); }
.partnership-bg-num {
    position: absolute;
    right: -16px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Sora';
    font-size: 200px; font-weight: 800;
    color: rgba(26,53,104,0.045);
    line-height: 1;
    pointer-events: none; user-select: none; z-index: 0;
}
.partnership-section-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: center;
    position: relative; z-index: 1;
}
.partnership-section-reverse { grid-template-columns: 420px 1fr; }
.partnership-section-reverse .partnership-section-text { order: 2; }
.partnership-section-reverse .partnership-section-visual { order: 1; }

.partnership-section-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.partnership-index-badge {
    font-family: 'Sora'; font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 4px; border: 1px solid;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.partnership-color-line { width: 32px; height: 2px; border-radius: 1px; }
.partnership-section-title { font-family: 'Sora'; font-size: 26px; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 16px; }
.partnership-section-desc { font-size: 15px; color: var(--muted); line-height: 1.72; }

.partnership-benefits-list-v2 {
    list-style: none; padding: 0;
    margin: 20px 0 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 10px;
}
.partnership-benefits-list-v2 li {
    font-size: 14px; color: var(--muted); line-height: 1.5;
    padding-left: 22px; position: relative;
}
.partnership-benefits-list-v2 li::before {
    content: "";
    position: absolute; left: 0; top: 6px;
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--turq);
}

.partnership-section-visual { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.partnership-section-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.partnership-visual-icon-badge {
    position: absolute; bottom: 16px; right: 16px;
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Formulaire de demande — carte scindée en 2 (panneau + champs) */
.partnership-form-section { position: relative; }
.partnership-form-card {
    display: grid;
    grid-template-columns: 38% 1fr;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 70px rgba(26,53,104,0.14);
    overflow: hidden;
}

.partnership-form-panel {
    position: relative;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--royal) 100%);
    padding: 48px 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.partnership-dot-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.partnership-form-panel-content { position: relative; z-index: 1; }
.partnership-form-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'Sora'; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--gold-lt);
    background: rgba(255,255,255,0.1);
    padding: 6px 14px; border-radius: 20px;
    margin-bottom: 18px;
}
.partnership-form-panel-title {
    font-family: 'Sora'; font-size: 26px; font-weight: 700;
    color: #fff; line-height: 1.3; margin: 0 0 14px;
}
.partnership-form-panel-desc {
    color: rgba(255,255,255,0.65);
    font-size: 14px; line-height: 1.7;
    margin: 0 0 28px;
}
.partnership-form-notes { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.partnership-form-notes li {
    display: flex; align-items: flex-start; gap: 10px;
    color: #fff; font-size: 13px; line-height: 1.5; font-weight: 500;
}
.partnership-form-notes li svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-lt); }

.partnership-form-fields { padding: 48px 44px; }
.partnership-form-header { margin-bottom: 28px; }
.partnership-form-title {
    font-family: 'Sora'; font-size: 22px; font-weight: 700;
    color: var(--navy); margin: 0;
}
.partnership-form-sub { color: var(--muted); margin-top: 8px; font-size: 14px; line-height: 1.6; }

.partnership-form-fields .contact-field input,
.partnership-form-fields .contact-field select,
.partnership-form-fields .contact-field textarea {
    background: var(--bg-alt);
    border: 1px solid transparent;
    padding: 12px 16px;
    border-radius: 9px;
}
.partnership-form-fields .contact-field input:focus,
.partnership-form-fields .contact-field select:focus,
.partnership-form-fields .contact-field textarea:focus {
    background: #fff;
    border-color: var(--turq);
}
.partnership-form-fields .contact-field label {
    color: var(--navy-dark);
}
.partnership-form-fields .btn-primary {
    width: 100%;
    margin-top: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 9px;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--turq) 35%, transparent);
}

@media (max-width: 900px) {
    .partnership-hero-grid { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
    .partnership-hero-index { display: none; }
    .partnership-overview-grid { grid-template-columns: 1fr; }
    .partnership-section-inner, .partnership-section-reverse { grid-template-columns: 1fr; gap: 28px; }
    .partnership-section-reverse .partnership-section-text { order: 1; }
    .partnership-section-reverse .partnership-section-visual { order: 2; }
    .partnership-form-card { grid-template-columns: 1fr; }
    .partnership-form-panel { padding: 36px 32px; }
}

@media (max-width: 600px) {
    .partnership-form-fields { padding: 32px 24px; }
    .partnership-form-panel { padding: 32px 24px; }
}

/* ════════════════════════════════════════
   PAGES LÉGALES (sécurité, confidentialité)
════════════════════════════════════════ */
.legal-hero {
    background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy) 55%, var(--royal) 100%);
    padding: 88px 0 72px;
    position: relative;
    overflow: hidden;
}
.legal-hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2748%27 height=%2748%27%3E%3Cpath d=%27M.5 48V.5H48%27 fill=%27none%27 stroke=%27rgba%28255,255,255,0.045%29%27 stroke-width=%271%27/%3E%3C/svg%3E");
    background-size: 48px 48px;
    pointer-events: none;
}
.legal-hero-inner { position: relative; z-index: 1; max-width: 620px; }
.legal-hero-icon {
    width: 64px; height: 64px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--gold-lt);
    margin-bottom: 24px;
}
.legal-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 14px 0 16px;
}
.legal-hero-sub { color: rgba(255,255,255,0.65); line-height: 1.72; font-size: 15px; max-width: 480px; }
.legal-hero-updated {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 28px;
    font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    padding: 7px 16px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 56px;
    align-items: start;
}
.legal-sidebar { position: sticky; top: 96px; }
.legal-toc-label {
    font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.09em;
    color: var(--muted);
    margin-bottom: 16px; display: block;
}
.legal-toc { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.legal-toc-link {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; border-radius: 8px;
    font-size: 13.5px; color: var(--muted); text-decoration: none;
    border-left: 2px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.legal-toc-num {
    font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 700;
    color: var(--turq); opacity: 0.6;
    width: 18px; flex-shrink: 0;
}
.legal-toc-link:hover { color: var(--navy); background: var(--bg-alt); }
.legal-toc-link.active {
    color: var(--navy); font-weight: 700;
    background: rgba(74,175,212,0.09);
    border-left-color: var(--turq);
}
.legal-toc-link.active .legal-toc-num { opacity: 1; }

.legal-content { max-width: 680px; }
.legal-section {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 96px;
}
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.legal-section-num {
    flex-shrink: 0;
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(74,175,212,0.1);
    color: var(--turq);
    font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px;
}
.legal-section-title {
    font-family: 'Sora', sans-serif;
    font-size: 20px; font-weight: 700;
    color: var(--navy);
    margin: 0;
}
.legal-section .article-body { font-size: 15px; }
.legal-section .article-body p:last-child { margin-bottom: 0; }

.legal-intro {
    font-size: 14px; color: var(--muted);
    background: var(--bg-alt);
    border-left: 3px solid var(--turq);
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin-bottom: 44px;
}

@media (max-width: 900px) {
    .legal-layout { grid-template-columns: 1fr; gap: 32px; }
    .legal-sidebar { position: static; }
    .legal-toc { flex-direction: row; flex-wrap: wrap; gap: 8px; }
    .legal-toc-link { border-left: none; border-bottom: 2px solid transparent; border-radius: 6px 6px 0 0; }
    .legal-toc-link.active { border-left-color: transparent; border-bottom-color: var(--turq); }
}

/* ── Cookie consent banner ── */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    background: var(--navy-deep);
    color: #fff;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-text { font-size: 13px; color: rgba(255,255,255,0.85); max-width: 640px; margin: 0; line-height: 1.6; }
.cookie-banner-text a { color: var(--turq); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner-btn { padding: 9px 20px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; }
.cookie-banner-btn-ghost { background: transparent; color: rgba(255,255,255,0.75); border: 1px solid rgba(255,255,255,0.25); }
.cookie-banner-btn-ghost:hover { background: rgba(255,255,255,0.08); }
.cookie-banner-btn-primary { background: var(--turq); color: #fff; }
.cookie-banner-btn-primary:hover { background: var(--royal); }
@media (max-width: 640px) {
    .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
    .cookie-banner-actions { justify-content: center; }
}



