        /* ══════════════════════════════════════════════
           DESIGN TOKENS
        ══════════════════════════════════════════════ */
        :root {
            --c-blue:        #357abd;
            --c-blue-dark:   #00224e;
            --c-orange:      #fe9b44;
            --c-orange-dark: #e18009;
            --c-white:       #ffffff;
            --c-off:         #edeae3;
            --c-muted:       rgba(237, 234, 227, 0.45);
            --c-glass:       rgba(255,255,255,0.03);
            --c-border:      rgba(53, 122, 189, 0.15);
            --c-border-h:    rgba(53, 122, 189, 0.38);

            --f-display: 'Cormorant Garamond', Georgia, serif;
            --f-body:    'DM Sans', system-ui, sans-serif;
            --f-label:   'Bebas Neue', sans-serif;

            --nav-h: 68px;
            --r:     14px;
            --r-sm:  8px;
        }

        /* ══════════════════════════════════════════════
           RESET
        ══════════════════════════════════════════════ */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--f-body);
            background: #000d1f;
            color: var(--c-off);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; }
        img { display: block; }

        /* ══════════════════════════════════════════════
           GRAIN OVERLAY
        ══════════════════════════════════════════════ */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 9998;
            opacity: 0.3;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
        }

        /* ══════════════════════════════════════════════
           NAVBAR
        ══════════════════════════════════════════════ */
        .nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            height: var(--nav-h);
            display: flex;
            align-items: center;
            padding: 0 2.5rem;
            background: rgba(0, 10, 30, 0.65);
            backdrop-filter: blur(28px) saturate(1.4);
            -webkit-backdrop-filter: blur(28px) saturate(1.4);
            border-bottom: 1px solid var(--c-border);
            transition: background 0.4s;
        }
        .nav.scrolled { background: rgba(0, 8, 22, 0.9); }

        .nav-inner {
            display: flex;
            align-items: center;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            gap: 1.5rem;
        }

        /* Brand */
        .nav-brand {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            font-family: var(--f-display);
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--c-white);
            letter-spacing: 0.01em;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .nav-brand img { width: 30px; height: 27px; object-fit: contain; }
        .nav-brand .accent { color: var(--c-orange); font-style: italic; }

        /* Links */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.1rem;
            list-style: none;
        }
        .nav-links > li > a {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: rgba(237,234,227,0.6);
            padding: 0.38rem 0.75rem;
            border-radius: var(--r-sm);
            transition: color 0.2s, background 0.2s;
        }
        .nav-links > li > a:hover,
        .nav-links > li > a.active {
            color: var(--c-white);
            background: rgba(53,122,189,0.12);
        }

        /* Dropdown */
        .nav-dd { position: relative; }
        .nav-dd-menu {
            position: absolute;
            top: calc(100% + 0.5rem);
            left: 50%;
            transform: translateX(-50%) translateY(-6px);
            background: rgba(0, 16, 40, 0.97);
            border: 1px solid var(--c-border);
            border-radius: var(--r);
            padding: 0.4rem;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
            backdrop-filter: blur(24px);
        }
        .nav-dd:hover .nav-dd-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .nav-dd-menu a {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 0.8rem;
            font-weight: 400;
            color: rgba(237,234,227,0.7);
            padding: 0.55rem 0.85rem;
            border-radius: var(--r-sm);
            text-transform: none;
            letter-spacing: 0.02em;
            transition: background 0.15s, color 0.15s;
        }
        .nav-dd-menu a:hover { background: rgba(53,122,189,0.14); color: var(--c-white); }
        .nav-dd-menu a i { color: var(--c-orange); width: 14px; font-size: 0.72rem; }

        /* Right actions */
        .nav-right {
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }
        .nav-search {
            display: flex;
            align-items: center;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.09);
            border-radius: var(--r-sm);
            overflow: hidden;
            transition: border-color 0.2s;
        }
        .nav-search:focus-within { border-color: var(--c-blue); }
        .nav-search input {
            background: transparent;
            border: none;
            outline: none;
            padding: 0.38rem 0.7rem;
            font-size: 0.76rem;
            color: var(--c-off);
            width: 150px;
            font-family: var(--f-body);
        }
        .nav-search input::placeholder { color: var(--c-muted); }
        .nav-search button {
            background: transparent;
            border: none;
            color: var(--c-muted);
            padding: 0.38rem 0.6rem;
            cursor: pointer;
            font-size: 0.72rem;
            transition: color 0.2s;
        }
        .nav-search button:hover { color: var(--c-orange); }

        .nbtn {
            font-family: var(--f-body);
            font-size: 0.76rem;
            font-weight: 600;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            padding: 0.42rem 1.05rem;
            border-radius: var(--r-sm);
            cursor: pointer;
            transition: all 0.22s;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .nbtn-ghost {
            background: transparent;
            border: 1px solid rgba(53,122,189,0.3);
            color: rgba(237,234,227,0.75);
        }
        .nbtn-ghost:hover {
            border-color: var(--c-blue);
            color: var(--c-white);
            background: rgba(53,122,189,0.08);
        }
        .nbtn-primary {
            background: var(--c-orange);
            color: var(--c-blue-dark);
            border: 1px solid transparent;
            font-weight: 700;
        }
        .nbtn-primary:hover {
            background: var(--c-orange-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(254,155,68,0.3);
        }

        /* Mobile toggle */
        .nav-toggle {
            display: none;
            background: transparent;
            border: 1px solid rgba(255,255,255,0.12);
            color: var(--c-white);
            width: 36px;
            height: 36px;
            border-radius: var(--r-sm);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            transition: background 0.2s;
            flex-shrink: 0;
            margin-left: auto;
        }
        .nav-toggle:hover { background: rgba(53,122,189,0.15); }

        /* Mobile drawer */
        .nav-drawer {
            display: none;
            position: fixed;
            top: var(--nav-h);
            inset-inline: 0;
            background: rgba(0, 10, 26, 0.98);
            backdrop-filter: blur(30px);
            border-bottom: 1px solid var(--c-border);
            padding: 1rem 1.5rem 1.5rem;
            z-index: 999;
            flex-direction: column;
            gap: 0.25rem;
        }
        .nav-drawer.open { display: flex; }
        .nav-drawer a {
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: rgba(237,234,227,0.7);
            padding: 0.6rem 0.5rem;
            border-bottom: 1px solid rgba(53,122,189,0.08);
            display: flex;
            align-items: center;
            gap: 0.6rem;
            transition: color 0.2s;
        }
        .nav-drawer a:last-child { border-bottom: none; }
        .nav-drawer a:hover { color: var(--c-white); }
        .nav-drawer a i { color: var(--c-orange); width: 14px; font-size: 0.72rem; }
        .nav-drawer-divider {
            height: 1px;
            background: rgba(53,122,189,0.12);
            margin: 0.5rem 0;
        }
        .nav-drawer-btns {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.75rem;
            flex-wrap: wrap;
        }

        /* ══════════════════════════════════════════════
           HERO
        ══════════════════════════════════════════════ */
        .hero {
            position: relative;
            min-height: 100svh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: calc(var(--nav-h) + 5rem) 2rem 7rem;
            overflow: hidden;
        }

        /* Layered gradient background */
        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 90% 60% at 15% 25%, rgba(53,122,189,0.2) 0%, transparent 55%),
                radial-gradient(ellipse 70% 50% at 85% 75%, rgba(254,155,68,0.11) 0%, transparent 50%),
                radial-gradient(ellipse 60% 80% at 60% 10%, rgba(0,34,78,0.6) 0%, transparent 60%),
                linear-gradient(160deg, #000d1f 0%, #001332 50%, #000a18 100%);
            animation: bgBreath 16s ease-in-out infinite alternate;
        }
        @keyframes bgBreath {
            0%   { filter: brightness(1); }
            100% { filter: brightness(1.08); }
        }

        /* Floating glow orbs */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            filter: blur(1px);
        }
        .hero-orb-1 {
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(53,122,189,0.13) 0%, transparent 65%);
            top: -180px; left: -220px;
            animation: orbA 18s ease-in-out infinite;
        }
        .hero-orb-2 {
            width: 550px; height: 550px;
            background: radial-gradient(circle, rgba(254,155,68,0.09) 0%, transparent 65%);
            bottom: -100px; right: -160px;
            animation: orbB 22s ease-in-out infinite;
        }
        .hero-orb-3 {
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(53,122,189,0.08) 0%, transparent 65%);
            top: 40%; left: 60%;
            animation: orbA 14s ease-in-out infinite reverse;
        }
        @keyframes orbA {
            0%,100% { transform: translate(0,0) scale(1); }
            33%  { transform: translate(40px,-50px) scale(1.06); }
            66%  { transform: translate(-25px,30px) scale(0.94); }
        }
        @keyframes orbB {
            0%,100% { transform: translate(0,0) scale(1); }
            50%  { transform: translate(-35px,-25px) scale(1.08); }
        }

        /* Dot grid */
        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(53,122,189,0.18) 1px, transparent 1px);
            background-size: 48px 48px;
            mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 20%, transparent 100%);
            -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 20%, transparent 100%);
            pointer-events: none;
        }

        /* Bottom fade */
        .hero::before {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 200px;
            background: linear-gradient(to bottom, transparent, #000d1f);
            pointer-events: none;
            z-index: 1;
        }

        /* Vertical line */
        .hero-line {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 90px;
            background: linear-gradient(to bottom, rgba(254,155,68,0.7), transparent);
            z-index: 2;
            animation: lineReveal 1.2s ease 1s both;
        }
        @keyframes lineReveal {
            from { height: 0; opacity: 0; }
            to   { height: 90px; opacity: 1; }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1000px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-family: var(--f-label);
            font-size: 0.82rem;
            letter-spacing: 0.28em;
            color: var(--c-orange);
            border: 1px solid rgba(254,155,68,0.25);
            padding: 0.38rem 1.15rem;
            border-radius: 100px;
            margin-bottom: 2.25rem;
            background: rgba(254,155,68,0.05);
            animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s both;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .hero-title {
            font-family: var(--f-display);
            font-size: clamp(3.8rem, 10vw, 8.5rem);
            font-weight: 300;
            line-height: 0.95;
            letter-spacing: -0.025em;
            color: var(--c-white);
            animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.4s both;
        }
        .hero-title em {
            font-style: italic;
            color: var(--c-orange);
            font-weight: 300;
        }
        .hero-title strong {
            font-weight: 600;
        }

        .hero-subtitle {
            font-size: 1.05rem;
            font-weight: 300;
            color: var(--c-muted);
            max-width: 500px;
            margin: 1.75rem auto 3.25rem;
            line-height: 1.75;
            animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.6s both;
        }

        .hero-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.8s both;
        }

        .btn-hero-p {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            background: var(--c-orange);
            color: var(--c-blue-dark);
            font-family: var(--f-body);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 1rem 2.4rem;
            border-radius: var(--r-sm);
            border: 2px solid var(--c-orange);
            position: relative;
            overflow: hidden;
            transition: color 0.3s, box-shadow 0.3s, transform 0.2s;
        }
        .btn-hero-p::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--c-white);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
        }
        .btn-hero-p:hover::before { transform: scaleX(1); }
        .btn-hero-p:hover {
            color: var(--c-blue-dark);
            box-shadow: 0 8px 30px rgba(254,155,68,0.35);
            transform: translateY(-2px);
        }
        .btn-hero-p > * { position: relative; z-index: 1; }

        .btn-hero-g {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            background: transparent;
            color: rgba(237,234,227,0.8);
            font-family: var(--f-body);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 1rem 2.4rem;
            border-radius: var(--r-sm);
            border: 1.5px solid rgba(237,234,227,0.2);
            transition: all 0.25s;
        }
        .btn-hero-g:hover {
            border-color: var(--c-blue);
            color: var(--c-white);
            background: rgba(53,122,189,0.09);
        }

        /* Scroll hint */
        .hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--f-label);
            font-size: 0.65rem;
            letter-spacing: 0.22em;
            color: var(--c-muted);
            animation: fadeUp 1s ease 1.3s both;
        }
        .scroll-mouse {
            width: 20px;
            height: 34px;
            border: 1.5px solid rgba(237,234,227,0.18);
            border-radius: 10px;
            display: flex;
            justify-content: center;
            padding-top: 5px;
        }
        .scroll-mouse::before {
            content: '';
            width: 3px;
            height: 6px;
            background: var(--c-orange);
            border-radius: 3px;
            animation: scrollDot 1.8s ease-in-out infinite;
        }
        @keyframes scrollDot {
            0%,100% { transform: translateY(0); opacity: 1; }
            60%  { transform: translateY(9px); opacity: 0.2; }
        }

        /* ══════════════════════════════════════════════
           TRANSLATE BAR
        ══════════════════════════════════════════════ */
        .translate-bar {
            background: rgba(0,8,20,0.5);
            border-bottom: 1px solid var(--c-border);
            padding: 0.55rem 2.5rem;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 0.7rem;
        }
        .translate-bar-label {
            font-family: var(--f-label);
            font-size: 0.68rem;
            letter-spacing: 0.18em;
            color: var(--c-muted);
        }

        /* ══════════════════════════════════════════════
           PAGE BODY
        ══════════════════════════════════════════════ */
        .page-body {
            max-width: 1280px;
            margin: 0 auto;
            padding: 6rem 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 7rem;
        }

        /* ══════════════════════════════════════════════
           SECTION HEADER
        ══════════════════════════════════════════════ */
        .sec-hd {
            display: flex;
            align-items: flex-end;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        .sec-hd-text { flex-shrink: 0; }
        .sec-eyebrow {
            font-family: var(--f-label);
            font-size: 0.72rem;
            letter-spacing: 0.28em;
            color: var(--c-orange);
            margin-bottom: 0.4rem;
        }
        .sec-title {
            font-family: var(--f-display);
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 300;
            line-height: 1;
            color: var(--c-white);
            letter-spacing: -0.01em;
        }
        .sec-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, rgba(53,122,189,0.25), transparent);
            margin-bottom: 0.4rem;
        }

        /* ══════════════════════════════════════════════
           ASSEMBLÉES
        ══════════════════════════════════════════════ */
        .assemblee-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
            gap: 1.25rem;
        }

        .assemblee-card {
            position: relative;
            background: var(--c-glass);
            border: 1px solid var(--c-border);
            border-radius: var(--r);
            padding: 2.25rem 1.85rem 1.85rem;
            transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
                        border-color 0.3s,
                        box-shadow 0.35s;
            overflow: hidden;
        }
        /* Top bar reveal */
        .assemblee-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--c-blue), var(--c-orange));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
        }
        /* Inner shine */
        .assemblee-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 55%);
            pointer-events: none;
            border-radius: inherit;
        }
        .assemblee-card:hover {
            transform: translateY(-5px);
            border-color: var(--c-border-h);
            box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(53,122,189,0.08);
        }
        .assemblee-card:hover::before { transform: scaleX(1); }

        .card-num {
            position: absolute;
            top: 1.1rem; right: 1.5rem;
            font-family: var(--f-label);
            font-size: 4rem;
            line-height: 1;
            color: rgba(53,122,189,0.07);
            pointer-events: none;
            user-select: none;
        }

        .card-ico {
            width: 48px; height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(53,122,189,0.18), rgba(53,122,189,0.04));
            border: 1px solid rgba(53,122,189,0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--c-blue);
            margin-bottom: 1.4rem;
            transition: all 0.3s;
        }
        .assemblee-card:hover .card-ico {
            background: linear-gradient(135deg, rgba(254,155,68,0.18), rgba(254,155,68,0.04));
            border-color: rgba(254,155,68,0.22);
            color: var(--c-orange);
        }

        .card-name {
            font-family: var(--f-display);
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--c-white);
            line-height: 1.25;
            margin-bottom: 0.65rem;
        }

        .card-district {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.78rem;
            color: var(--c-muted);
            margin-bottom: 1.75rem;
        }
        .card-district i { color: var(--c-orange); font-size: 0.68rem; }

        .card-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            color: var(--c-blue);
            transition: gap 0.22s, color 0.22s;
        }
        .card-cta i { font-size: 0.65rem; transition: transform 0.22s; }
        .card-cta:hover { color: var(--c-orange); gap: 0.8rem; }
        .card-cta:hover i { transform: translateX(3px); }

        .assemblee-empty {
            text-align: center;
            padding: 4rem 2rem;
            border: 1px dashed rgba(53,122,189,0.2);
            border-radius: var(--r);
            color: var(--c-muted);
            font-size: 0.9rem;
        }

        .btn-add {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1.25rem;
            font-size: 0.76rem;
            font-weight: 600;
            letter-spacing: 0.09em;
            text-transform: uppercase;
            color: var(--c-orange);
            border: 1px solid rgba(254,155,68,0.28);
            padding: 0.55rem 1.3rem;
            border-radius: var(--r-sm);
            transition: all 0.22s;
        }
        .btn-add:hover { background: rgba(254,155,68,0.07); border-color: var(--c-orange); }

        /* ══════════════════════════════════════════════
           OUTILS
        ══════════════════════════════════════════════ */
        .outils-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.1rem;
        }
        .outil-card {
            background: var(--c-glass);
            border: 1px solid var(--c-border);
            border-radius: var(--r);
            padding: 2.25rem 1.25rem 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
        }
        .outil-card::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(circle at 50% 50%, rgba(53,122,189,0.07), transparent 65%);
            opacity: 0;
            transition: opacity 0.4s;
        }
        .outil-card:hover {
            border-color: var(--c-border-h);
            transform: translateY(-4px);
            box-shadow: 0 18px 50px rgba(0,0,0,0.4);
        }
        .outil-card:hover::before { opacity: 1; }

        .outil-ico {
            width: 56px; height: 56px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(53,122,189,0.18), rgba(0,34,78,0.3));
            border: 1px solid rgba(53,122,189,0.18);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: var(--c-blue);
            position: relative;
            z-index: 1;
            transition: all 0.3s;
        }
        .outil-card:hover .outil-ico {
            background: linear-gradient(135deg, rgba(254,155,68,0.18), rgba(0,34,78,0.3));
            border-color: rgba(254,155,68,0.25);
            color: var(--c-orange);
        }
        .outil-label {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--c-off);
            position: relative;
            z-index: 1;
            letter-spacing: 0.02em;
        }

        /* ══════════════════════════════════════════════
           MAP
        ══════════════════════════════════════════════ */
        #map {
            height: 440px;
            border-radius: var(--r);
            border: 1px solid var(--c-border);
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0,0,0,0.5);
        }

        /* ══════════════════════════════════════════════
           FOOTER
        ══════════════════════════════════════════════ */
        footer {
            background: rgba(0,6,16,0.7);
            border-top: 1px solid var(--c-border);
            padding: 3.5rem 2.5rem 2rem;
        }
        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
            flex-wrap: wrap;
        }
        .footer-brand { display: flex; flex-direction: column; gap: 0.35rem; }
        .footer-brand-name {
            font-family: var(--f-display);
            font-size: 1.15rem;
            font-weight: 600;
            color: var(--c-white);
        }
        .footer-brand-sub {
            font-size: 0.76rem;
            color: var(--c-muted);
        }

        .footer-cols {
            display: flex;
            gap: 4rem;
            flex-wrap: wrap;
        }
        .footer-col { display: flex; flex-direction: column; gap: 0.45rem; }
        .footer-col-head {
            font-family: var(--f-label);
            font-size: 0.68rem;
            letter-spacing: 0.22em;
            color: var(--c-orange);
            margin-bottom: 0.15rem;
        }
        .footer-col a {
            font-size: 0.8rem;
            color: var(--c-muted);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: color 0.2s;
        }
        .footer-col a:hover { color: var(--c-white); }
        .footer-col a i { font-size: 0.75rem; }

        .footer-bottom {
            max-width: 1280px;
            margin: 2.5rem auto 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(53,122,189,0.07);
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.7rem;
            color: rgba(237,234,227,0.18);
            letter-spacing: 0.05em;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        /* ══════════════════════════════════════════════
           SCROLL REVEAL
        ══════════════════════════════════════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
                        transform 0.75s cubic-bezier(0.22,1,0.36,1);
        }
        .reveal.in { opacity: 1; transform: none; }
        .rd1 { transition-delay: 0.08s; }
        .rd2 { transition-delay: 0.16s; }
        .rd3 { transition-delay: 0.24s; }
        .rd4 { transition-delay: 0.32s; }

        /* ══════════════════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════════════════ */
        @media (max-width: 980px) {
            .nav-links, .nav-right { display: none; }
            .nav-toggle { display: flex; }
            .outils-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-inner { flex-direction: column; align-items: flex-start; }
        }
        @media (max-width: 600px) {
            .page-body { padding: 4rem 1.25rem; gap: 5rem; }
            .assemblee-grid { grid-template-columns: 1fr; }
            .outils-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-title { letter-spacing: -0.015em; }
            .footer-cols { gap: 2rem; }
        }