        :root {
            --orange: #fd7e14;
            --orange-h: #fb923c;
            --orange-lt: #fff4ec;
            --orange-md: rgba(253, 126, 20, .15);
            --blue: #1a4494;
            --blue-deep: #0d2f6b;
            --blue-lt: #eef3fb;
            --blue-md: #d6e4f7;
            --white: #ffffff;
            --g50: #f8fafd;
            --g100: #eef1f7;
            --g200: #dde4ef;
            --g400: #94a3b8;
            --g600: #4b5e7a;
            --g800: #1e2f4a;
            --ease: cubic-bezier(.4, 0, .2, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--g600);
            line-height: 1.75;
            overflow-x: hidden
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Poppins', sans-serif;
            color: var(--g800);
            line-height: 1.2
        }

        img {
            max-width: 100%;
            display: block
        }

        a {
            transition: color .25s var(--ease)
        }

        section {
            padding: 88px 0
        }

        /* Scroll reveal */
        .sr {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity .7s var(--ease), transform .7s var(--ease)
        }

        .sr.sl {
            transform: translateX(-40px)
        }

        .sr.sr2 {
            transform: translateX(40px)
        }

        .sr.in {
            opacity: 1 !important;
            transform: none !important
        }

        .d1 {
            transition-delay: .1s
        }

        .d2 {
            transition-delay: .2s
        }

        .d3 {
            transition-delay: .3s
        }

        .d4 {
            transition-delay: .4s
        }

        .d5 {
            transition-delay: .5s
        }

        .d6 {
            transition-delay: .6s
        }

        .d7 {
            transition-delay: .7s
        }

        /* Buttons */
        .btn {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 13px;
            letter-spacing: .05em;
            border-radius: 8px;
            padding: 11px 26px;
            transition: all .25s var(--ease)
        }

        .btn-primary {
            background: var(--orange) !important;
            border-color: var(--orange) !important;
            color: #fff !important;
            box-shadow: 0 4px 18px rgba(249, 115, 22, .28)
        }

        .btn-primary:hover {
            background: var(--blue-deep) !important;
            border-color: var(--blue-deep) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(13, 47, 107, .25)
        }

        .btn-outline-white {
            border: 2px solid rgba(255, 255, 255, .7);
            color: #fff;
            background: transparent
        }

        .btn-outline-white:hover {
            background: rgba(255, 255, 255, .12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px)
        }

        .btn-blue {
            background: var(--blue-deep) !important;
            border-color: var(--blue-deep) !important;
            color: #fff !important
        }

        .btn-blue:hover {
            background: var(--orange) !important;
            border-color: var(--orange) !important;
            transform: translateY(-2px)
        }

        /* ── PAGE HERO ────────────────────────────── */
        .page-hero {
            position: relative;
            min-height: 360px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(130deg, var(--blue-deep) 0%, var(--blue) 60%, #2259b8 100%)
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -80px;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .06);
            pointer-events: none
        }

        .page-hero::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -60px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(249, 115, 22, .08);
            pointer-events: none
        }

        .hero-blob {
            position: absolute;
            right: -40px;
            top: -40px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(249, 115, 22, .18) 0%, transparent 70%)
        }

        .hero-topline {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--blue-deep), var(--orange) 45%, var(--blue))
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
            background-size: 48px 48px
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 72px 20px
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .16);
            border-radius: 100px;
            padding: 6px 18px;
            font-size: 12.5px;
            font-weight: 600;
            color: rgba(255, 255, 255, .8);
            letter-spacing: .08em;
            margin-bottom: 20px;
            backdrop-filter: blur(6px);
            animation: fsd .6s var(--ease) .1s both
        }

        .hero-badge i {
            color: var(--orange)
        }

        .hero-title {
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 14px;
            animation: fsd .65s var(--ease) .2s both
        }

        .hero-title .hl {
            color: var(--orange);
            position: relative
        }

        .hero-title .hl::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--orange);
            border-radius: 2px;
            transform: scaleX(0);
            transform-origin: left;
            animation: scaleIn .5s var(--ease) .85s both
        }

        @keyframes scaleIn {
            from {
                transform: scaleX(0)
            }

            to {
                transform: scaleX(1)
            }
        }

        .hero-sub {
            color: rgba(255, 255, 255, .65);
            font-size: 15px;
            margin-bottom: 28px;
            animation: fsd .7s var(--ease) .35s both
        }

        .hero-breadcrumb {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 100px;
            padding: 7px 22px;
            font-size: 13px;
            animation: fsd .7s var(--ease) .45s both;
            backdrop-filter: blur(6px)
        }

        .hero-breadcrumb a {
            color: rgba(255, 255, 255, .75);
            text-decoration: none;
            transition: color .2s
        }

        .hero-breadcrumb a:hover {
            color: var(--orange)
        }

        .hero-breadcrumb .sep {
            color: rgba(255, 255, 255, .3);
            margin: 0 10px;
            font-size: 11px
        }

        .hero-breadcrumb .cur {
            color: var(--white);
            font-weight: 600
        }

        @keyframes fsd {
            from {
                opacity: 0;
                transform: translateY(-20px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* Stats band sous le hero */
        .hero-stats {
            background: var(--white);
            border-bottom: 1px solid var(--g100)
        }

        .hero-stats .hs-inner {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            divide: 0
        }

        .hs-item {
            padding: 22px 20px;
            text-align: center;
            border-right: 1px solid var(--g100)
        }

        .hs-item:last-child {
            border-right: none
        }

        .hs-num {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--orange);
            display: block;
            line-height: 1
        }

        .hs-lbl {
            font-size: 12px;
            color: var(--g400);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: .07em;
            margin-top: 4px
        }

        @media(max-width:640px) {
            .hero-stats .hs-inner {
                grid-template-columns: 1fr 1fr
            }

            .hs-item {
                border-right: none;
                border-bottom: 1px solid var(--g100)
            }
        }

        /* ── SEC LABELS ───────────────────────────── */
        .sec-label {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 14px
        }

        .sec-label::before,
        .sec-label::after {
            content: '';
            height: 2px;
            width: 22px;
            background: var(--orange);
            border-radius: 2px
        }

        .sec-title {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            font-weight: 800;
            color: var(--g800);
            margin-bottom: 16px
        }

        .sec-desc {
            color: var(--g400);
            font-size: 15px;
            max-width: 580px;
            margin: 0 auto
        }

        /* ── FILTER TABS ──────────────────────────── */
        .filter-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 44px
        }

        .ftab {
            padding: 9px 20px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            border: 1.5px solid var(--g200);
            background: var(--white);
            color: var(--g600);
            cursor: pointer;
            transition: all .22s var(--ease)
        }

        .ftab:hover {
            border-color: var(--orange);
            color: var(--orange)
        }

        .ftab.active {
            background: var(--orange);
            border-color: var(--orange);
            color: #fff;
            box-shadow: 0 4px 14px rgba(249, 115, 22, .28)
        }

        /* ── FORMATION CARDS ──────────────────────── */
        .fcard {
            background: var(--white);
            border: 1px solid var(--g100);
            border-radius: 20px;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
            position: relative;
        }

        .fcard:hover {
            transform: translateY(-7px);
            box-shadow: 0 24px 56px rgba(13, 47, 107, .13);
            border-color: rgba(249, 115, 22, .22)
        }

        /* Bande colorée top */
        .fcard-top {
            padding: 28px 24px 20px;
            position: relative;
            overflow: hidden;
        }

        .fcard-top::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
            transition: opacity .3s;
        }

        .fcard:hover .fcard-top::before {
            opacity: .92
        }

        /* Deco cercle */
        .fcard-top::after {
            content: '';
            position: absolute;
            right: -30px;
            top: -30px;
            width: 130px;
            height: 130px;
            border-radius: 50%;
            background: rgba(249, 115, 22, .12)
        }

        .fcard-top * {
            position: relative;
            z-index: 1
        }

        .fcard-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(249, 115, 22, .2);
            border: 1px solid rgba(249, 115, 22, .35);
            border-radius: 100px;
            padding: 4px 12px;
            font-size: 11px;
            font-weight: 700;
            color: var(--orange-h);
            letter-spacing: .07em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .fcard-title {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px
        }

        .fcard-sub {
            font-size: 13px;
            color: rgba(255, 255, 255, .6);
            margin: 0
        }

        .fcard-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1;
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: rgba(255, 255, 255, .1);
            border: 1.5px solid rgba(255, 255, 255, .2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: rgba(255, 255, 255, .9);
            transition: all .3s;
        }

        .fcard:hover .fcard-icon {
            background: var(--orange);
            border-color: var(--orange);
            transform: rotate(-8deg) scale(1.08)
        }

        /* Corps */
        .fcard-body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column
        }

        .fcard-desc {
            font-size: 14px;
            color: var(--g400);
            line-height: 1.7;
            margin-bottom: 18px
        }

        .fcard-prog-label {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .1em;
            color: var(--blue-deep);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px
        }

        .fcard-prog-label::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--g100)
        }

        .fcard-list {
            list-style: none;
            margin-bottom: 22px;
            flex: 1
        }

        .fcard-list li {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 13.5px;
            color: var(--g600);
            padding: 6px 0;
            border-bottom: 1px solid var(--g100)
        }

        .fcard-list li:last-child {
            border-bottom: none
        }

        .flist-dot {
            width: 18px;
            height: 18px;
            min-width: 18px;
            border-radius: 5px;
            background: var(--orange-lt);
            border: 1.5px solid rgba(249, 115, 22, .2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            color: var(--orange);
            transition: all .2s
        }

        .fcard:hover .flist-dot {
            background: var(--orange);
            color: #fff;
            border-color: var(--orange)
        }

        .fcard .btn {
            width: 100%;
            justify-content: center;
            display: flex;
            font-size: 13px;
            padding: 10px
        }

        /* Niveau pill */
        .level-pill {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: 100px;
            margin-bottom: 8px
        }

        .level-pill.debutant {
            background: rgba(16, 185, 129, .1);
            color: #059669;
            border: 1px solid rgba(16, 185, 129, .25)
        }

        .level-pill.intermediaire {
            background: var(--orange-lt);
            color: var(--orange);
            border: 1px solid var(--orange-md)
        }

        .level-pill.avance {
            background: var(--blue-lt);
            color: var(--blue);
            border: 1px solid var(--blue-md)
        }

        /* ── PEDAGOGIE ────────────────────────────── */
        .peda-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 24px;
            background: var(--white);
            border: 1px solid var(--g100);
            border-radius: 18px;
            transition: all .3s var(--ease);
            position: relative;
            overflow: hidden;
        }

        .peda-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            width: 3px;
            background: var(--orange);
            border-radius: 3px 0 0 3px;
            transform: scaleY(0);
            transform-origin: top;
            transition: transform .35s var(--ease)
        }

        .peda-item:hover {
            border-color: rgba(249, 115, 22, .2);
            box-shadow: 0 8px 28px rgba(249, 115, 22, .08);
            transform: translateX(6px)
        }

        .peda-item:hover::before {
            transform: scaleY(1)
        }

        .peda-icon {
            width: 60px;
            height: 60px;
            min-width: 60px;
            border-radius: 16px;
            background: var(--orange-lt);
            border: 1.5px solid rgba(249, 115, 22, .22);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--orange);
            transition: all .3s
        }

        .peda-item:hover .peda-icon {
            background: var(--orange);
            color: #fff;
            border-color: var(--orange);
            border-radius: 50%;
            transform: rotate(-6deg)
        }

        .peda-item h4 {
            font-size: 17px;
            margin-bottom: 6px
        }

        .peda-item p {
            font-size: 14px;
            color: var(--g400);
            margin: 0;
            line-height: 1.65
        }

        /* Image section pédagogie */
        .peda-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(13, 47, 107, .14);
            position: relative
        }

        .peda-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block
        }

        .peda-img-badge {
            position: absolute;
            bottom: 24px;
            right: 24px;
            background: var(--white);
            border-radius: 14px;
            padding: 14px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 8px 28px rgba(13, 47, 107, .15)
        }

        .pib-num {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--orange);
            line-height: 1
        }

        .pib-lbl {
            font-size: 11px;
            color: var(--g400);
            font-weight: 600;
            line-height: 1.3
        }

        /* ── CTA BAND ─────────────────────────────── */
        .cta-band {
            background: linear-gradient(120deg, var(--blue-deep), var(--blue) 60%, #2259b8 100%);
            border-radius: 24px;
            padding: 56px 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            position: relative;
            overflow: hidden
        }

        .cta-band::before {
            content: '';
            position: absolute;
            right: -60px;
            top: -60px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: rgba(249, 115, 22, .12)
        }

        .cta-band::after {
            content: '';
            position: absolute;
            left: 20%;
            bottom: -80px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .04)
        }

        .cta-band h2 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            color: #fff;
            margin-bottom: 10px;
            position: relative;
            z-index: 1
        }

        .cta-band p {
            color: rgba(255, 255, 255, .6);
            font-size: 15px;
            margin: 0;
            position: relative;
            z-index: 1
        }

        .cta-actions {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
            position: relative;
            z-index: 1
        }

        @media(max-width:768px) {
            .cta-band {
                flex-direction: column;
                text-align: center;
                padding: 40px 28px
            }

            .cta-actions {
                justify-content: center;
                flex-wrap: wrap
            }
        }

       