/* ==================== DESIGN TOKENS ==================== */
        :root {
            /* Couleurs BEAROPS */
            --abyssal-gunmetal: #0B0F19;
            --carbon-surface: #161B28;
            --carbon-elevated: #1E2433;
            --carbon-border: #2A3142;
            --electric-cobalt: #3B82F6;
            --electric-cobalt-hover: #2563EB;
            --electric-cobalt-glow: rgba(59, 130, 246, 0.4);
            --electric-cobalt-subtle: rgba(59, 130, 246, 0.1);
            --offensive-red: #EF4444;
            --offensive-red-glow: rgba(239, 68, 68, 0.4);
            --sovereign-white: #F8FAFC;
            --muted-gray: #94A3B8;
            --subtle-gray: #64748B;
            --success-green: #10B981;
            --warning-amber: #F59E0B;
            --french-gradient: linear-gradient(90deg, #0055FF 0%, #FFFFFF 50%, #FF3333 100%);
            
            /* Typography */
            --font-display: 'Space Grotesk', system-ui, sans-serif;
            --font-body: 'Inter', system-ui, sans-serif;
            
            /* Spacing */
            --section-padding: clamp(4rem, 8vw, 8rem);
            --container-max: 1280px;
            
            /* Border Radius */
            --radius-sm: 4px;
            --radius-md: 8px;
            --radius-lg: 12px;
            --radius-xl: 20px;
            
            /* Transitions */
            --transition-fast: 150ms ease;
            --transition-base: 250ms ease;
            --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ==================== RESET & BASE ==================== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
        
        body { 
            font-family: var(--font-body); 
            background: var(--abyssal-gunmetal); 
            color: var(--sovereign-white); 
            line-height: 1.6; 
            overflow-x: hidden; 
        }
        
        ::selection { background: var(--electric-cobalt); color: var(--sovereign-white); }
        :focus-visible { outline: 2px solid var(--electric-cobalt); outline-offset: 3px; }

        /* Typography */
        h1, h2, h3, h4, h5, h6 { 
            font-family: var(--font-display); 
            font-weight: 700; 
            line-height: 1.2; 
            letter-spacing: -0.02em; 
        }
        h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; }
        h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }
        h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }
        p { color: var(--muted-gray); margin-bottom: 1rem; }
        a { color: var(--electric-cobalt); text-decoration: none; transition: color var(--transition-fast); }
        a:hover { color: var(--sovereign-white); }

        /* Layout */
        .container { 
            width: 100%; 
            max-width: var(--container-max); 
            margin: 0 auto; 
            padding: 0 clamp(1rem, 4vw, 2rem); 
        }
        .section { padding: var(--section-padding) 0; position: relative; }
        .sr-only { 
            position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; 
            overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; 
        }

        /* ==================== BUTTONS ==================== */
        .btn { 
            display: inline-flex; 
            align-items: center; 
            justify-content: center; 
            gap: 0.5rem; 
            padding: 0.875rem 1.75rem; 
            font-family: var(--font-display); 
            font-size: 0.9375rem; 
            font-weight: 600; 
            border-radius: var(--radius-md); 
            border: none; 
            cursor: pointer; 
            transition: all var(--transition-base); 
            white-space: nowrap; 
            text-decoration: none; 
        }
        .btn--primary { 
            background: var(--electric-cobalt); 
            color: var(--sovereign-white); 
            box-shadow: 0 0 20px var(--electric-cobalt-glow), 0 4px 12px rgba(0,0,0,0.3); 
        }
        .btn--primary:hover { 
            background: var(--electric-cobalt-hover); 
            transform: translateY(-2px); 
            box-shadow: 0 0 30px var(--electric-cobalt-glow), 0 8px 20px rgba(0,0,0,0.4); 
            color: var(--sovereign-white); 
        }
        .btn--secondary { 
            background: transparent; 
            color: var(--sovereign-white); 
            border: 1px solid var(--carbon-border); 
        }
        .btn--secondary:hover { 
            background: var(--carbon-surface); 
            border-color: var(--muted-gray); 
        }
        .btn--small {
            padding: 0.625rem 1.25rem;
            font-size: 0.875rem;
        }
        .btn--large { padding: 1rem 2rem; font-size: 1rem; }
        .btn-icon { width: 1.25em; height: 1.25em; flex-shrink: 0; }

        /* Header */
        .header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 0; background: rgba(11, 15, 25, 0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid transparent; transition: all var(--transition-base); }
        .header.scrolled { background: rgba(11, 15, 25, 0.95); border-bottom-color: var(--carbon-border); }
        .header__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
        .header__logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
        .header__logo-img { height: 32px; width: auto; object-fit: contain; max-width: 120px; }
        @media (min-width: 640px) { .header__logo-img { height: 38px; max-width: 150px; } }
        @media (min-width: 1024px) { .header__logo-img { height: 46px; max-width: none; } }

        /* Mobile Menu */
        .mobile-menu { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999; background: rgba(11, 15, 25, 0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 5rem 1.5rem 2rem; display: flex; flex-direction: column; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all var(--transition-base); overflow-y: auto; }
        .mobile-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
        .mobile-menu__nav { flex: 1; }
        .mobile-menu__link { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--sovereign-white); border-bottom: 1px solid var(--carbon-border); text-decoration: none; transition: color var(--transition-fast); }
        .mobile-menu__link:hover, .mobile-menu__link--active { color: var(--electric-cobalt); }
        .mobile-menu__link-icon { width: 20px; height: 20px; color: var(--muted-gray); transition: transform var(--transition-fast); }
        .mobile-menu__link.expanded .mobile-menu__link-icon { transform: rotate(180deg); }
        .mobile-menu__submenu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
        .mobile-menu__submenu.expanded { max-height: 500px; }
        .mobile-menu__sublink { display: block; padding: 0.875rem 1rem; font-size: 0.9375rem; color: var(--muted-gray); text-decoration: none; transition: all var(--transition-fast); border-left: 2px solid var(--carbon-border); margin-left: 0.5rem; }
        .mobile-menu__sublink:hover { color: var(--sovereign-white); border-left-color: var(--electric-cobalt); background: rgba(59, 130, 246, 0.05); }
        .mobile-menu__sublink small { display: block; font-size: 0.75rem; color: var(--subtle-gray); margin-top: 0.25rem; }
        .mobile-menu__cta { margin-top: 2rem; }
        .mobile-menu__cta .btn { width: 100%; justify-content: center; }
        .mobile-menu__close { position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--carbon-surface); border: 1px solid var(--carbon-border); border-radius: var(--radius-md); color: var(--sovereign-white); cursor: pointer; transition: all var(--transition-fast); }
        .mobile-menu__close:hover { background: var(--carbon-elevated); border-color: var(--electric-cobalt); }
        .mobile-menu__close svg { width: 20px; height: 20px; }
        
        /* Hamburger animation */
        .mobile-menu-toggle { position: relative; z-index: 1001; }
        .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
        .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
        .mobile-menu-toggle span { transition: all var(--transition-fast); }

        .nav { display: none; }
        @media (min-width: 1024px) { .nav { display: flex; align-items: center; gap: 0.5rem; } }
        .nav__link { padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500; color: var(--muted-gray); transition: color var(--transition-fast); }
        .nav__link:hover { color: var(--sovereign-white); }
        .nav__link--active { color: var(--electric-cobalt); }
        .nav__dropdown { position: relative; }
        .nav__dropdown-trigger { display: flex; align-items: center; gap: 0.25rem; }
        .nav__dropdown-icon { width: 1rem; height: 1rem; transition: transform var(--transition-fast); }
        .nav__dropdown:hover .nav__dropdown-icon { transform: rotate(180deg); }
        .nav__dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 240px; padding: 0.75rem; background: var(--carbon-surface); border: 1px solid var(--carbon-border); border-radius: var(--radius-lg); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--transition-fast); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
        .nav__dropdown:hover .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .nav__dropdown-item { display: block; padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--muted-gray); border-radius: var(--radius-sm); transition: all var(--transition-fast); }
        .nav__dropdown-item:hover { background: var(--carbon-elevated); color: var(--sovereign-white); }
        .nav__dropdown-item--active { background: rgba(59,130,246,0.1); color: var(--electric-cobalt); }
        .nav__dropdown-item small { display: block; font-size: 0.75rem; color: var(--subtle-gray); margin-top: 0.25rem; }

        .header__actions { display: flex; align-items: center; gap: 1rem; }
        .header__cta { display: none; }
        @media (min-width: 768px) { .header__cta { display: inline-flex; } }
        .mobile-menu-toggle { display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; background: none; border: none; cursor: pointer; }
        @media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }
        .mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--sovereign-white); }

        /* ==================== HERO SECTION ==================== */
        .hero {
            position: relative;
            padding: 8rem 0 6rem;
            overflow: hidden;
        }
        .hero__bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            z-index: -1;
        }
        .hero__grid {
            position: absolute;
            inset: -50%;
            background-image: 
                linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            transform: perspective(500px) rotateX(60deg);
            animation: gridMove 20s linear infinite;
        }
        @keyframes gridMove {
            0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
            100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
        }
        .hero__glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.3;
            animation: pulse 8s ease-in-out infinite;
        }
        .hero__glow--blue {
            width: 500px;
            height: 500px;
            background: var(--electric-cobalt);
            top: -150px;
            right: -150px;
        }
        .hero__glow--red {
            width: 400px;
            height: 400px;
            background: var(--offensive-red);
            bottom: -100px;
            left: -100px;
            animation-delay: -4s;
        }
        @keyframes pulse {
            0%, 100% { opacity: 0.2; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.1); }
        }

        .hero__content {
            position: relative;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero__badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--electric-cobalt-subtle);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 100px;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--electric-cobalt);
            margin-bottom: 1.5rem;
        }
        .hero__badge-icon {
            width: 1rem;
            height: 1rem;
        }
        .hero__title {
            margin-bottom: 1.5rem;
        }
        .hero__title-highlight {
            background: linear-gradient(135deg, var(--electric-cobalt) 0%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero__description {
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            color: var(--muted-gray);
        }
        .hero__stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
        }
        .hero__stat {
            text-align: center;
        }
        .hero__stat-value {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--electric-cobalt);
            line-height: 1;
        }
        .hero__stat-label {
            font-size: 0.875rem;
            color: var(--muted-gray);
            margin-top: 0.25rem;
        }

        /* ==================== FILTERS ==================== */
        .filters {
            padding: 2rem 0;
            border-bottom: 1px solid var(--carbon-border);
        }
        .filters__inner {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .filters__inner {
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
        }
        .filters__tabs {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .filter-tab {
            padding: 0.625rem 1.25rem;
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--muted-gray);
            background: transparent;
            border: 1px solid var(--carbon-border);
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all var(--transition-fast);
        }
        .filter-tab:hover {
            border-color: var(--muted-gray);
            color: var(--sovereign-white);
        }
        .filter-tab--active {
            background: var(--electric-cobalt);
            border-color: var(--electric-cobalt);
            color: var(--sovereign-white);
        }
        .filter-tab--active:hover {
            background: var(--electric-cobalt-hover);
            border-color: var(--electric-cobalt-hover);
        }

        .filters__search {
            position: relative;
            width: 100%;
            max-width: 320px;
        }
        .filters__search-input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.75rem;
            font-family: var(--font-body);
            font-size: 0.875rem;
            color: var(--sovereign-white);
            background: var(--carbon-surface);
            border: 1px solid var(--carbon-border);
            border-radius: var(--radius-md);
            transition: all var(--transition-fast);
        }
        .filters__search-input::placeholder {
            color: var(--subtle-gray);
        }
        .filters__search-input:focus {
            border-color: var(--electric-cobalt);
            box-shadow: 0 0 0 3px var(--electric-cobalt-subtle);
        }
        .filters__search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1rem;
            height: 1rem;
            color: var(--subtle-gray);
            pointer-events: none;
        }

        /* ==================== PUBLICATIONS GRID ==================== */
        .publications {
            padding: var(--section-padding) 0;
        }
        .publications__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 640px) {
            .publications__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .publications__grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Publication Card */
        .pub-card {
            position: relative;
            display: flex;
            flex-direction: column;
            background: var(--carbon-surface);
            border: 1px solid var(--carbon-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all var(--transition-base);
        }
        .pub-card:hover {
            border-color: var(--electric-cobalt);
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px var(--electric-cobalt-glow);
        }
        .pub-card__thumbnail {
            position: relative;
            aspect-ratio: 16/10;
            overflow: hidden;
            background: linear-gradient(135deg, var(--carbon-elevated) 0%, var(--carbon-surface) 100%);
        }
        .pub-card__thumbnail-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
            background: var(--carbon-elevated);
        }
        /* Placeholder when no image or loading */
        .pub-card__thumbnail-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--carbon-elevated) 0%, rgba(59, 130, 246, 0.1) 100%);
            z-index: 0;
        }
        .pub-card__thumbnail-placeholder svg {
            width: 48px;
            height: 48px;
            color: var(--subtle-gray);
            opacity: 0.5;
        }
        .pub-card:hover .pub-card__thumbnail-img {
            transform: scale(1.05);
        }
        .pub-card__thumbnail-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(11, 15, 25, 0.8) 100%);
        }
        .pub-card__thumbnail-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(11, 15, 25, 0.8);
            border: 1px solid var(--carbon-border);
            border-radius: 50%;
            color: var(--electric-cobalt);
            opacity: 0;
            transition: all var(--transition-base);
        }
        .pub-card:hover .pub-card__thumbnail-icon {
            opacity: 1;
        }
        .pub-card__thumbnail-icon svg {
            width: 28px;
            height: 28px;
        }

        .pub-card__badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.375rem;
            padding: 0.375rem 0.75rem;
            font-family: var(--font-display);
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            border-radius: var(--radius-sm);
            z-index: 1;
        }
        .pub-card__badge--pdf {
            background: rgba(239, 68, 68, 0.15);
            color: var(--offensive-red);
            border: 1px solid rgba(239, 68, 68, 0.3);
        }
        .pub-card__badge--article {
            background: rgba(16, 185, 129, 0.15);
            color: var(--success-green);
            border: 1px solid rgba(16, 185, 129, 0.3);
        }
        .pub-card__badge--guide {
            background: rgba(59, 130, 246, 0.15);
            color: var(--electric-cobalt);
            border: 1px solid rgba(59, 130, 246, 0.3);
        }
        .pub-card__badge--webinar {
            background: rgba(245, 158, 11, 0.15);
            color: var(--warning-amber);
            border: 1px solid rgba(245, 158, 11, 0.3);
        }
        .pub-card__badge-icon {
            width: 0.875rem;
            height: 0.875rem;
        }

        .pub-card__free {
            position: absolute;
            top: 1rem;
            right: 1rem;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.375rem 0.625rem;
            font-size: 0.6875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: var(--radius-sm);
            color: var(--success-green);
        }
        .pub-card__free-icon {
            width: 0.75rem;
            height: 0.75rem;
        }

        .pub-card__content {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 1.5rem;
        }
        .pub-card__meta {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.75rem;
            font-size: 0.8125rem;
            color: var(--subtle-gray);
        }
        .pub-card__meta-item {
            display: flex;
            align-items: center;
            gap: 0.375rem;
        }
        .pub-card__meta-icon {
            width: 0.875rem;
            height: 0.875rem;
        }
        .pub-card__title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--sovereign-white);
            margin-bottom: 0.75rem;
            line-height: 1.4;
            transition: color var(--transition-fast);
        }
        .pub-card:hover .pub-card__title {
            color: var(--electric-cobalt);
        }
        .pub-card__description {
            font-size: 0.9375rem;
            color: var(--muted-gray);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .pub-card__tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .pub-card__tag {
            padding: 0.25rem 0.625rem;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--muted-gray);
            background: var(--carbon-elevated);
            border-radius: var(--radius-sm);
        }
        .pub-card__cta {
            margin-top: auto;
        }

        /* ==================== EMPTY STATE ==================== */
        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
            grid-column: 1 / -1;
        }
        .empty-state__icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 1.5rem;
            color: var(--subtle-gray);
        }
        .empty-state__title {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }
        .empty-state__text {
            color: var(--muted-gray);
            max-width: 400px;
            margin: 0 auto;
        }

        /* ==================== CTA SECTION ==================== */
        .cta-section {
            position: relative;
            overflow: hidden;
        }
        .cta-section__bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, transparent 50%, rgba(239,68,68,0.1) 100%);
        }
        .cta-section__glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: var(--electric-cobalt);
            border-radius: 50%;
            filter: blur(200px);
            opacity: 0.15;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .cta-section__inner {
            position: relative;
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
        }
        .cta-section__text {
            font-size: 1.125rem;
            margin-bottom: 2.5rem;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-section__actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        /* ==================== FAQ ==================== */
        .faq {
            background: var(--carbon-surface);
        }
        .faq__header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }
        .faq__grid {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            border-bottom: 1px solid var(--carbon-border);
        }
        .faq-item__question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.5rem 0;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
        }
        .faq-item__question-text {
            font-family: var(--font-display);
            font-size: 1.0625rem;
            font-weight: 600;
            color: var(--sovereign-white);
        }
        .faq-item__icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            color: var(--electric-cobalt);
            transition: transform var(--transition-base);
        }
        .faq-item.active .faq-item__icon {
            transform: rotate(45deg);
        }
        .faq-item__answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-slow);
        }
        .faq-item.active .faq-item__answer {
            max-height: 500px;
        }
        .faq-item__answer-inner {
            padding-bottom: 1.5rem;
        }
        .faq-item__answer p {
            font-size: 0.9375rem;
            line-height: 1.8;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--abyssal-gunmetal);
            border-top: 1px solid var(--carbon-border);
            padding: 4rem 0 2rem;
        }
        .footer__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (min-width: 768px) {
            .footer__grid {
                grid-template-columns: 2fr repeat(3, 1fr);
            }
        }
        .footer__brand {
            max-width: 320px;
        }
        .footer__logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--sovereign-white);
            margin-bottom: 1rem;
        }
        .footer__logo-icon {
            width: 36px;
            height: 36px;
        }
        .footer__desc {
            font-size: 0.875rem;
            color: var(--muted-gray);
            margin-bottom: 1.5rem;
        }
        .footer__social {
            display: flex;
            gap: 0.75rem;
        }
        .footer__social-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--carbon-surface);
            border: 1px solid var(--carbon-border);
            border-radius: var(--radius-md);
            color: var(--muted-gray);
            transition: all var(--transition-fast);
        }
        .footer__social-link:hover {
            background: var(--electric-cobalt);
            border-color: var(--electric-cobalt);
            color: var(--sovereign-white);
        }
        .footer__social-link svg {
            width: 20px;
            height: 20px;
        }
        .footer__sovereignty {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin-top: 1.5rem;
            padding: 0.75rem 1rem;
            background: var(--carbon-surface);
            border: 1px solid var(--carbon-border);
            border-radius: var(--radius-md);
        }
        .footer__sovereignty-flag {
            display: flex;
            gap: 3px;
        }
        .footer__sovereignty-flag span {
            width: 6px;
            height: 20px;
            border-radius: 2px;
        }
        .footer__sovereignty-flag span:nth-child(1) { background: #0055FF; }
        .footer__sovereignty-flag span:nth-child(2) { background: #FFFFFF; }
        .footer__sovereignty-flag span:nth-child(3) { background: #FF3333; }
        .footer__sovereignty-text {
            font-size: 0.75rem;
            color: var(--muted-gray);
        }
        .footer__sovereignty-text strong {
            display: block;
            color: var(--sovereign-white);
            font-weight: 600;
        }
        .footer__nav-title {
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--sovereign-white);
            margin-bottom: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .footer__nav-list {
            list-style: none;
        }
        .footer__nav-item {
            margin-bottom: 0.75rem;
        }
        .footer__nav-link {
            font-size: 0.875rem;
            color: var(--muted-gray);
        }
        .footer__nav-link:hover {
            color: var(--sovereign-white);
        }
        .footer__bottom {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding-top: 2rem;
            border-top: 1px solid var(--carbon-border);
        }
        @media (min-width: 768px) {
            .footer__bottom {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }
        .footer__copyright {
            font-size: 0.8125rem;
            color: var(--subtle-gray);
        }
        .footer__legal {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .footer__legal-link {
            font-size: 0.8125rem;
            color: var(--subtle-gray);
        }
        .footer__legal-link:hover {
            color: var(--sovereign-white);
        }

        /* ==================== ANIMATIONS ==================== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-stagger > * {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
        .reveal-stagger.visible > *:nth-child(2) { transition-delay: 100ms; }
        .reveal-stagger.visible > *:nth-child(3) { transition-delay: 200ms; }
        .reveal-stagger.visible > *:nth-child(4) { transition-delay: 300ms; }
        .reveal-stagger.visible > *:nth-child(5) { transition-delay: 400ms; }
        .reveal-stagger.visible > *:nth-child(6) { transition-delay: 500ms; }
        .reveal-stagger.visible > * {
            opacity: 1;
            transform: translateY(0);
        }

        /* Section Labels */
        .section-label {
            display: inline-block;
            font-family: var(--font-display);
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--electric-cobalt);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }