.programme-hero {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 60%, #1f3a4a 100%);
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .programme-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(94,181,215,0.12) 0%, transparent 60%),
                        radial-gradient(ellipse at 70% 30%, rgba(125,190,66,0.08) 0%, transparent 50%);
        }
        .programme-hero-inner { position: relative; z-index: 2; }
        .programme-badge {
            display: inline-block;
            background: rgba(94,181,215,0.2);
            border: 1px solid rgba(94,181,215,0.5);
            color: #7EC9E5;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 1.5rem;
        }
        .programme-hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(2.2rem, 5vw, 4rem);
            font-weight: 800;
            color: #fff;
            margin-bottom: 1rem;
            line-height: 1.1;
        }
        .programme-hero h1 span { color: #5EB5D7; }
        .programme-hero p {
            color: rgba(255,255,255,0.75);
            font-size: 1.15rem;
            max-width: 620px;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
        }

        /* ===== NAVIGATION PÔLES (sticky tabs) ===== */
        .poles-nav {
            position: sticky;
            top: 70px;
            z-index: 100;
            background: rgba(26,26,26,0.97);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding: 0;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .poles-nav::-webkit-scrollbar { display: none; }
        .poles-nav-inner {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            gap: 0;
            min-width: max-content;
        }
        .pole-tab {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 1rem 1.2rem;
            color: rgba(255,255,255,0.5);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.25s ease;
            white-space: nowrap;
            background: none;
            border-top: none;
            border-left: none;
            border-right: none;
            text-decoration: none;
        }
        .pole-tab:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.3); }
        .pole-tab.active { color: #fff; border-bottom-color: var(--pole-color, #5EB5D7); }
        .pole-tab .tab-icon { font-size: 1rem; }

        /* ===== SECTION GÉNÉRALE ===== */
        .programme-body {
            background: #f0f2f5;
            min-height: 100vh;
        }

        /* ===== PÔLE SECTION ===== */
        .pole-section {
            padding: 5rem 0 3rem;
            scroll-margin-top: 130px;
        }
        .pole-section:nth-child(even) { background: #fff; }
        .pole-section:nth-child(odd) { background: #f0f2f5; }

        /* EN-TÊTE DE PÔLE */
        .pole-header {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        .pole-icon-big {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            flex-shrink: 0;
        }
        .pole-header-text h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.9rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 0.3rem;
        }
        .pole-header-text .pole-desc {
            color: #666;
            font-size: 1rem;
            font-style: italic;
        }
        .pole-divider {
            height: 4px;
            width: 60px;
            border-radius: 2px;
            margin-bottom: 3rem;
        }

        /* CARTES DE SOUS-THÈME */
        .themes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        .theme-card {
            background: #fff;
            border-radius: 14px;
            padding: 1.8rem;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            border-left: 4px solid transparent;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            cursor: default;
        }
        .pole-section:nth-child(even) .theme-card {
            background: #f7f9fc;
        }
        .theme-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 28px rgba(0,0,0,0.1);
        }
        .theme-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .theme-card h3 .th-icon { font-size: 1.1rem; }
        .theme-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .theme-card ul li {
            position: relative;
            padding-left: 1.3rem;
            margin-bottom: 0.55rem;
            font-size: 0.92rem;
            color: #4a4a4a;
            line-height: 1.5;
        }
        .theme-card ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #5EB5D7;
            font-size: 0.85rem;
            top: 1px;
        }

        /* ACCORDÉON optionnel (carte cliquable) */
        .theme-card.expandable { cursor: pointer; }
        .theme-card .theme-body { overflow: hidden; max-height: 500px; transition: max-height 0.35s ease; }
        .theme-card.collapsed .theme-body { max-height: 0; }
        .theme-card .toggle-btn {
            background: none;
            border: none;
            font-size: 1.3rem;
            cursor: pointer;
            color: #999;
            margin-left: auto;
            padding: 0;
            line-height: 1;
            transition: transform 0.3s;
        }
        .theme-card.collapsed .toggle-btn { transform: rotate(-90deg); }

        /* CITATION CLÉ */
        .pole-quote {
            background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
            color: #fff;
            border-radius: 14px;
            padding: 2rem 2.5rem;
            margin: 2.5rem 0;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            font-style: italic;
            border-left: 5px solid #FCD116;
            position: relative;
        }
        .pole-quote::before {
            content: '"';
            font-size: 5rem;
            opacity: 0.1;
            position: absolute;
            top: -10px;
            left: 20px;
            font-family: Georgia, serif;
            line-height: 1;
        }

        /* COLORS PAR PÔLE */
        [data-pole="dechets"] { --pole-color: #7DBE42; }
        [data-pole="energie"] { --pole-color: #FCD116; }
        [data-pole="mobilite"] { --pole-color: #5EB5D7; }
        [data-pole="cadredevie"] { --pole-color: #7DBE42; }
        [data-pole="environnement"] { --pole-color: #4CAF50; }
        [data-pole="urbanisme"] { --pole-color: #FF8C42; }
        [data-pole="securite"] { --pole-color: #E74C3C; }
        [data-pole="jeunesse"] { --pole-color: #9B59B6; }
        [data-pole="infrastructures"] { --pole-color: #3498DB; }
        [data-pole="sante"] { --pole-color: #E91E63; }
        [data-pole="culture"] { --pole-color: #FF5722; }
        [data-pole="commerce"] { --pole-color: #FCD116; }
        [data-pole="budget"] { --pole-color: #5EB5D7; }

        /* COULEURS ICÔNES PÔLE */
        .pole-icon-dechets { background: rgba(125,190,66,0.12); color: #7DBE42; }
        .pole-icon-energie { background: rgba(252,209,22,0.12); color: #c8a800; }
        .pole-icon-mobilite { background: rgba(94,181,215,0.12); color: #5EB5D7; }
        .pole-icon-cadredevie { background: rgba(125,190,66,0.12); color: #7DBE42; }
        .pole-icon-environnement { background: rgba(76,175,80,0.12); color: #4CAF50; }
        .pole-icon-urbanisme { background: rgba(255,140,66,0.12); color: #FF8C42; }
        .pole-icon-securite { background: rgba(231,76,60,0.12); color: #E74C3C; }
        .pole-icon-jeunesse { background: rgba(155,89,182,0.12); color: #9B59B6; }
        .pole-icon-infrastructures { background: rgba(52,152,219,0.12); color: #3498DB; }
        .pole-icon-sante { background: rgba(233,30,99,0.12); color: #E91E63; }
        .pole-icon-culture { background: rgba(255,87,34,0.12); color: #FF5722; }
        .pole-icon-commerce { background: rgba(252,209,22,0.12); color: #c8a800; }
        .pole-icon-budget { background: rgba(94,181,215,0.12); color: #5EB5D7; }

        /* BORDER-LEFT COULEURS */
        [data-pole="dechets"] .theme-card { border-left-color: #7DBE42; }
        [data-pole="energie"] .theme-card { border-left-color: #FCD116; }
        [data-pole="mobilite"] .theme-card { border-left-color: #5EB5D7; }
        [data-pole="cadredevie"] .theme-card { border-left-color: #7DBE42; }
        [data-pole="environnement"] .theme-card { border-left-color: #4CAF50; }
        [data-pole="urbanisme"] .theme-card { border-left-color: #FF8C42; }
        [data-pole="securite"] .theme-card { border-left-color: #E74C3C; }
        [data-pole="jeunesse"] .theme-card { border-left-color: #9B59B6; }
        [data-pole="infrastructures"] .theme-card { border-left-color: #3498DB; }
        [data-pole="sante"] .theme-card { border-left-color: #E91E63; }
        [data-pole="culture"] .theme-card { border-left-color: #FF5722; }
        [data-pole="commerce"] .theme-card { border-left-color: #FCD116; }
        [data-pole="budget"] .theme-card { border-left-color: #5EB5D7; }

        [data-pole="dechets"] .pole-divider { background: linear-gradient(90deg, #7DBE42, #5EB5D7); }
        [data-pole="energie"] .pole-divider { background: linear-gradient(90deg, #FCD116, #FF8C42); }
        [data-pole="mobilite"] .pole-divider { background: linear-gradient(90deg, #5EB5D7, #7DBE42); }
        [data-pole="cadredevie"] .pole-divider { background: linear-gradient(90deg, #7DBE42, #5EB5D7); }
        [data-pole="environnement"] .pole-divider { background: linear-gradient(90deg, #4CAF50, #7DBE42); }
        [data-pole="urbanisme"] .pole-divider { background: linear-gradient(90deg, #FF8C42, #FCD116); }
        [data-pole="securite"] .pole-divider { background: linear-gradient(90deg, #E74C3C, #FF8C42); }
        [data-pole="jeunesse"] .pole-divider { background: linear-gradient(90deg, #9B59B6, #5EB5D7); }
        [data-pole="infrastructures"] .pole-divider { background: linear-gradient(90deg, #3498DB, #5EB5D7); }
        [data-pole="sante"] .pole-divider { background: linear-gradient(90deg, #E91E63, #9B59B6); }
        [data-pole="culture"] .pole-divider { background: linear-gradient(90deg, #FF5722, #FCD116); }
        [data-pole="commerce"] .pole-divider { background: linear-gradient(90deg, #FCD116, #FF8C42); }
        [data-pole="budget"] .pole-divider { background: linear-gradient(90deg, #5EB5D7, #7DBE42); }

        /* CTA FINAL */
        .programme-cta {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 5rem 0;
            text-align: center;
            color: #fff;
        }
        .programme-cta h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        .programme-cta p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2rem; }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .themes-grid { grid-template-columns: 1fr; }
            .pole-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .programme-hero h1 { font-size: 2rem; }
        }

        /* ANIMATION AU SCROLL */
        .fade-in-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }