﻿        :root {
            /* Palette de couleurs futuriste */
            --deep-green: #0a3d2f;
            --energy-blue: #0066cc;
            --turquoise: #32d42d;
            --gold: #fbbf24;
            --dark-bg: #0c1a1a;
            --light-bg: #f9fafb;
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.18);
            --text-light: #f1f5f9;
            --text-dark: #0f172a;
            --shadow-soft: 0 8px 32px rgba(0, 102, 204, 0.1);
            --shadow-medium: 0 20px 40px rgba(27, 221, 72, 0.15);
            
            /* Typographie */
            --font-primary: 'Inter', sans-serif;
            --font-secondary: 'Montserrat', sans-serif;
            
            /* Espacements */
            --section-padding: 6rem 2rem;
            --container-width: 1280px;
            --navbar-offset: 120px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden;
        }
        
        body {
            font-family: var(--font-primary);
            background-color: var(--dark-bg);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
            padding-top: var(--navbar-offset);
        }
        
        /* Canvas pour les effets 3D */
        #webgl-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
        
        /* Ã‰lÃ©ments flottants organiques */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            overflow: hidden;
        }
        
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--turquoise), transparent);
            opacity: 0.15;
            filter: blur(20px);
        }
        
        /* Barre de navigation premium avec animations */
        .navbar {
            position: fixed;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 95%;
            max-width: calc(var(--container-width) - 2rem);
            padding: 1.2rem 2rem;
            background: linear-gradient(135deg, rgba(10, 61, 47, 0.95), rgba(13, 110, 78, 0.9));
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(45, 212, 191, 0.25);
            border-radius: 20px;
            box-shadow: var(--shadow-soft);
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
            margin-top: 1rem;
        }
        
        .navbar.scrolled {
            width: 85%;
            padding: 0.8rem 1.5rem;
            border-radius: 16px;
            margin-top: 0.5rem;
        }
        
        .navbar-left-fold, .navbar-right-fold {
            position: absolute;
            top: 0;
            height: 100%;
            width: 20px;
            background: linear-gradient(to right, rgba(45, 212, 191, 0.3), transparent);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .navbar-left-fold {
            left: -20px;
            transform: skewX(-5deg);
        }
        
        .navbar-right-fold {
            right: -20px;
            transform: skewX(5deg);
        }
        
        .navbar.scrolled .navbar-left-fold,
        .navbar.scrolled .navbar-right-fold {
            opacity: 0.6;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            padding: 0.2rem 0;
        }
        
        .logo-image {
            height: 48px;
            width: auto;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .logo:hover .logo-image {
            transform: scale(1.05);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        
        .nav-link {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--turquoise);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, var(--turquoise), var(--energy-blue));
            transition: width 0.3s ease;
        }
        
        .nav-link.active {
            color: var(--turquoise);
        }
        
        .nav-link.active::after {
            width: 100%;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .language-switcher {
            display: flex;
            gap: 0.5rem;
            margin-left: 2rem;
        }
        
        .lang-btn {
            background: transparent;
            border: 1px solid var(--glass-border);
            color: var(--text-light);
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .lang-btn.active {
            background: var(--turquoise);
            color: var(--dark-bg);
            border-color: var(--turquoise);
        }
        
        .mobile-menu-btn {
            display: none;
            background: transparent;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Sections avec transitions 3D */
        .section {
            min-height: 100vh;
            padding: var(--section-padding);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
            scroll-margin-top: calc(var(--navbar-offset) + 20px);
        }
        
        .section-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            transition: opacity 1.5s ease;
        }
        
        .section[data-bg="finance"] .section-bg {
            background: radial-gradient(circle at 30% 20%, var(--energy-blue), var(--dark-bg) 70%);
        }
        
        .section[data-bg="edge"] .section-bg {
            background: radial-gradient(circle at 70% 20%, var(--deep-green), var(--dark-bg) 70%);
        }

        /* Section "ï¿½ propos" en fond blanc */
        #apropos {
            background-color: #ffffff;
            color: var(--text-dark);
        }

        #apropos .section-bg {
            background: transparent;
        }

        #contact {
            background-color: #ffffff;
            color: var(--text-dark);
        }

        #contact .section-bg {
            background: transparent;
        }

        #contact .hero-subtitle {
            color: rgba(15, 23, 42, 0.8);
        }

        #contact .contact-form {
            background: #ffffff;
            border-color: rgba(15, 23, 42, 0.12);
            color: var(--text-dark);
            min-height: 820px;
        }

        #contact .contact-form h3,
        #contact .form-group label {
            color: var(--text-dark);
        }

        #contact .form-group input,
        #contact .form-group textarea {
            background: #ffffff;
            color: var(--text-dark);
            border-color: rgba(15, 23, 42, 0.2);
        }

        #contact .target-btn {
            background: #ffffff;
            color: var(--text-dark);
            border-color: rgba(15, 23, 42, 0.15);
        }

        #solutions.section {
            padding-bottom: clamp(12rem, 22vw, 24rem);
            margin-bottom: -14rem;
            position: relative;
        }

        #solutions .section-bg {
            background: linear-gradient(135deg, rgba(183, 203, 193, 0.9), rgba(0, 181, 103, 0.95));
        }

        #solutions .section-content,
        #solutions .section-content h2,
        #solutions .section-content p {
            color: var(--text-light);
        }

        #solutions .section-content h2 {
            font-family: var(--font-secondary);
            font-size: clamp(2.4rem, 4.6vw, 3.6rem);
            letter-spacing: -0.02em;
            font-weight: 800;
            text-transform: none;
            position: relative;
            display: block;
            text-align: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 0 auto 1.2rem;
            line-height: 1.1;
        }

        #solutions .section-content h2::after {
            content: '';
            position: absolute;
            bottom: -0.35rem;
            left: 50%;
            transform: translateX(-50%);
            width: min(420px, 70%);
            height: 12px;
            background: linear-gradient(120deg, rgba(45, 212, 191, 0.4), rgba(0, 102, 204, 0.35));
            border-radius: 999px;
            box-shadow: 0 12px 24px rgba(0, 102, 204, 0.25);
        }

        #solutions .section-content .hero-subtitle {
            color: rgba(15, 23, 42, 0.75);
            font-size: 1.2rem;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .section[data-bg="beec"] .section-bg {
            background: radial-gradient(circle at 50% 80%, var(--turquoise), var(--dark-bg) 70%);
        }
        
        .section[data-bg="tech"] .section-bg {
            background: radial-gradient(circle at 30% 80%, var(--gold), var(--dark-bg) 70%);
        }
        
        .section-content {
            max-width: var(--container-width);
            width: 100%;
            z-index: 2;
        }

        #main-content {
            position: relative;
            z-index: 0;
            background: #ffffff;
            padding-bottom: 10rem; /* augmente pour laisser de l'espace sous le contenu */
        }

        @media (max-width: 768px) {
            body[data-page="ressources"] #main-content {
                padding-bottom: 4rem;
            }
        }

        
body[data-page="home"] #main-content::before,
body[data-page="solutions"] #main-content::before,
body[data-page="services"] #main-content::before,
body[data-page="formations"] #main-content::before,
body[data-page="apropos"] #main-content::before,
body[data-page="contact"] #main-content::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(16, 185, 129, 0.28) 1px, transparent 1px),
                linear-gradient(90deg, rgba(16, 185, 129, 0.28) 1px, transparent 1px);
            background-size: 52px 52px;
            opacity: 0.9;
            z-index: 2;
            pointer-events: none;
        }

        body[data-page="home"] #main-content::before {
            opacity: 0;
        }

        body[data-page="services"] #opportunite {
            position: relative;
            isolation: isolate;
            z-index: 3;
        }

        body[data-page="services"] #opportunite .section-bg {
            z-index: 3;
        }

        body[data-page="services"] #opportunite .section-content {
            position: relative;
            z-index: 4;
        }

        body[data-page="services"] #services-hero .section-bg {
            z-index: 3;
        }

        body[data-page="services"] #services-hero .section-content {
            position: relative;
            z-index: 4;
        }

        body[data-page="apropos"] .hero-secondary .section-bg {
            z-index: 2;
        }

        .main-bubbles {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }

        .main-bubble {
            position: absolute;
            border-radius: 50%;
            filter: blur(18px);
            opacity: 0.55;
            transform: translateZ(0);
        }

        .main-bubble.bubble-1 {
            width: clamp(220px, 18vw, 320px);
            height: clamp(220px, 18vw, 320px);
            right: -6%;
            top: -4%;
            background: radial-gradient(circle at 35% 35%, rgba(45, 212, 191, 0.65), rgba(255, 255, 255, 0.1));
        }

        .main-bubble.bubble-2 {
            width: clamp(200px, 16vw, 280px);
            height: clamp(200px, 16vw, 280px);
            right: 6%;
            top: 18%;
            background: radial-gradient(circle at 30% 30%, rgba(0, 102, 204, 0.55), rgba(255, 255, 255, 0.08));
        }

        .main-bubble.bubble-3 {
            width: clamp(180px, 15vw, 260px);
            height: clamp(180px, 15vw, 260px);
            right: 18%;
            top: 46%;
            background: radial-gradient(circle at 30% 30%, rgba(251, 191, 36, 0.5), rgba(255, 255, 255, 0.08));
        }

        .main-bubble.bubble-4 {
            width: clamp(220px, 18vw, 320px);
            height: clamp(220px, 18vw, 320px);
            left: 18%;
            top: 68%;
            background: radial-gradient(circle at 30% 30%, rgba(50, 212, 45, 0.5), rgba(255, 255, 255, 0.1));
        }

        .main-bubble.bubble-5 {
            width: clamp(240px, 20vw, 340px);
            height: clamp(240px, 20vw, 340px);
            left: -8%;
            bottom: -10%;
            background: radial-gradient(circle at 35% 35%, rgba(0, 102, 204, 0.45), rgba(255, 255, 255, 0.08));
        }
        
        /* Hero section */
        .hero {
            text-align: center;
            position: relative;
        }

        #home.hero {
            text-align: left;
        }

        #home .section-content {
            display: block;
        }

        .hero-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
            align-items: center;
            gap: clamp(2rem, 4vw, 4rem);
        }

        .hero-copy {
            max-width: 640px;
        }

        #home .hero-subtitle {
            margin-left: 0;
            margin-right: 0;
        }

        #home .cta-buttons {
            justify-content: flex-start;
        }

        #home .hero-video-launch {
            justify-content: flex-start;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            aspect-ratio: 1376 / 768;
            object-fit: contain;
            object-position: center;
            display: block;
            border-radius: 24px;
            box-shadow: 0 22px 50px rgba(2, 6, 23, 0.35);
            background: rgba(2, 6, 23, 0.55);
        }

        .hero-data-bar {
            margin-top: 2.5rem;
            background: var(--text-light);
            border-radius: 18px;
            padding: 1.6rem 2rem;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 1.5rem;
            color: #1f2937;
            box-shadow: 0 18px 40px rgba(36, 251, 54, 0.35);
        }

        .hero-data-bar .data-item {
            text-align: center;
        }

        .hero-data-bar .data-number {
            font-family: var(--font-secondary);
            font-size: clamp(2rem, 3vw, 2.6rem);
            font-weight: 800;
            color: #111827;
        }

        .hero-data-bar .data-label {
            margin-top: 0.4rem;
            font-size: 0.95rem;
            color: rgba(17, 24, 39, 0.75);
        }

        .hero-secondary {
            min-height: 50vh;
            padding: 3rem 2rem 4rem;
            margin-top: -10rem;
        }

        .hero-secondary .section-content {
            text-align: center;
            margin-top: 150px;
        }

        .hero-secondary .section-bg {
            overflow: hidden;
        }

        .hero-secondary .section-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(185deg, rgba(5, 176, 82, 0.7), rgba(12, 97, 64, 0.61));
            mix-blend-mode: multiply;
            opacity: 0.85;
        }
        
        .hero h1 {
            font-family: var(--font-secondary);
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            color: var(--snow-drift);
            opacity: 0;
            transform: translateY(30px);
        }

        .hero.hero-secondary h1,
        .hero.hero-secondary .hero-subtitle,
        .hero.hero-secondary .cta-buttons {
            opacity: 1;
            transform: none;
            color: var(--text-light);
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            color: rgba(241, 245, 239, 0.9);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            transform: translateY(30px);
        }

        .hero-video-launch {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.25rem;
            margin: 2.25rem auto 0;
            flex-wrap: wrap;
        }

        .hero-video-badge {
            width: 88px;
            height: 88px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.35);
            background: radial-gradient(circle at 30% 30%, rgba(45, 212, 191, 0.75), rgba(0, 102, 204, 0.7));
            color: #fff;
            display: grid;
            place-items: center;
            padding: 0;
            appearance: none;
            outline: none;
            font: inherit;
            box-shadow: 0 16px 28px rgba(2, 31, 22, 0.3);
            cursor: pointer;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .hero-video-badge::before {
            content: '';
            position: absolute;
            inset: -10px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.35);
            opacity: 0.7;
            animation: heroBadgePulse 2.6s ease-out infinite;
        }

        .hero-video-badge:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 22px 32px rgba(2, 31, 22, 0.4);
        }

        .hero-video-icon {
            font-size: 1.6rem;
            margin-left: 2px;
        }

        .hero-video-copy {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            text-align: left;
            color: rgba(241, 245, 239, 0.9);
        }

        .hero-video-title {
            font-size: 0.95rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            font-weight: 600;
        }

        .hero-video-subtitle {
            font-size: 1rem;
            opacity: 0.75;
        }

        @keyframes heroBadgePulse {
            0% {
                transform: scale(0.9);
                opacity: 0.6;
            }
            70% {
                transform: scale(1.15);
                opacity: 0;
            }
            100% {
                transform: scale(1.15);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .hero-video-launch {
                flex-direction: column;
            }

            .hero-video-copy {
                text-align: center;
            }
        }

        @media (max-width: 980px) {
            .hero-layout {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-copy {
                max-width: 100%;
            }

            #home .cta-buttons {
                justify-content: center;
            }

            #home .hero-video-launch {
                justify-content: center;
            }

            .hero-data-bar {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .hero-data-bar {
                grid-template-columns: 1fr;
                padding: 1.4rem;
            }
        }

        .contact-title {
            text-align: center;
            font-size: clamp(2.2rem, 4.2vw, 3.2rem);
            font-family: var(--font-secondary);
            font-weight: 700;
            color: var(--text-dark);
            position: relative;
            margin-bottom: 1.5rem;
        }

        .contact-title span {
            background: linear-gradient(120deg, var(--turquoise), var(--energy-blue));
            -webkit-background-clip: text;
            color: transparent;
        }

        .contact-title::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: clamp(220px, 70%, 520px);
            height: 10px;
            border-radius: 999px;
            background: linear-gradient(120deg, rgba(45, 212, 191, 0.4), rgba(0, 102, 204, 0.35));
        }

        .hero-formations {
            align-items: flex-end;
            min-height: 85vh;
            padding: 6rem 2rem 4rem;
        }

        .hero-formations .section-bg {
            background-position: top center !important;
        }

        .hero-formations .section-content {
            max-width: 900px;
        }

        .hero-formations h1 {
            font-size: clamp(2.8rem, 5vw, 4rem);
            text-align: left;
            color: #fff;
            margin-bottom: 1.5rem;
            opacity: 1;
            transform: none;
        }

        .hero-formations .hero-subtitle {
            text-align: left;
            opacity: 1;
            transform: none;
            color: rgba(255, 255, 255, 0.85);
            margin-left: 0;
        }

        .hero-formations-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.4rem 1.3rem;
            border-radius: 999px;
            background: rgba(45, 212, 191, 0.15);
            color: #ffffff;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .hero-formations-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }

        .hero-formations-stats {
            margin-top: 2.5rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.2rem;
        }

        .hero-formations-stats .stat-number {
            color: #fff;
            font-size: 2.5rem;
        }

        .hero-formations-stats .stat-label {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .formation-overview {
            color: var(--text-dark);
        }

        #formations .section-bg,
        .formation-overview .formation-bg {
            background-image: url('img/formation.jpg');
            background-size: cover;
            background-position: center;
            opacity: 1;
            will-change: transform;
            
        }

        #formations {
            min-height: 180vh;
            margin-bottom: -200px;
        }

        #formations .section-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        #formations .section-bg {
            position: absolute;
            inset: 0;
            transform-origin: center;
            filter: none;
            transform: none;
        }

        #formations .section-bg::before,
        #formations .section-bg::after {
            content: '';
            position: absolute;
            width: clamp(220px, 22vw, 360px);
            height: clamp(220px, 22vw, 360px);
            border-radius: 50%;
            filter: blur(18px);
            opacity: 0.85;
            pointer-events: none;
        }

        #formations .section-bg::before {
            left: 6%;
            top: 12%;
            background: radial-gradient(circle at 30% 30%, rgba(50, 212, 45, 0.6), rgba(255, 255, 255, 0.15));
        }

        #formations .section-bg::after {
            right: 6%;
            top: 10%;
            background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.55), rgba(50, 212, 45, 0.12));
        }

        .formation-reporting {
            color: var(--text-dark);
            background: #ffffff;
        }

        .formation-reporting-bg {
            background: #ffffff;
        }

        .formation-reporting-content {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            align-items: center;
            gap: 3rem;
        }

        .formation-reporting-media {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .formation-reporting-media::before {
            content: '';
            position: absolute;
            width: min(420px, 85%);
            height: min(300px, 60vw);
            background: rgba(32, 128, 8, 0.979);
            border-radius: 28px;
            transform: translateX(-18%) rotate(-15deg);
            filter: blur(18px);
            z-index: 0;
        }

        .formation-reporting-media img {
            width: min(420px, 90%);
            height: auto;
            display: block;
            filter: drop-shadow(0 28px 40px rgba(15, 23, 42, 0.18));
            border-radius: 10px;
            position: relative;
            z-index: 1;
        }

        .formation-reporting-text {
            position: relative;
        }

        .formation-reporting-text::before,
        .formation-reporting-text::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(10px);
            opacity: 0.85;
            pointer-events: none;
            z-index: 0;
        }

        .formation-reporting-text::before {
            width: 190px;
            height: 190px;
            right: -60px;
            top: 15%;
            background: radial-gradient(circle at 30% 30%, rgba(0, 102, 204, 0.45), rgba(0, 102, 204, 0.12));
        }

        .formation-reporting-text::after {
            width: 150px;
            height: 150px;
            right: -40px;
            bottom: 8%;
            background: radial-gradient(circle at 35% 35%, rgba(50, 212, 45, 0.4), rgba(50, 212, 45, 0.12));
        }

        .formation-reporting-text > * {
            position: relative;
            z-index: 1;
        }

        .formation-reporting-text h2 {
            color: var(--text-dark);
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 1rem;
        }

        .formation-reporting-text p {
            color: rgba(15, 23, 42, 0.8);
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
        }

        .formation-reporting-text ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 0.8rem;
            color: rgba(15, 23, 42, 0.78);
            font-weight: 500;
        }

        .formation-reporting-text li {
            position: relative;
            padding-left: 1.6rem;
        }

        .formation-reporting-text li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 0.8rem;
            height: 0.8rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--turquoise), var(--energy-blue));
            box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
        }

        .formation-intro {
            max-width: 900px;
            margin: 0 auto 3rem;
            text-align: center;
        }

        .formation-intro h2 {
            color: var(--text-dark);
            font-size: clamp(2.2rem, 4vw, 3rem);
            margin-bottom: 1rem;
        }

        .formation-intro p {
            color: rgba(15, 23, 42, 0.8);
            font-size: 1.15rem;
        }

        .formation-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(280px, 1fr));
            gap: 2rem;
            padding-bottom: 100px;
        }

        .formation-card {
            background: #fff;
            border-radius: 28px;
            padding: 2.5rem;
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: 0 35px 80px rgba(15, 23, 42, 0.08);
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            will-change: transform;
            z-index: 3;
        }

        .formation-card:hover {
            box-shadow: 0 45px 90px rgba(15, 23, 42, 0.14);
        }

        .formation-card-glow {
            border: 2px solid rgba(0, 102, 204, 0.6);
            box-shadow: 0 25px 60px rgba(0, 102, 204, 0.28);
        }

        .formation-card-glow::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: inherit;
            padding: 3px;
            background: linear-gradient(135deg, rgba(50, 212, 45, 1), rgba(0, 102, 204, 1));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            opacity: 0.95;
        }

        .formation-card-glow:hover::before {
            opacity: 1;
            filter: drop-shadow(0 0 26px rgba(50, 212, 45, 0.7));
        }

        .formation-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(135deg, rgba(45, 212, 191, 0.08), rgba(0, 102, 204, 0.08));
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .formation-card:hover::after {
            opacity: 1;
        }

        .formation-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: rgba(15, 23, 42, 0.6);
        }

        .formation-type {
            font-weight: 700;
            color: var(--energy-blue);
        }

        .formation-duration {
            display: inline-flex;
            gap: 0.35rem;
            align-items: center;
            font-weight: 600;
        }

        .formation-card h3 {
            font-size: 1.6rem;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .formation-card p {
            color: rgba(15, 23, 42, 0.75);
        }

        .formation-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            padding: 0;
            margin: 0;
            color: rgba(15, 23, 42, 0.8);
        }

        .formation-features li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 500;
        }

        .formation-features i {
            color: var(--turquoise);
        }

        .formation-card-footer {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .formation-next {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--energy-blue);
        }

        .btn-ghost {
            background: transparent;
            color: var(--energy-blue);
            border: 1px solid rgba(0, 102, 204, 0.4);
        }
        
        /* Banniere avec effet brush */
        .brush-section {
            position: relative;
            background: #f6a506;
            color: #2f1a02;
            padding: 6rem 2rem 8rem;
            text-align: center;
            overflow: visible;
            margin: 0 auto 12rem;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
            isolation: isolate;
        }
        
        .brush-section::before {
            content: '';
            position: absolute;
            top: -120px;
            left: 0;
            width: 100%;
            height: 140px;
            background: var(--dark-bg);
            clip-path: polygon(0 78%, 6% 60%, 12% 75%, 20% 52%, 28% 78%, 36% 55%, 44% 72%, 52% 50%, 60% 74%, 68% 54%, 76% 76%, 84% 57%, 92% 72%, 100% 60%, 100% 100%, 0 100%);
            pointer-events: none;
        }
        
        .brush-section__tail {
            position: absolute;
            left: 0;
            bottom: -240px;
            width: 100%;
            height: 280px;
            background: #501d65;
            clip-path: polygon(0 30%, 6% 46%, 13% 32%, 20% 50%, 28% 28%, 36% 48%, 44% 30%, 52% 52%, 60% 30%, 68% 50%, 76% 28%, 84% 46%, 92% 32%, 100% 40%, 100% 100%, 0 100%);
            z-index: -1;
            box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.35);
            pointer-events: none;
        }
        
        .brush-section__content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .brush-eyebrow {
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-weight: 700;
            font-size: 0.9rem;
            color: rgba(47, 26, 2, 0.65);
            margin-bottom: 0.8rem;
        }
        
        .brush-section h2 {
            font-family: var(--font-secondary);
            font-size: 3rem;
            color: #3f2203;
            margin-bottom: 1.5rem;
        }
        
        .brush-description {
            font-size: 1.25rem;
            color: rgba(47, 26, 2, 0.85);
            line-height: 1.7;
        }
        
        .brush-cta {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2.5rem;
        }
        
        .brush-section .btn-secondary {
            color: #2f1a02;
            border-color: rgba(47, 26, 2, 0.3);
        }
        
        .brush-section .btn-secondary:hover {
            background: rgba(0, 0, 0, 0.08);
            border-color: rgba(47, 26, 2, 0.6);
        }
        
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 3rem;
            opacity: 0;
            transform: translateY(30px);
        }

        #opportunite .cta-buttons {
            opacity: 1;
            transform: none;
        }
        
        .hero-divider {
            width: min(900px, 85%);
            height: 3px;
            margin: 3rem auto 0;
            background: linear-gradient(90deg, transparent, rgba(3, 250, 15, 0.888), rgba(0, 102, 204, 0.9), rgba(65, 228, 0, 0.8), transparent);
            border-radius: 999px;
            opacity: 0.85;
            position: relative;
        }
        
        .hero-divider::before,
        .hero-divider::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 200px;
            height: 42px;
            transform: translateY(-50%) scaleX(1.05);
            background: radial-gradient(ellipse at 15% 50%, rgb(5, 176, 82), transparent 65%);
            opacity: 0.9;
            pointer-events: none;
            filter: blur(0.3px);
        }
        
        .hero-divider::before {
            left: -80px;
            border-bottom-left-radius: 100%;
            border-top-left-radius: 100%;
        }
        
        .hero-divider::after {
            right: -80px;
            border-bottom-right-radius: 100%;
            border-top-right-radius: 100%;
            background: radial-gradient(ellipse at 85% 50%, rgba(237, 65, 7, 0.726), transparent 65%);
        }
        
        .btn {
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            border: 2px solid transparent;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--turquoise), var(--energy-blue));
            color: var(--text-light);
            box-shadow: 0 10px 30px rgba(45, 212, 191, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(45, 212, 191, 0.5);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border-color: var(--glass-border);
        }
        
        .btn-secondary:hover {
            border-color: var(--turquoise);
            background: rgba(45, 212, 191, 0.1);
        }

        #opportunite .cta-buttons .btn-secondary {
            background: var(--energy-blue);
            border-color: var(--energy-blue);
            color: #ffffff;
            padding: 1rem 2rem;
            font-size: 1.05rem;
            box-shadow: 0 14px 30px rgba(0, 102, 204, 0.35), 0 0 0 rgba(45, 212, 191, 0);
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
        }

        #opportunite .cta-buttons .btn-secondary:hover {
            background: #0050a8;
            border-color: #0050a8;
            transform: translateY(-3px);
            box-shadow: 0 18px 36px rgba(0, 102, 204, 0.45), 0 0 18px rgba(45, 212, 191, 0.45);
        }

        #opportunite .cta-buttons .btn-secondary:focus-visible {
            box-shadow: 0 18px 36px rgba(0, 102, 204, 0.45), 0 0 0 4px rgba(45, 212, 191, 0.35);
        }
        
        /* Cartes interactives */
        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .solutions-layout {
            position: relative;
            display: flex;
            align-items: stretch;
            gap: 2.5rem;
            margin-top: 3rem;
            padding-right: clamp(1rem, 8vw, 6rem);
        }

        .cards-column {
            flex: 0 0 min(60%, 720px);
            max-width: 60%;
        }

        .solutions-layout .cards-container {
            grid-template-columns: repeat(2, minmax(220px, 1fr));
            gap: 1.5rem;
            margin-top: 0;
        }

        .solutions-layout .card {
            min-height: 60px;
            background: rgba(9, 50, 29, 0.8);
        }

        .solutions-illustration {
            position: absolute;
            right: clamp(-1rem, 4vw, 2rem);
            top: 43%;
            transform: translateY(-55%);
            width: min(980px, 52%);
            max-width: 960px;
            height: clamp(460px, 75vh, 700px);
        }

        .solutions-illustration img {
            width: 100%;
            height: auto;
            object-fit: contain;
            display: block;
        }

        .solutions-illustration-floating {
            position: absolute;
            top: 420px;
            left: 65%;
            transform: translateX(-50%);
            width: 80%;
            max-width: 480px;
            z-index: 2;
            pointer-events: none;
        }

        .solutions-illustration::before,
        .solutions-illustration::after,
        .solutions-illustration-glow {
            display: none;
        }

        .solutions-cta {
            margin: 2rem auto 0;
            background: rgba(6, 25, 18, 0.9);
            border: 1px solid rgba(45, 212, 191, 0.3);
            border-radius: 28px;
            padding: 2rem 2.5rem;
            max-width: 860px;
            text-align: center;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
            position: relative;
            overflow: hidden;
        }

        .solutions-cta .cta-buttons {
            opacity: 1;
            transform: none;
        }

        .solutions-cta::after {
            content: '';
            position: absolute;
            top: -40px;
            right: -60px;
            width: 320px;
            height: 220px;
            background: linear-gradient(120deg, rgba(45, 212, 53, 0.45), rgba(0, 102, 204, 0.25));
            transform: skewX(-18deg);
            border-radius: 60px;
            opacity: 0.6;
            pointer-events: none;
        }

        .solutions-cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.35rem 1.1rem;
            border-radius: 999px;
            background: rgba(45, 212, 191, 0.15);
            color: var(--turquoise);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 1rem;
        }

        .solutions-cta p {
            margin-bottom: 1.4rem;
            font-size: 1.1rem;
            color: rgba(248, 251, 249, 0.9);
        }

        .card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            transform: perspective(1000px);
        }
        
        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(0, 102, 204, 0.1));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .card:hover {
            transform: perspective(1000px) translateY(-10px) rotateX(5deg);
            box-shadow: var(--shadow-medium);
        }
        
        .card:hover::before {
            opacity: 1;
        }
        
        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--turquoise);
        }
        
        .card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .card p {
            color: rgba(241, 245, 239, 0.8);
            margin-bottom: 1.5rem;
        }

        .solutions-overview {
            position: relative;
            isolation: isolate;
            color: var(--text-dark);
        }

        .solutions-overview::before {
            content: '';
            position: absolute;
            top: -150px;
            left: 50%;
            transform: translateX(-50%);
            width: min(1500px, 130%);
            height: 260px;
            background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0)), linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 1) 60%, rgba(241, 250, 248, 1) 100%);
            border-bottom-left-radius: 65% 90%;
            border-bottom-right-radius: 65% 90%;
            filter: drop-shadow(0 40px 90px rgba(15, 23, 42, 0.25));
            z-index: -2;
        }

        .solutions-overview::after {
            content: '';
            position: absolute;
            top: -35px;
            left: 50%;
            transform: translateX(-50%);
            width: min(1100px, 100%);
            height: 80px;
            background: linear-gradient(90deg, rgba(45, 212, 191, 0.25), rgba(255, 255, 255, 0.9), rgba(0, 102, 204, 0.25));
            opacity: 0.7;
            border-radius: 50% / 100%;
            z-index: -1;
            filter: blur(12px);
        }

        .solutions-overview .solution-bg {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 255, 249, 0.95));
            opacity: 1;
            width: 100vw;
            left: 50%;
            transform: translateX(-50%);
        }

        .solution-intro {
            text-align: center;
            max-width: 820px;
            margin: 0 auto 3rem;
        }

        body[data-page="services"] #main-content {
            background: linear-gradient(180deg, #f7fbff 0%, #eef6f8 45%, #ffffff 100%);
        }

        body[data-page="services"] .solutions-overview .solution-bg {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 250, 249, 0.88));
        }

        body[data-page="services"] .solution-card {
            background: rgba(255, 255, 255, 0.62);
            border: 1px solid rgba(15, 23, 42, 0.12);
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        body[data-page="services"] .solution-card:hover {
            box-shadow: 0 24px 52px rgba(15, 23, 42, 0.18);
        }

        body[data-page="services"] .services-showcase {
            color: var(--text-dark);
        }

        body[data-page="services"] .services-showcase .section-bg {
            background: radial-gradient(circle at 20% 15%, rgba(45, 212, 191, 0.18), rgba(255, 255, 255, 0.9) 45%, rgba(240, 250, 249, 0.96) 100%);
            opacity: 1;
        }

        body[data-page="services"] .services-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 3.5rem;
        }

        body[data-page="services"] .services-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 2.6rem;
            margin-top: 3rem;
        }

        body[data-page="services"] .service-card {
            position: relative;
            background: rgba(255, 255, 255, 0.96);
            border: 1px solid rgba(15, 23, 42, 0.12);
            border-radius: 28px;
            padding: 3.6rem 2.6rem 2.4rem;
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
            transform-style: preserve-3d;
            min-height: 470px;
            overflow: hidden;
        }

        body[data-page="services"] .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at var(--card-glow-x, 20%) var(--card-glow-y, 20%), rgba(45, 212, 191, 0.18), transparent 55%);
            opacity: 0;
            transition: opacity 0.35s ease;
            pointer-events: none;
        }

        body[data-page="services"] .service-card:hover::before {
            opacity: 1;
        }

        body[data-page="services"] .service-card:hover {
            box-shadow: 0 32px 70px rgba(15, 23, 42, 0.18);
            border-color: rgba(45, 212, 191, 0.35);
        }

        body[data-page="services"] .card-badge {
            position: absolute;
            top: -24px;
            left: -24px;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #e53935, #b71c1c);
            border-radius: 0 0 48% 0;
            color: #ffffff;
            font-family: var(--font-secondary);
            font-size: 3.6rem;
            font-weight: 800;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 0.8rem 0 0 0.9rem;
            box-shadow: 0 20px 45px rgba(0, 102, 204, 0.35);
            z-index: 2;
        }

        body[data-page="services"] .card-background {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(45, 212, 191, 0.12), rgba(0, 102, 204, 0.06));
            opacity: 0;
            transition: opacity 0.35s ease;
            z-index: 1;
        }

        body[data-page="services"] .service-card:hover .card-background {
            opacity: 1;
        }

        body[data-page="services"] .card-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        body[data-page="services"] .card-icon-wrapper {
            width: 76px;
            height: 76px;
            border-radius: 18px;
            background: #ffffff;
            border: 2px solid rgba(15, 23, 42, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.8rem;
            box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        body[data-page="services"] .service-card:hover .card-icon-wrapper {
            transform: translateY(-6px);
            border-color: rgba(45, 212, 191, 0.5);
        }

        body[data-page="services"] .card-icon {
            font-size: 2rem;
            color: var(--energy-blue);
        }

        body[data-page="services"] .card-title {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1.2rem;
        }

        body[data-page="services"] .card-description {
            color: rgba(15, 23, 42, 0.75);
            font-size: 1.02rem;
            line-height: 1.7;
            margin-bottom: 1.6rem;
        }

        body[data-page="services"] .card-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        body[data-page="services"] .card-features li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 0.95rem;
            color: rgba(15, 23, 42, 0.8);
            margin-bottom: 0.65rem;
        }

        body[data-page="services"] .card-features li::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #e53935;
            flex-shrink: 0;
        }

        body[data-page="services"] .card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            color: var(--energy-blue);
            font-weight: 700;
            text-decoration: none;
            padding: 0.85rem 1.6rem;
            border-radius: 999px;
            border: 1px solid rgba(0, 102, 204, 0.3);
            background: rgba(0, 102, 204, 0.08);
            width: fit-content;
            transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        }

        body[data-page="services"] .service-card:hover .card-link {
            background: var(--energy-blue);
            color: #ffffff;
            border-color: var(--energy-blue);
            transform: translateX(6px);
        }

        body[data-page="services"] .services-cta {
            color: var(--text-dark);
        }

        body[data-page="services"] .services-cta .section-bg {
            background: linear-gradient(135deg, rgba(45, 212, 191, 0.18), rgba(0, 102, 204, 0.12));
            opacity: 1;
        }

        body[data-page="services"] .services-cta-inner {
            max-width: 780px;
            margin: 0 auto;
            text-align: center;
        }

        body[data-page="services"] .services-cta .cta-badge {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            margin: 0 auto 2.5rem;
            background: linear-gradient(135deg, var(--turquoise), var(--energy-blue));
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            box-shadow: 0 18px 36px rgba(0, 102, 204, 0.35);
        }

        body[data-page="services"] .services-cta .cta-title {
            font-size: clamp(2.2rem, 4vw, 3.4rem);
            margin-bottom: 1.4rem;
            color: var(--text-dark);
            font-family: var(--font-secondary);
        }

        body[data-page="services"] .services-cta .cta-description {
            font-size: 1.1rem;
            color: rgba(15, 23, 42, 0.75);
            line-height: 1.8;
        }

        body[data-page="services"] .services-cta .cta-buttons {
            opacity: 1;
            transform: none;
        }

        body[data-page="services"] .services-cta .btn-secondary {
            color: var(--energy-blue);
            border-color: rgba(0, 102, 204, 0.45);
            background: rgba(255, 255, 255, 0.85);
        }

        body[data-page="services"] .services-cta .btn-secondary:hover {
            background: var(--energy-blue);
            color: #ffffff;
            border-color: var(--energy-blue);
        }

        @media (max-width: 1100px) {
            body[data-page="services"] .services-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 2rem;
            }
        }

        @media (max-width: 700px) {
            body[data-page="services"] .services-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        @media (max-width: 768px) {
            body[data-page="services"] .service-card {
                padding: 3rem 2rem 2rem;
                min-height: auto;
            }

            body[data-page="services"] .card-badge {
                width: 100px;
                height: 100px;
                font-size: 3rem;
                top: -18px;
                left: -18px;
            }
        }

        body[data-page="services"] .service-bubbles {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }

        body[data-page="services"] .service-bubble {
            position: absolute;
            border-radius: 50%;
            filter: blur(6px);
            opacity: 0.65;
            background: radial-gradient(circle at 30% 30%, rgba(45, 212, 191, 0.6), rgba(0, 102, 204, 0.15));
            animation: serviceBubbleFloat 14s ease-in-out infinite;
        }

        body[data-page="services"] .service-bubble.bubble-1 {
            width: 220px;
            height: 220px;
            left: -60px;
            top: 120px;
        }

        body[data-page="services"] .service-bubble.bubble-2 {
            width: 160px;
            height: 160px;
            right: 8%;
            top: 260px;
            animation-delay: -3s;
        }

        body[data-page="services"] .service-bubble.bubble-3 {
            width: 280px;
            height: 280px;
            right: -90px;
            top: 60px;
            animation-delay: -6s;
        }

        body[data-page="services"] .service-bubble.bubble-4 {
            width: 200px;
            height: 200px;
            left: 12%;
            bottom: 120px;
            animation-delay: -9s;
        }

        body[data-page="services"] .service-bubble.bubble-5 {
            width: 140px;
            height: 140px;
            right: 18%;
            bottom: 40px;
            animation-delay: -12s;
        }

        .section-eyebrow {
            display: inline-flex;
            text-transform: uppercase;
            letter-spacing: 0.35em;
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(45, 212, 191, 0.9);
            margin-bottom: 1.5rem;
        }

        .solution-title {
            font-size: clamp(2.4rem, 4vw, 3.3rem);
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            font-family: var(--font-secondary);
            letter-spacing: -0.02em;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            text-align: center;
            line-height: 1.15;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .solution-title::after {
            content: '';
            position: absolute;
            bottom: -0.35rem;
            left: 50%;
            transform: translateX(-50%);
            width: clamp(240px, 70%, 520px);
            height: 12px;
            background: linear-gradient(120deg, rgba(45, 212, 191, 0.35), rgba(0, 102, 204, 0.35));
            border-radius: 999px;
            z-index: -1;
            opacity: 0.8;
            filter: blur(0.5px);
        }

        .solution-title span {
            background: linear-gradient(120deg, var(--turquoise), var(--energy-blue));
            -webkit-background-clip: text;
            color: transparent;
        }

        .solutions-overview h3 {
            color: var(--text-dark);
        }

        .solution-description {
            color: rgba(15, 23, 42, 0.75);
            font-size: 1.1rem;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.8rem;
            margin-top: 2.5rem;
            perspective: 1600px;
        }

        .solution-card {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 20px;
            padding: 2.2rem 2rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.5s ease, box-shadow 0.5s ease;
            box-shadow: 0 22px 45px rgba(15, 23, 42, 0.08);
            transform-style: preserve-3d;
            transform: rotateX(0deg) rotateY(0deg) translateY(0);
        }

        .solution-card.tilt-left,
        .solution-card.tilt-right {
            transform: rotateX(4deg) translateY(-10px);
            box-shadow: 0 35px 60px rgba(15, 23, 42, 0.18);
        }

        .solution-card.tilt-left {
            transform: rotateX(4deg) rotateY(-8deg) translateY(-10px);
        }

        .solution-card.tilt-right {
            transform: rotateX(4deg) rotateY(8deg) translateY(-10px);
        }

        .solution-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(45, 212, 191, 0.08), rgba(0, 102, 204, 0.08));
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 0;
        }

        .solution-card:hover {
            transform: rotateX(6deg) rotateY(-3deg) translateY(-12px);
            border-color: rgba(45, 212, 191, 0.35);
            box-shadow: 0 28px 55px rgba(15, 23, 42, 0.15);
        }

        .solution-card.tilt-left:hover,
        .solution-card.tilt-right:hover {
            transform: rotateX(4deg) translateY(-10px);
            border-color: rgba(45, 212, 191, 0.25);
            box-shadow: 0 35px 60px rgba(15, 23, 42, 0.18);
        }

        .solution-card.tilt-left:hover {
            transform: rotateX(4deg) rotateY(-8deg) translateY(-10px);
        }

        .solution-card.tilt-right:hover {
            transform: rotateX(4deg) rotateY(8deg) translateY(-10px);
        }

        .solution-card:hover::before {
            opacity: 1;
        }

        .solution-card > * {
            position: relative;
            z-index: 1;
        }

        .solution-card .card-index {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid rgba(45, 212, 191, 0.4);
            margin-bottom: 1.5rem;
            font-weight: 600;
            color: var(--turquoise);
        }

        .solution-card h4 {
            font-size: 1.35rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .solution-card p {
            margin: 0;
            color: rgba(15, 23, 42, 0.75);
        }

        .audience-section {
            position: relative;
            color: var(--text-dark);
            background: #ffffff;
            padding-bottom: 15rem;
            margin-bottom: -5rem;
            
        }

        .audience-floating {
            position: absolute;
            z-index: 0;
            pointer-events: none;
            opacity: 0.6;
            animation: floatY 8s ease-in-out infinite;
        }

        .audience-floating img {
             margin-right: -40px;
        }

        .audience-floating-top {
            top: 30px;
            right: 40px;
        }

        .audience-floating-bottom {
            bottom: 40px;
            left: 40px;
            animation-duration: 10s;
        }

        .audience-floating-bottom img {
            margin-left: -40px;
        }

        .audience-section::before {
            content: none;
        }

        .audience-section::after {
            content: none;
        }

        .audience-bg {
            background: #ffffff;
        }

        .audience-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .audience-title {
            font-size: clamp(2.4rem, 4.2vw, 3.4rem);
            margin-bottom: 1.5rem;
            font-family: var(--font-secondary);
            font-weight: 700;
            color: #0b1f33;
            letter-spacing: -0.02em;
            display: inline-flex;
            align-items: flex-end;
            gap: 0.35rem;
            flex-wrap: wrap;
            text-align: center;
            line-height: 1.05;
            position: relative;
            padding-bottom: 0.45rem;
        }

        .audience-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: clamp(260px, 75%, 520px);
            height: 14px;
            background: linear-gradient(90deg, rgba(189, 240, 255, 0.5), rgba(121, 214, 230, 0.9), rgba(0, 153, 255, 0.7));
            border-radius: 999px;
        }

        .audience-title span {
            background: linear-gradient(120deg, #20c469, #1fdb9c, #0a7ed8);
            -webkit-background-clip: text;
            color: transparent;
        }

        .audience-intro p {
            color: rgba(15, 23, 42, 0.7);
            font-size: 1.1rem;
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 2rem;
        }

        .audience-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            box-shadow: 0 22px 45px rgba(7, 7, 7, 0.08);
            padding: 2rem 2rem 2.5rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
        }

        .audience-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(45, 212, 191, 0.12), rgba(0, 102, 204, 0.12));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .audience-card:hover {
            transform: translateY(-10px);
            border-color: rgba(81, 212, 45, 0.4);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        }

        .audience-card:hover::before {
            opacity: 1;
        }

        .audience-card > * {
            position: relative;
            z-index: 1;
        }

        .audience-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .audience-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-weight: 600;
            color: var(--turquoise);
        }

        .audience-card h3 {
            font-size: 1.3rem;
            line-height: 1.3;
        }

        .audience-card p {
            color: rgba(0, 0, 0, 0.78);
            margin-bottom: 0;
        }

        .audience-cta {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.5rem;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-size: 0.85rem;
            color: #ffffff;
            background: linear-gradient(130deg, #0b36c7, #05c676);
            box-shadow: 0 18px 35px rgba(11, 54, 199, 0.3);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .audience-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(130deg, rgba(255, 255, 255, 0.5), transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .audience-cta::after {
            content: '\f061';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.9rem;
            position: relative;
            transition: transform 0.3s ease;
        }

        .audience-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 25px 50px rgba(11, 54, 199, 0.35);
        }

        .audience-cta:hover::after {
            transform: translateX(4px);
        }

        .audience-cta:hover::before {
            opacity: 0.4;
        }

        .audience-card-body {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .audience-card-body img {
            width: 140px;
            height: 140px;
            object-fit: cover;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
        }

        .audience-callout {
            margin-top: 3.5rem;
            display: flex;
            justify-content: center;
        }

        .callout-content {
            width: min(80%, 900px);
            min-height: 200px;
            background: #ffffff;
            border: 1px solid rgba(15, 23, 42, 0.08);
            border-radius: 32px;
            padding: 2.5rem 3rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            gap: 1.5rem;
            box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
        }

        .callout-content p {
            font-size: 1.2rem;
            color: rgba(15, 23, 42, 0.8);
            max-width: 720px;
        }
        
        /* Chiffres clÃ©s animÃ©s */
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 3rem;
            margin-top: 5rem;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-family: var(--font-secondary);
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--snow-drift);
            line-height: 1;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: rgba(241, 245, 239, 0.8);
            margin-top: 0.5rem;
        }

        /* About intro section */
        .about-section {
            padding: var(--section-padding);
            margin-top: 0;
        }

        .about-intro {
            margin: 0 auto;
            padding: 4rem 3rem;
            max-width: var(--container-width);
            position: relative;
            border: 1px solid rgba(148, 221, 181, 0.25);
            border-radius: 28px;
            text-align: center;
            overflow: hidden;
            z-index: 0;
            isolation: isolate;
            background: rgba(5, 28, 16, 0.75);
            color: var(--snow-drift);
        }

        .about-intro::before,
        .about-intro::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            z-index: -2;
        }

        .about-intro::before {
            background-image: none;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            transform: scale(1.08);
            filter: saturate(1.05);
        }

        .about-intro::after {
            background: radial-gradient(circle at 10% 20%, rgba(148, 221, 181, 0.35), transparent 55%);
            z-index: -1;
        }

        .about-intro > * {
            position: relative;
            z-index: 1;
        }

        .about-eyebrow {
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-weight: 700;
            color: rgba(4, 176, 81, 0.7);
            margin-bottom: 0.5rem;
        }

        .about-intro h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }

        .about-lede {
            max-width: 820px;
            margin: 0 auto 2rem;
            color: rgba(241, 245, 239, 0.85);
            font-size: 1.2rem;
            text-align: center;
        }

        .about-section-block {
            margin-top: clamp(3rem, 6vw, 5rem);
        }

        .about-section-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .about-section-title {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-family: var(--font-secondary);
            font-weight: 700;
            color: var(--text-light);
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
        }

        .about-section-title span {
            background: linear-gradient(120deg, var(--turquoise), var(--energy-blue));
            -webkit-background-clip: text;
            color: transparent;
        }

        .about-section-title::after {
            content: '';
            position: absolute;
            bottom: -0.45rem;
            left: 50%;
            transform: translateX(-50%);
            width: clamp(200px, 62%, 460px);
            height: 10px;
            border-radius: 999px;
            background: linear-gradient(120deg, rgba(45, 212, 191, 0.6), rgba(0, 102, 204, 0.6));
            opacity: 0.85;
        }

        .about-section-subtitle {
            margin-top: 1rem;
            color: rgba(14, 14, 14, 0.8);
        }

        .about-stats-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(220px, 0.6fr);
            gap: 2.5rem;
            align-items: center;
        }

        .about-stats-cards {
            margin-top: 0;
        }

        .about-stats-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-stats-visual img {
            width: min(360px, 100%);
            height: auto;
            filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.4));
        }

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

            .about-stats-visual {
                order: 2;
            }
        }

        .partner-marquee {
            position: relative;
            overflow: hidden;
            padding: 1.5rem 0;
            margin-top: 5.5rem;
            margin-bottom: 2rem;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
        }

        .partner-layout {
            display: grid;
            grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
            gap: 2.5rem;
            align-items: center;
        }

        .partners-section .partner-layout {
            grid-template-columns: 1fr;
            align-items: start;
        }

        .partners-section .partner-copy {
            text-align: center;
        }

        .partner-illustration {
            padding-top: 50px;
            height: 380px;
        }

        .partner-illustration img,
        .partner-illustration video {
            width: 100%;
            height: 100%;
            min-height: 180px;
            object-fit: cover;
            border-radius: 0;
            box-shadow: none;
        }

        .partners-section .partner-illustration {
            padding-top: 0;
            height: auto;
        }

        .partners-section .partner-illustration img {
            height: auto;
            object-fit: contain;
            background: transparent;
            padding: 0;
        }

        .partner-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .partner-track {
            display: flex;
            align-items: center;
            gap: 3rem;
            width: max-content;
            animation: partnerMarquee 28s linear infinite;
        }

        .partner-logo {
            height: clamp(36px, 6vw, 52px);
            width: auto;
            filter: grayscale(1) contrast(1.1);
            opacity: 0.75;
            transition: transform 0.4s ease, filter 0.4s ease, opacity 0.4s ease;
        }

        .partner-logo:hover {
            filter: none;
            opacity: 1;
            transform: translateY(-4px) scale(1.03);
        }

        @keyframes partnerMarquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 700px) {
            .partner-track {
                gap: 2rem;
                animation-duration: 22s;
            }
        }

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

            .partner-illustration img {
                min-height: 220px;
            }
        }

        .about-intro .about-grid {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .about-intro .about-panel {
            background: rgba(4, 176, 81, 0.09);
            border: 1px solid rgba(148, 221, 181, 0.25);
            border-radius: 18px;
            padding: 1.8rem;
            text-align: left;
        }

        .about-intro .about-panel h3 {
            margin-bottom: 0.8rem;
        }

        .mini-timeline {
            margin-top: 2.5rem;
            padding-left: 0;
            border-left: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
        }

        .mini-timeline .timeline-item {
            background: rgba(192, 235, 212, 0.05);
            border: 1px solid rgba(148, 221, 181, 0.2);
            border-radius: 16px;
            padding: 1.5rem;
        }

        .mini-timeline .timeline-year {
            font-size: 1.1rem;
            color: var(--sunset-orange);
        }

        .about-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 3rem;
        }
        
        /* Target audience selector */
        .target-selector {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }
        
        .target-btn {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            color: var(--text-light);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .target-btn:hover, .target-btn.active {
            background: linear-gradient(135deg, var(--turquoise), var(--energy-blue));
            border-color: transparent;
            transform: translateY(-3px);
        }
        
        /* Footer */
        .footer {
              background: linear-gradient(120deg, #0b36c7, #05c676);
              padding: 15rem 2rem 2rem;
              border-top: 1px solid rgba(15, 23, 42, 0.08);
              color: #ffffff;
              position: relative;
              z-index: 5;
              overflow: hidden;
              border-top-left-radius: 980px 120px;
              border-top-right-radius: 980px 120px;
            isolation: isolate;
        }

        /* Faire chevaucher le footer sur le contenu principal */
        .footer {
            margin-top: -8rem;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: -190px;
            left: 50%;
            transform: translateX(-50%);
            width: 180%;
            height: 340px;
            border-bottom-left-radius: 75% 890%;
            border-bottom-right-radius: 75% 890%;
            background-image: linear-gradient(120deg, rgba(11, 54, 199, 0.45), rgba(5, 198, 118, 0.45));
            box-shadow: 0 40px 120px rgba(15, 23, 42, 0.28);
            filter: blur(18px);
            opacity: 0.9;
            z-index: -2;
        }

        .footer::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 20%, rgba(11, 54, 199, 0.12), transparent 55%),
                        radial-gradient(circle at 70% 20%, rgba(5, 198, 118, 0.12), transparent 60%);
            opacity: 0.8;
            z-index: -1;
        }
        
        .footer-content {
            max-width: var(--container-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .footer-logo {
            width: 130px;
            margin-bottom: 1rem;
            filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.35));
        }
        
        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .footer-section p {
            color: rgba(255, 255, 255, 0.85);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #ffffff;
        }

        .footer-meta {
            margin-top: 3rem;
            margin-left: 4rem;
            margin-right: 4rem;
            padding: 2rem 3rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
            align-items: center;
        }

        body[data-page="home"] .footer-meta,
        body[data-page="formations"] .footer-meta,
        body[data-page="contact"] .footer-meta,
        body[data-page="apropos"] .footer-meta,
        body[data-page="ressources"] .footer-meta,
        body[data-page="services"] .footer-meta,
        body[data-page="solutions"] .footer-meta {
            margin-left: 4rem;
            margin-right: 4rem;
        }

        body[data-page="ressources"] #ressources {
            margin-bottom: -10rem;
            padding-bottom: 14rem;
        }

        body[data-page="ressources"] .footer {
            margin-top: -8rem;
        }

        .footer-meta-text p {
            margin: 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        .footer-presence-legend {
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .presence-title {
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-presence-line {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(3, minmax(100px, 1fr));
            gap: 0.6rem 1.5rem;
            align-items: center;
        }

        .footer-presence-line li {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
        }

        .flag {
            width: 28px;
            height: 18px;
            border-radius: 4px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.2);
            background-size: cover;
            background-position: center;
        }

        .flag-uk {
            background-image:
                linear-gradient(135deg, transparent 45%, #fff 45%, #fff 55%, transparent 55%),
                linear-gradient(-135deg, transparent 45%, #fff 45%, #fff 55%, transparent 55%),
                linear-gradient(90deg, #c8102e 40%, #c8102e 60%),
                linear-gradient(#c8102e 40%, #c8102e 60%),
                linear-gradient(#012169, #012169);
        }

        .flag-cm {
            background-image: linear-gradient(90deg, #007a5e 33%, #ce1126 33%, #ce1126 66%, #fcd116 66%);
        }

        .flag-ci {
            background-image: linear-gradient(90deg, #f77f00 33%, #fff 33%, #fff 66%, #009e60 66%);
        }

        .flag-sn {
            background-image:
                linear-gradient(90deg, #00853f 33%, #fdef42 33%, #fdef42 66%, #e31b23 66%);
        }

        .flag-tg {
            background-image:
                linear-gradient(#006a4e 25%, #ffdd00 25%, #ffdd00 50%, #006a4e 50%, #006a4e 75%, #ffdd00 75%),
                linear-gradient(90deg, #006a4e 25%, transparent 25%);
        }

        .flag-af {
            background-image: linear-gradient(135deg, #0a9396 0%, #94d2bd 50%, #e9d8a6 100%);
        }

        .footer-presence {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-presence-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, minmax(140px, 1fr));
            gap: 0.8rem;
        }

        .footer-presence-list li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
        }

        .footer-presence-list .flag {
            font-size: 1.2rem;
        }

        .copyright.with-presence {
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-presence-inline .footer-presence-list {
            grid-template-columns: repeat(6, minmax(40px, 1fr));
            justify-items: center;
        }

        .footer-presence-list.flags-only li {
            justify-content: center;
            font-size: 1.6rem;
        }
        
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(241, 245, 239, 0.6);
            font-size: 0.9rem;
        }
        
        /* Styles for new contact form */
        .contact-grid-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 4rem;
            align-items: stretch;
        }

        .contact-form {
            background: var(--glass-bg);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid var(--glass-border);
            height: 100%;
        }
        
        .contact-form h3 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-light);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            background: rgba(12, 26, 26, 0.7);
            border: 1px solid var(--glass-border);
            border-radius: 10px;
            color: var(--text-light);
            font-family: var(--font-primary);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--turquoise);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-group select {
            appearance: none;
            background-image:
                linear-gradient(45deg, transparent 50%, rgba(241, 245, 239, 0.8) 50%),
                linear-gradient(135deg, rgba(241, 245, 239, 0.8) 50%, transparent 50%),
                linear-gradient(to right, rgba(12, 26, 26, 0.7), rgba(12, 26, 26, 0.7));
            background-position:
                calc(100% - 20px) 50%,
                calc(100% - 14px) 50%,
                calc(100% - 2.5rem) 50%;
            background-size: 6px 6px, 6px 6px, 1px 52%;
            background-repeat: no-repeat;
            padding-right: 3rem;
            cursor: pointer;
        }

        .form-group select option {
            color: var(--text-dark);
            background: #ffffff;
        }
        
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            height: 900px; /* augmentÃ© */
            min-height: 1000px; /* augmentÃ© */
            border: 1px solid var(--glass-border);
            display: flex;
            flex-direction: column;
        }

        .map-container .target-content {
            flex: 1;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        .contact-map-selector {
            margin: 1.5rem 1.5rem 1.8rem;
        }

        #contact .reservation-cta {
            justify-content: center;
            flex-wrap: wrap;
            align-items: stretch;
            opacity: 1;
            transform: none;
        }

        #contact .reservation-cta .btn {
            flex: 1 1 260px;
            max-width: 420px;
            white-space: normal;
            text-align: center;
            padding: 0.9rem 1.4rem;
            font-size: 0.95rem;
            line-height: 1.2;
        }

        #contact .reservation-cta .btn-secondary {
            background: rgba(255, 255, 255, 0.9);
            color: var(--text-dark);
            border-color: rgba(12, 26, 26, 0.2);
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
        }

        #contact .reservation-cta .btn-secondary:hover {
            background: rgba(255, 255, 255, 1);
            border-color: rgba(12, 26, 26, 0.4);
            transform: translateY(-3px);
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }

            .hero-formations {
                align-items: center;
                padding-top: 5rem;
            }

            .hero-formations-cta {
                flex-direction: column;
            }

            .solutions-layout {
                flex-direction: column;
                padding-right: 0;
            }

            .cards-column {
                max-width: 100%;
                flex: 1;
            }

            .solutions-layout .cards-container {
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            }

            .solutions-illustration {
                position: relative;
                top: auto;
                right: auto;
                transform: none;
                width: 100%;
                max-width: 420px;
                margin: 2rem auto 0;
            }

            .solutions-illustration-floating {
                position: absolute;
                top: -80px;
                left: 50%;
                transform: translateX(-50%);
                width: 65%;
            }

            .solutions-cta {
                padding: 2rem;
                margin-top: 3rem;
            }

            .formation-card {
                padding: 2rem;
            }

            .formation-card h3 {
                font-size: 1.4rem;
            }

            .formation-grid {
                grid-template-columns: 1fr;
            }

            .formation-reporting-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .formation-reporting-media img {
                width: min(360px, 85%);
            }

            .formation-reporting-text ul {
                text-align: left;
            }
            
            .navbar {
                padding: 1rem 1.5rem;
            }
            
            .nav-links {
                gap: 1.5rem;
            }
            
            .contact-grid-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 1024px) {
            .solutions-layout .cards-container {
                grid-template-columns: 1fr;
            }

            .solutions-illustration {
                max-width: 420px;
                width: 100%;
                align-self: flex-end;
                margin: 2rem 0 0 auto;
                display: block;
                margin-bottom: -200px;
            }

            .solutions-cta {
                padding: 1.75rem;
            }

            .solutions-illustration-floating {
                display: none;
            }

            .footer-meta {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
                margin-left: 2rem;
                margin-right: 2rem;
                padding: 1.5rem 0 0;
            }

            .footer-presence-line {
                grid-template-columns: repeat(2, minmax(120px, 1fr));
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: rgba(5, 28, 16, 0.95);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 2rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.5s ease;
                border-radius: 0 0 20px 20px;
                border: 1px solid var(--glass-border);
                border-top: none;
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .language-switcher {
                margin-left: 0;
                justify-content: center;
                margin-top: 1rem;
            }
            
            .stats-container {
                gap: 2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }

            .about-intro {
                padding: 3rem 1.75rem;
            }

            .about-intro h2 {
                font-size: 2.2rem;
            }

            .about-lede {
                font-size: 1.05rem;
            }
            
            .brush-section {
                padding: 4.5rem 1.5rem 6rem;
                margin-bottom: 8rem;
            }
            
            .brush-section::before {
                top: -90px;
                height: 110px;
            }
            
            .brush-section__tail {
                bottom: -200px;
                height: 240px;
            }
            
            .brush-section h2 {
                font-size: 2.3rem;
            }
            
            .brush-description {
                font-size: 1.05rem;
            }
            
            .brush-cta {
                flex-direction: column;
            }
            
            .brush-cta .btn {
                width: 100%;
                max-width: none;
            }

            .solution-title {
                font-size: clamp(2rem, 7vw, 2.4rem);
                line-height: 1.2;
            }

            .solution-title::after {
                height: 8px;
            }

            .audience-grid {
                grid-template-columns: 1fr;
            }

            .audience-card {
                padding: 1.8rem;
            }

            .audience-title {
                font-size: 2.4rem;
            }

            .callout-content {
                width: 100%;
                min-height: auto;
                padding: 2rem 1.5rem;
            }

            .callout-content p {
                font-size: 1.1rem;
            }

            .callout-content .btn {
                width: 100%;
                max-width: 320px;
            }

            .audience-card {
                padding: 1.5rem;
            }

            .audience-card-body {
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
            }

            .audience-card-body img {
                width: 100%;
                height: 200px;
                order: -1;
            }

            .audience-section {
                padding-bottom: 10rem;
                margin-bottom: -3rem;
            }
        }
        
        @media (max-width: 480px) {
            :root {
                --section-padding: 4rem 1.5rem;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .card {
                padding: 2rem 1.5rem;
            }
            
            .about-intro {
                padding: 2.5rem 1.25rem;
            }

            .about-intro h2 {
                font-size: 1.8rem;
            }

            .about-cta {
                flex-direction: column;
            }

            .brush-section h2 {
                font-size: 2rem;
            }
            
            .brush-section::before {
                top: -70px;
                height: 90px;
            }
            
            .brush-section__tail {
                bottom: -180px;
                height: 220px;
            }

            .solution-title {
                font-size: 1.8rem;
                letter-spacing: -0.01em;
            }

            .solution-title::after {
                width: 70%;
            }

            .audience-title {
                font-size: 2rem;
            }

            .callout-content {
                padding: 1.75rem 1.2rem;
            }

            .callout-content p {
                font-size: 1rem;
            }

            .audience-floating {
                display: none;
            }

            .audience-card-body img {
                height: 170px;
            }

            .audience-section {
                padding-bottom: 8rem;
                margin-bottom: -2rem;
            }

            body[data-page="formations"] p,
            body[data-page="formations"] li {
                text-align: justify;
            }
        }
        
        /* Animations globales */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .letter-by-letter {
            display: inline-block;
            overflow: hidden;
        }

        body[data-page="formations"] .footer {
            padding-top: 20rem;
            margin-top: -6rem;
        }

        body[data-page="formations"] #formations {
            padding-bottom: 10rem;
        }
        
        .letter {
            display: inline-block;
            opacity: 0;
            transform: translateY(1em);
        }
        
        /* Loader */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-spinner {
            width: 80px;
            height: 80px;
            border: 4px solid rgba(45, 212, 191, 0.2);
            border-top-color: var(--turquoise);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes floatY {
            0% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0); }
        }

        @keyframes audienceShine {
            0% {
                transform: translateX(-120%);
                opacity: 0;
            }
            30% {
                opacity: 0.7;
            }
            60% {
                opacity: 0.7;
            }
            100% {
                transform: translateX(120%);
                opacity: 0;
            }
        }
        
        /* Highlight lumineux */
        .highlight {
            position: relative;
            display: inline-block;
        }
        
        .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: linear-gradient(to right, transparent, rgba(13, 220, 13, 0.984), transparent);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .highlight.visible::after {
            opacity: 1;
        }
        
        /* Pages spÇ¸cifiques */
        .resource-grid,
        .insight-grid,
        .about-grid,
        .values-grid {
            display: grid;
            gap: 2rem;
        }
        
        .resource-grid-wrap {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(200px, 0.35fr);
            gap: 2rem;
            margin-top: 3rem;
            align-items: stretch;
            position: relative;
        }

        .resource-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(280px, 1fr));
            gap: 2rem;
        }

        .resource-grid-image {
            position: absolute;
            right: 0;
            bottom: 0;
            width: min(360px, 32%);
            height: min(360px, 42%);
            object-fit: cover;
            border-radius: 24px;
            box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
            mix-blend-mode: multiply;
            opacity: 0.85;
            z-index: 3;
            pointer-events: none;
        }


        #ressources {
            position: relative;
            overflow: hidden;
        }

        #ressources .section-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            background: #f9faf7;
        }

        #ressources .section-bg::before,
        #ressources .section-bg::after {
            content: '';
            position: absolute;
            width: clamp(220px, 26vw, 380px);
            height: clamp(220px, 26vw, 380px);
            border-radius: 50%;
            filter: blur(12px);
            opacity: 0.9;
            pointer-events: none;
            animation: resourceBubbleFloat 18s ease-in-out infinite;
        }

        #ressources .section-bg::before {
            left: -6%;
            top: 12%;
            background: radial-gradient(circle at 30% 30%, rgba(50, 212, 45, 0.55), rgba(255, 255, 255, 0.12));
        }

        #ressources .section-bg::after {
            right: -4%;
            bottom: 8%;
            background: radial-gradient(circle at 35% 35%, rgba(0, 102, 204, 0.55), rgba(255, 255, 255, 0.1));
            animation-delay: -6s;
        }

        #ressources .section-content::before,
        #ressources .section-content::after {
            content: '';
            position: absolute;
            width: clamp(180px, 22vw, 320px);
            height: clamp(180px, 22vw, 320px);
            border-radius: 50%;
            filter: blur(10px);
            opacity: 0.85;
            pointer-events: none;
            z-index: 0;
            animation: resourceBubbleDrift 16s ease-in-out infinite;
        }

        #ressources .section-content::before {
            left: 15%;
            bottom: 4%;
            background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.5), rgba(50, 212, 45, 0.12));
        }

        #ressources .section-content::after {
            right: 18%;
            top: 6%;
            background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.45), rgba(0, 102, 204, 0.12));
            animation-delay: -8s;
        }

        #ressources .section-content {
            position: relative;
            z-index: 1;
            color: #0f172a;
        }

        #ressources .resource-subtitle {
            color: #0f172a;
        }

        .resource-video-section {
            margin-top: 4rem;
            position: relative;
            z-index: 1;
        }

        .resource-video-header {
            text-align: center;
            max-width: 820px;
            margin: 0 auto 2.5rem;
        }

        .video-channel-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1.2rem;
            flex-wrap: wrap;
        }

        .video-channel-links a {
            color: var(--energy-blue);
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid rgba(0, 102, 204, 0.35);
            padding-bottom: 0.2rem;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .video-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 1.5rem;
            border: 1px solid rgba(4, 176, 81, 0.35);
            box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            position: relative;
            z-index: 999;
        }

        .video-frame {
            position: relative;
            padding-top: 56.25%;
            border-radius: 16px;
            overflow: hidden;
            background: #0f172a;
            z-index: 3;
        }

        .video-frame iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
            z-index: 4;
        }

        .video-card h3 {
            font-size: 1.05rem;
            color: #0f172a;
        }

        .video-meta {
            color: rgba(15, 23, 42, 0.65);
            font-size: 0.95rem;
        }

        .video-card .micro-cta {
            margin-top: auto;
            color: #0f172a;
            background: rgba(4, 176, 81, 0.08);
            border: 1px solid rgba(4, 176, 81, 0.35);
            padding: 0.6rem 1rem;
            border-radius: 999px;
            width: fit-content;
            transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
        }

        .video-card .micro-cta:hover {
            background: #04b051;
            color: #ffffff;
            transform: translateX(6px);
            box-shadow: 0 12px 26px rgba(4, 176, 81, 0.3);
        }

        #ressources .ressources-floating-image {
            position: absolute;
            right: clamp(-10rem, 20vw, 18rem);
            top: clamp(34rem, 10vw, 8rem);
            width: clamp(300px, 34vw, 520px);
            height: auto;
            z-index: 1;
            opacity: 0.75;
            pointer-events: none;
            mix-blend-mode: multiply;
        }

        @media (max-width: 768px) {
            #ressources .ressources-floating-image {
                position: static;
                display: block;
                margin: 1.5rem auto 0;
                width: min(320px, 80%);
                mix-blend-mode: normal;
                opacity: 1;
            }
        }

        #ressources h2 {
            text-align: center;
            font-size: clamp(2.6rem, 4.2vw, 3.6rem);
            font-family: var(--font-secondary);
            letter-spacing: -0.02em;
            background: linear-gradient(120deg, #0a3d2f, #2dd4bf, #0066cc);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
        }

        #ressources h2::after {
            content: '';
            display: block;
            width: min(220px, 45%);
            height: 6px;
            margin: 0.6rem auto 0;
            border-radius: 999px;
            background: linear-gradient(120deg, rgba(45, 212, 191, 0.6), rgba(0, 102, 204, 0.6));
            box-shadow: 0 12px 24px rgba(0, 102, 204, 0.25);
        }

        .resources-gallery {
            position: relative;
            background: #f8fbf9;
            color: var(--text-dark);
            overflow: hidden;
            --gallery-group-duration: 8s;
            --gallery-direction: -1;
        }

        .resources-gallery .section-bg {
            background: radial-gradient(circle at 20% 10%, rgba(45, 212, 191, 0.25), transparent 55%),
                        radial-gradient(circle at 80% 0%, rgba(0, 102, 204, 0.18), transparent 60%),
                        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 250, 248, 1));
        }

        .resources-gallery .section-content {
            position: relative;
            z-index: 1;
        }

        .gallery-intro {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 3rem;
        }

        .gallery-title {
            font-size: clamp(2.4rem, 4vw, 3.2rem);
            font-family: var(--font-secondary);
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            color: #0b1f33;
        }

        .gallery-subtitle {
            color: rgba(15, 23, 42, 0.7);
            font-size: 1.1rem;
        }

        .gallery-marquee {
            position: relative;
            overflow: hidden;
            padding-bottom: 0.5rem;
            z-index: 3;
        }

        .gallery-controls {
            position: absolute;
            top: 50%;
            left: 1rem;
            right: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transform: translateY(-50%);
            z-index: 4;
            pointer-events: none;
        }

        .gallery-nav {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1px solid rgba(15, 23, 42, 0.2);
            background: rgba(255, 255, 255, 0.85);
            color: #0f172a;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
            cursor: pointer;
            pointer-events: auto;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .gallery-nav:hover {
            transform: scale(1.05);
            background: rgba(45, 212, 191, 0.2);
        }

        .gallery-track {
            display: flex;
            gap: 2rem;
            width: 400%;
            animation: gallerySwap calc(var(--gallery-group-duration) * 4) linear infinite;
        }

        @media (max-width: 768px) {
            .resources-gallery {
                padding-bottom: 2rem;
            }

            .gallery-marquee {
                padding-bottom: 0;
            }

            .gallery-track {
                width: 100%;
                gap: 1.25rem;
                animation: none;
                align-items: flex-start;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .gallery-track::-webkit-scrollbar {
                display: none;
            }

            .gallery-group {
                display: contents;
            }

            .gallery-item {
                flex: 0 0 88vw;
                align-self: flex-start;
                scroll-snap-align: center;
                margin-bottom: 0;
            }

            .gallery-controls {
                display: flex;
            }
        }

        .gallery-marquee:hover .gallery-track {
            animation-play-state: paused;
        }

        .gallery-group {
            column-count: 4;
            column-gap: 1.5rem;
            flex: 0 0 25%;
            width: 100%;
        }

        .gallery-item {
            break-inside: avoid;
            margin-bottom: 1.5rem;
            border-radius: 18px;
            overflow: hidden;
            background: #ffffff;
            border: 1px solid rgba(15, 23, 42, 0.08);
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .gallery-item img {
            width: 100%;
            display: block;
        }

        .gallery-item video {
            width: 100%;
            display: block;
        }

        .gallery-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 48px rgba(15, 23, 42, 0.18);
        }

        .gallery-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.9rem 1rem 1.1rem;
        }

        .gallery-meta h3 {
            font-size: 0.98rem;
            color: #0f172a;
            font-weight: 600;
            margin: 0;
        }

        .gallery-more {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: none;
            background: rgba(15, 23, 42, 0.08);
            color: #0f172a;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .gallery-more:hover {
            background: rgba(45, 212, 191, 0.2);
            transform: scale(1.05);
        }

        .media-modal {
            position: fixed;
            inset: 0;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            background: rgba(8, 15, 24, 0.75);
            z-index: 9999;
        }

        .media-modal.is-open {
            display: flex;
        }

        .media-modal-dialog {
            position: relative;
            width: min(92vw, 980px);
            max-height: 90vh;
            padding: 2.5rem 1.25rem 1.5rem;
            background: #ffffff;
            border-radius: 18px;
            box-shadow: 0 30px 80px rgba(2, 6, 23, 0.35);
            overflow: hidden;
        }

        .media-modal-body {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .media-modal-body img,
        .media-modal-body video {
            max-width: 100%;
            max-height: 70vh;
            display: block;
            border-radius: 12px;
            background: #0f172a;
        }

        .media-modal-close {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 1px solid rgba(15, 23, 42, 0.18);
            background: #ffffff;
            color: #0f172a;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .media-modal-close:hover {
            transform: scale(1.05);
            background: rgba(45, 212, 191, 0.2);
        }

        body.is-modal-open {
            overflow: hidden;
        }

        @media (max-width: 640px) {
            .media-modal-dialog {
                padding: 2.25rem 1rem 1.25rem;
            }

            .media-modal-body img,
            .media-modal-body video {
                max-height: 60vh;
            }
        }

        @keyframes gallerySwap {
            0%,
            24.999% {
                transform: translateX(0);
            }
            25%,
            49.999% {
                transform: translateX(-25%);
            }
            50%,
            74.999% {
                transform: translateX(-50%);
            }
            75%,
            99.999% {
                transform: translateX(-75%);
            }
            100% {
                transform: translateX(0);
            }
        }
        
        .resource-card,
        .insight-panel,
        .about-panel,
        .value-card {
            background: linear-gradient(135deg, rgb(6, 88, 61), rgba(32, 123, 22, 0.982));
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 2rem;
            color: #f8fafc;
        }

        .resource-card h3,
        .resource-card p,
        .resource-card .resource-meta,
        .resource-card .resource-badge {
            color: inherit;
        }
        
        .resource-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            background: rgba(45, 212, 191, 0.15);
            color: var(--turquoise);
            margin-bottom: 1rem;
        }
        
        .resource-meta {
            font-size: 0.85rem;
            color: rgba(241, 245, 239, 0.7);
            margin-top: 1rem;
        }

        @media (max-width: 1200px) {
            .resource-grid-wrap {
                grid-template-columns: 1fr;
            }

            .resource-grid {
                grid-template-columns: repeat(2, minmax(240px, 1fr));
            }

        }

        @media (max-width: 1024px) {
            .video-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .resource-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 720px) {
            .video-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .resource-grid-image {
                display: none;
            }
        }

        @media (max-width: 1200px) {
            .gallery-group {
                column-count: 3;
            }
        }

        @media (max-width: 900px) {
            .gallery-group {
                column-count: 2;
            }
        }

        @media (max-width: 640px) {
            .gallery-meta {
                padding: 0.45rem 0.6rem 0.6rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .gallery-track {
                animation: none;
            }
        }

        @keyframes resourceBubbleFloat {
            0% { transform: translate(0, 0); }
            50% { transform: translate(20px, -18px); }
            100% { transform: translate(0, 0); }
        }

        @keyframes resourceBubbleDrift {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-18px, 14px) scale(1.05); }
            100% { transform: translate(0, 0) scale(1); }
        }

        @keyframes serviceBubbleFloat {
            0% { transform: translate(0, 0); }
            50% { transform: translate(18px, -20px); }
            100% { transform: translate(0, 0); }
        }
        
        .insight-grid {
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            margin-top: 3rem;
        }
        
        .insight-list {
            list-style: none;
            margin-top: 1.5rem;
        }
        
        .insight-list li {
            display: flex;
            align-items: stretch;
            gap: 0.8rem;
            margin-bottom: 1rem;
        }
        
        .insight-list i {
            color: var(--turquoise);
            margin-top: 0.3rem;
        }
        
        .about-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            margin-top: 3rem;
        }
        
        .about-panel h3 {
            margin-bottom: 1rem;
        }
        
        .timeline {
            margin-top: 3rem;
            border-left: 2px solid rgba(255, 255, 255, 0.2);
            padding-left: 2rem;
        }
        
        .timeline-item {
            margin-bottom: 2rem;
            position: relative;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.2rem;
            top: 0.5rem;
            width: 12px;
            height: 12px;
            background: linear-gradient(135deg, var(--turquoise), var(--energy-blue));
            border-radius: 50%;
        }
        
        .timeline-year {
            font-weight: 700;
            color: var(--turquoise);
            margin-bottom: 0.4rem;
        }
        
        .values-grid {
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            margin-top: 3rem;
        }
        
        .value-card h4 {
            margin-bottom: 0.8rem;
        }

        .about-card-image {
            width: 100%;
            height: clamp(160px, 28vw, 200px);
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 1.2rem;
            box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
            transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
        }

        .value-card:hover .about-card-image {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
            filter: saturate(1.15);
        }
        .footer > * {
            position: relative;
            z-index: 1;
        }
            .footer-meta {
                margin-left: -1rem;
                margin-right: 1rem;
                padding: 1.2rem 0 0;
            }

        @media (max-width: 1024px) {
            .footer {
                padding: 10rem 1.5rem 2rem;
                margin-top: -4rem;
                border-top-left-radius: 520px 100px;
                border-top-right-radius: 520px 100px;
            }

            .footer-content {
                grid-template-columns: repeat(2, minmax(200px, 1fr));
                gap: 2rem;
            }

            .footer-meta {
                margin-left: 2rem;
                margin-right: 2rem;
                padding: 1.5rem 0 0;
            }

            .footer-presence-line {
                grid-template-columns: repeat(2, minmax(120px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 8rem 1.25rem 2rem;
                margin-top: -2rem;
                border-top-left-radius: 320px 80px;
                border-top-right-radius: 320px 80px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-logo {
                width: 110px;
            }

            .footer-section h3 {
                margin-bottom: 1rem;
            }

            .footer-meta {
                margin-left: -0.75rem;
                margin-right: 0;
                padding: 1.25rem 0 0;
                align-items: flex-start;
                text-align: left;
            }

            .footer-meta-text p {
                font-size: 0.9rem;
            }

            .footer-presence-line {
                grid-template-columns: 1fr;
                justify-items: start;
            }

            .footer-presence-line li {
                justify-content: flex-start;
            }
        }

