/* ===== CSS RESPONSIVE OPTIMISÉ POUR A-WORKS ===== */
        /* Fichier CSS totalement responsive avec media queries complètes */
        /* Optimisé pour desktop, tablette, mobile et très petits écrans */
        
        /* ===== VARIABLES CSS ===== */
        :root {
            /* Charte Nexa */
            --nexa-blue: #00438B;
            --nexa-yellow: #FFB700;
            --bg-glacier: #F0F7FF;
            --surface-white: #FFFFFF;
            --text-main: #001F3F;

            /* Variables sémantiques */
            --primary: var(--nexa-blue);
            --secondary: var(--nexa-yellow);
            --background: var(--bg-glacier);
            --surface: var(--surface-white);
            --text-primary: var(--text-main);
            
            /* Variables conservées et adaptées */
            --primary-light: #1a5ba3;
            --secondary-light: #ffcc33;
            --text-secondary: #3b4a5c;
            --text-muted: #6b7280;
            --border: #e4e4e7;
            --border-light: #f4f4f5;
            --success: #10b981;
            --error: #ef4444;
            --gradient-primary: linear-gradient(135deg, var(--nexa-yellow) 0%, var(--secondary-light) 100%);
            --gradient-secondary: linear-gradient(135deg, var(--nexa-blue) 0%, var(--primary-light) 60%, #2d6bb8 100%);
            --gradient-surface: radial-gradient(circle at 10% 20%, rgba(255, 183, 0, 0.15), transparent 55%), var(--bg-glacier);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --radius-sm: 0.375rem;
            --radius-md: 0.5rem;
            --radius-lg: 0.75rem;
            --radius-xl: 1rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--background);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            /* Empêche tout débordement horizontal */
            width: 100%;
            max-width: 100vw;
        }

        section {
            padding: 80px 0;
        }

        /* Correction simple pour visibilité */
        .section-badge {
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        .section-title {
            visibility: visible !important;
            opacity: 1 !important;
        }
        
        .section-subtitle {
            visibility: visible !important;
            opacity: 1 !important;
        }

        /* ===== COOKIE BANNER NEXA DESIGN ===== */
        .cookie-banner {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: rgba(0, 31, 63, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 12px;
            z-index: 10000;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 8px 32px rgba(0, 31, 63, 0.15);
            max-width: 400px;
        }

        .cookie-banner.show {
            transform: translateY(0);
        }

        .cookie-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            gap: 16px;
        }

        .cookie-content {
            flex: 1;
            min-width: 0;
        }

        .cookie-text h4 {
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 600;
            margin: 0 0 4px 0;
            letter-spacing: 0.3px;
        }

        .cookie-text p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            line-height: 1.4;
        }

        .cookie-buttons {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 0.4rem 0.8rem;
            border: none;
            border-radius: var(--radius-sm);
            font-size: 0.75rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            white-space: nowrap;
            flex: 1;
            justify-content: center;
            min-height: 32px;
        }

        .cookie-btn-primary {
            background: var(--nexa-yellow);
            color: var(--nexa-blue);
        }

        .cookie-btn-primary:hover {
            background: var(--secondary-light);
            transform: translateY(-1px);
            box-shadow: 0 2px 8px rgba(255, 183, 0, 0.3);
        }

        .cookie-btn-secondary {
            background: transparent;
            color: var(--nexa-blue);
            border: 1px solid var(--nexa-blue);
        }

        .cookie-btn-secondary:hover {
            background: var(--nexa-blue);
            color: white;
        }

        .cookie-btn-outline {
            background: transparent;
            color: var(--text-muted);
            border: 1px solid var(--border);
        }

        .cookie-btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.8);
            color: #ffffff;
        }

        /* Responsive Mobile */
        @media (max-width: 768px) {
            .cookie-banner {
                bottom: 20px;
                left: 20px;
                right: 20px;
                max-width: none;
                width: calc(100% - 40px);
            }
            
            .cookie-container {
                flex-direction: column;
                align-items: stretch;
                padding: 16px;
                gap: 12px;
            }
            
            .cookie-buttons {
                justify-content: center;
                gap: 8px;
            }
            
            .cookie-btn {
                flex: 1;
                padding: 12px 16px;
                font-size: 0.85rem;
            }
        }

        /* ===== COOKIE MODAL COMPACT ===== */
        .cookie-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 31, 63, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 1rem;
        }

        .cookie-modal.show {
            opacity: 1;
            visibility: visible;
        }

        .cookie-modal-content {
            background: white;
            border-radius: var(--radius-lg);
            max-width: 400px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            box-shadow: 0 20px 40px rgba(0, 67, 139, 0.2);
            border: 1px solid var(--border);
        }

        .cookie-modal.show .cookie-modal-content {
            transform: scale(1);
        }

        .cookie-modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem;
            border-bottom: 1px solid var(--border);
            background: var(--bg-glacier);
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        }

        .cookie-modal-header h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--nexa-blue);
            margin: 0;
        }

        .cookie-modal-close {
            background: none;
            border: none;
            font-size: 1.1rem;
            color: var(--text-muted);
            cursor: pointer;
            padding: 0.4rem;
            border-radius: var(--radius-sm);
            transition: all 0.2s ease;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cookie-modal-close:hover {
            background: var(--nexa-blue);
            color: white;
        }

        .cookie-modal-body {
            padding: 1.25rem;
        }

        .cookie-category {
            margin-bottom: 1.25rem;
        }

        .cookie-category:last-child {
            margin-bottom: 0;
        }

        .cookie-category-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

        .cookie-category-info h4 {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--nexa-blue);
            margin: 0 0 0.2rem 0;
        }

        .cookie-category-info p {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.3;
        }

        .cookie-toggle {
            position: relative;
            width: 44px;
            height: 24px;
        }

        .cookie-toggle input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .cookie-toggle label {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--border);
            border-radius: 24px;
            transition: all 0.3s ease;
        }

        .cookie-toggle label:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 4px;
            background: white;
            border-radius: 50%;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .cookie-toggle input:checked + label {
            background: var(--nexa-yellow);
        }

        .cookie-toggle input:checked + label:before {
            transform: translateX(20px);
        }

        .cookie-toggle input:disabled + label {
            background: var(--success);
            cursor: not-allowed;
        }

        .cookie-modal-footer {
            padding: 1.25rem;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: center;
            background: var(--bg-glacier);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        }

        /* ===== RESPONSIVE COOKIES COMPACT ===== */
        @media (max-width: 768px) {
            .cookie-banner {
                left: 10px;
                right: 10px;
                bottom: 10px;
                max-width: none;
                border-radius: var(--radius-md);
            }

            .cookie-container {
                padding: 1rem;
            }

            .cookie-content {
                gap: 0.6rem;
                margin-bottom: 0.8rem;
            }

            .cookie-text h4 {
                font-size: 0.9rem;
                color: var(--nexa-blue);
                font-weight: 600;
            }

            .cookie-text p {
                font-size: 0.75rem;
                color: #333333;
                line-height: 1.3;
            }

            .cookie-buttons {
                gap: 0.4rem;
            }

            .cookie-btn {
                font-size: 0.7rem;
                padding: 0.35rem 0.6rem;
                min-height: 30px;
                font-weight: 500;
            }

            .cookie-icon {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .cookie-banner {
                left: 8px;
                right: 8px;
                bottom: 8px;
                border-radius: var(--radius-sm);
            }

            .cookie-container {
                padding: 0.875rem;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
                gap: 0.5rem;
                margin-bottom: 0.75rem;
            }

            .cookie-text h4 {
                font-size: 0.85rem;
                color: var(--nexa-blue);
                margin-bottom: 0.2rem;
            }

            .cookie-text p {
                font-size: 0.7rem;
                color: #333333;
                line-height: 1.2;
            }

            .cookie-buttons {
                flex-direction: column;
                gap: 0.35rem;
                width: 100%;
            }

            .cookie-btn {
                min-height: 32px;
                font-size: 0.65rem;
                padding: 0.4rem 0.8rem;
            }

            .cookie-icon {
                width: 24px;
                height: 24px;
                font-size: 10px;
            }

            .cookie-modal-content {
                margin: 0.5rem;
                max-width: calc(100vw - 1rem);
            }
        }

        /* ===== CONTAINER RESPONSIVE ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            width: 100%;
            /* Évite le débordement horizontal */
            box-sizing: border-box;
            /* Force la largeur à ne jamais dépasser la viewport */
            max-width: calc(100vw - 3rem);
        }

        
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.80);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow-lg);
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 4.5rem;
            width: 100%;
            gap: 1.5rem;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: translateY(-2px);
        }

        .logo-desktop {
            height: 45px;
            width: auto;
            display: block;
        }

        .logo-mobile {
            height: 32px;
            width: 32px;
            display: none;
        }

        .logo-caption {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .logo-caption span {
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #fff;
            font-size: 0.95rem;
        }

        .logo-caption small {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.65);
            letter-spacing: 0.3em;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: #00438B;
            font-weight: 500;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #FFB700;
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #FFB700;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .nav-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-decoration: none;
            border-radius: 999px;
            padding: 0.65rem 1.25rem;
            transition: all 0.3s ease;
        }

        .nav-phone {
            border: 1px solid rgba(0, 67, 139, 0.25);
            color: #00438B;
        }

        .nav-phone i {
            color: #FFB700;
        }

        .nav-phone:hover {
            border-color: #FFB700;
            color: #FFB700;
        }

        .nav-phone:hover i {
            color: #FFC529;
        }

        .nav-pill--outline {
            border: 1px solid rgba(0, 67, 139, 0.3);
            color: #00438B;
        }

        .nav-pill--outline:hover {
            border-color: #FFB700;
            color: #FFB700;
        }

        .nav-pill--solid {
            background: linear-gradient(120deg, var(--secondary-light), var(--secondary));
            color: #1f1608;
            box-shadow: 0 12px 28px rgba(245, 199, 109, 0.35);
        }

        .nav-pill--solid:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* ===== NOUVEAU MENU MOBILE ===== */
        /* Bouton menu burger */
        .menu-toggle {
            display: none; /* Caché par défaut */
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
            position: relative;
        }

        .menu-icon {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 24px;
            position: relative;
        }

        .menu-line {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--nexa-blue);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Overlay du menu */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(5px);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--nexa-yellow);
            transition: width 0.3s ease;
        }

        .mobile-nav-link:hover::after {
            width: 100%;
        }

        /* Style spécial pour le bouton CTA */
        .mobile-cta {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-nav-cta {
            display: inline-block;
            background: var(--nexa-yellow);
            color: #1a365d !important;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none !important;
            box-shadow: 0 4px 15px rgba(255, 183, 0, 0.3);
        }

        .mobile-nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 183, 0, 0.4);
            background: #ffcc33;
        }

        /* Animation du menu burger */
        .menu-toggle.active .menu-line:nth-child(1) {
            transform: translateY(10.5px) rotate(45deg);
        }

        .menu-toggle.active .menu-line:nth-child(2) {
            opacity: 0;
        }
        }

        /* Media Queries pour le menu mobile */
        @media (max-width: 992px) {
            .menu-toggle {
                display: flex;
            }
            
            /* Désactiver le défilement du corps lorsque le menu est ouvert */
            body.menu-open {
                overflow: hidden;
            }
        }

        /* Styles pour les très petits écrans */
        @media (max-width: 480px) {
            .mobile-nav-link {
                font-size: 1.25rem;
            }
            
            .mobile-nav-cta {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
        }

        /* ===== ANCIENS MENUS MOBILES SUPPRIMÉS ===== */
/* Styles désactivés pour éviter les conflits avec le système nexa- */

        /* ===== MENU HAMBURGER SUPPRIMÉ ===== */
/* Ancien système désactivé */

        @media (max-width: 1200px) {
            .nav-menu {
                gap: 1rem;
            }

            .nav-actions {
                gap: 0.5rem;
            }
        }

        @media (max-width: 992px) {
            .logo-desktop {
                display: none;
            }

            .logo-mobile {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 85px;
                right: 1.5rem;
                left: auto;
                background: rgba(10, 25, 47, 0.98);
                border: 1px solid var(--nexa-yellow);
                border-radius: 12px;
                padding: 1.25rem 1rem;
                flex-direction: column;
                align-items: stretch;
                gap: 0.75rem;
                min-width: 300px;
                max-width: 90vw;
                max-height: 80vh;
                overflow-y: auto;
                transform: translateY(10px);
                opacity: 0;
                pointer-events: none;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1001;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
                backdrop-filter: blur(10px);
            }
            
            .nav-item {
                width: 100%;
                margin: 0.15rem 0;
                transition: transform 0.2s ease;
            }
            
            .nav-item:hover {
                transform: translateX(5px);
            }
            
            .nav-link {
                color: #f0f4f8;
                display: block;
                width: 100%;
                padding: 0.8rem 1.2rem;
                border-radius: 8px;
                transition: all 0.25s ease;
                font-size: 1rem;
                font-weight: 500;
                letter-spacing: 0.3px;
            }
            
            .nav-link:hover {
                background: rgba(255, 255, 255, 0.08);
                color: var(--nexa-yellow);
                padding-left: 1.4rem;
            }
            
            .nav-pill {
                display: block !important;
                width: 100% !important;
                text-align: center !important;
                margin: 1.2rem 0 0 0 !important;
                padding: 1rem 1.5rem !important;
                background: var(--nexa-yellow) !important;
                color: #0a192f !important;
                font-weight: 700 !important;
                border-radius: 10px !important;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
                text-decoration: none !important;
                box-sizing: border-box !important;
                border: none !important;
                cursor: pointer !important;
                font-family: inherit !important;
                font-size: 1rem !important;
                line-height: 1.5 !important;
                box-shadow: 0 4px 20px rgba(245, 199, 109, 0.35) !important;
                opacity: 1 !important;
                pointer-events: auto !important;
                text-transform: uppercase;
                letter-spacing: 0.08em;
                position: relative;
                overflow: hidden;
                z-index: 1;
            }
            
            .nav-pill:hover, 
            .nav-pill:focus {
                background: #ffde7d !important;
                transform: translateY(-3px) !important;
                box-shadow: 0 6px 25px rgba(245, 199, 109, 0.5) !important;
                outline: none;
            }
            
            .nav-pill::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(255, 255, 255, 0.15);
                opacity: 0;
                transition: opacity 0.3s ease;
                z-index: -1;
            }
            
            .nav-pill:hover::before {
                opacity: 1;
            }

            .nav-menu.active {
                opacity: 1;
                transform: translateY(0);
            }
            
            .mobile-menu-btn {
                display: inline-flex;
            }
        }

        @media (max-width: 640px) {
            .logo-caption small {
                letter-spacing: 0.2em;
            }

            .nav-menu {
                right: 1rem;
                left: 1rem;
                width: auto;
                max-width: calc(100% - 2rem);
                top: 80px;
            }
            
            .nav-link, .nav-pill {
                font-size: 1rem;
                padding: 0.85rem 1rem;
            }
        }

        /* Hero Section */

            .author-info p {

/* ===== SECTION TÉMOIGNAGES ===== */
.testimonials-section {
    background: var(--bg-glacier);
    padding: 4rem 0;
    overflow-x: hidden;
}

.testimonials-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.testimonials-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.testimonial-item {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 400px;
    margin: 0 1rem;
    flex-shrink: 0;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    align-self: flex-start;
    background: rgba(0, 67, 139, 0.1);
    color: var(--primary);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding: 0 1rem;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 3rem;
    color: var(--secondary);
    line-height: 1;
    position: absolute;
    opacity: 0.3;
}

.testimonial-text::before {
    top: -1rem;
    left: -0.5rem;
}

.testimonial-text::after {
    bottom: -1.5rem;
    right: 0;
    line-height: 0;
}

.testimonial-rating {
    display: inline-flex;
    position: relative;
    margin: 1rem 0;
    font-size: 0; 
}

.testimonial-rating::before {
    content: '★★★★★';
    font-family: 'Font Awesome 6 Free';
    font-size: 1rem;
    letter-spacing: 0.25rem;
    background: linear-gradient(90deg, var(--secondary) 100%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
    position: relative;
    display: inline-block;
}

.testimonial-rating-stars {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.testimonial-rating-stars::before {
    content: '★★★★★';
    font-family: 'Font Awesome 6 Free';
    font-size: 1rem;
    letter-spacing: 0.25rem;
    background: linear-gradient(90deg, var(--secondary) 100%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
    position: relative;
    display: inline-block;
}

.testimonial-item:hover .testimonial-rating-stars::before {
    animation: starPulse 1.5s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    border: 3px solid var(--surface);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border: 2px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.nav-arrow i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.nav-arrow:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 67, 139, 0.2);
}

.nav-arrow:hover::before {
    opacity: 1;
}

.nav-arrow:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.nav-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--border-light);
    transform: none !important;
    box-shadow: none !important;
}

.nav-arrow:disabled::before {
    display: none;
}

.nav-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, background 0.3s ease;
}

.nav-dot:hover {
    transform: scale(1.3);
}

.nav-dot.active {
    background: var(--primary);
    transform: scale(1.4);
}

.nav-dot.active::after {
    background: rgba(0, 67, 139, 0.1);
    transform: translate(-50%, -50%) scale(1);
}

.nav-dot:hover::after {
    transform: translate(-50%, -50%) scale(1);
    background: rgba(0, 0, 0, 0.05);
}

/* Barre de confiance */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.trust-stat {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 100%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; /* Fallback pour les navigateurs qui ne supportent pas -webkit-text-fill-color */
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .trust-bar {
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .trust-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .testimonial-item {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .testimonial-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.7rem;
    }
    
    .trust-bar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .trust-stat {
        padding: 0.5rem 0;
    }
    
    .author-avatar {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 480px) {
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonial-nav {
        gap: 1rem;
    }
    
    .nav-arrow {
        width: 36px;
        height: 36px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
    }
    
    .testimonial-badge {
        margin-bottom: 1rem;
    }
}

.hero-text {
    opacity: 0;
    transform: translateY(2rem);
    animation: fadeInUp 1s ease 0.3s forwards;
}
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            padding: 0.6rem 1.25rem;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-growth {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 1rem;
            border-radius: 999px;
            background: rgba(245, 199, 109, 0.25);
            color: #fdfcf7;
            font-weight: 600;
            animation: pulseMetric 3s ease-in-out infinite;
        }

        .hero-growth strong {
            font-size: 1rem;
            color: #0c101d;
            background: var(--secondary);
            padding: 0.1rem 0.65rem;
            border-radius: 999px;
            animation: floatScore 2s ease-in-out infinite;
        }

        @keyframes pulseMetric {
            0%, 100% { box-shadow: 0 0 0 rgba(245, 199, 109, 0); transform: translateY(0); }
            50% { box-shadow: 0 0 18px rgba(245, 199, 109, 0.4); transform: translateY(-2px); }
        }

        @keyframes floatScore {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-3px); }
        }

        .badge-chip {
            padding: 0.25rem 0.9rem;
            border-radius: 999px;
            background: var(--gradient-primary);
            color: #1a1a1a;
            font-weight: 600;
        }

        .hero-title {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            font-weight: 700;
            line-height: 1.05;
            margin-bottom: 0.85rem;
            letter-spacing: -0.02em;
            color: #fff;
        }

        .hero-subtitle {
            font-size: 0.98rem;
            color: rgba(255, 255, 255, 0.82);
            margin-bottom: 1.2rem;
            line-height: 1.55;
        }

        .hero-credibility {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
            margin-bottom: 1.6rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.78);
        }

        .hero-credibility span {
            padding: 0.45rem 0.9rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            opacity: 0;
            transform: translateY(0.6rem);
            animation: heroCredibilityReveal 0.65s cubic-bezier(0.19, 1, 0.22, 1) forwards;
            position: relative;
            overflow: hidden;
        }

        .hero-credibility span strong {
            color: var(--secondary);
            font-weight: 700;
            margin-right: 0.25rem;
        }

        .hero-credibility span:nth-child(2) { animation-delay: 0.08s; }
        .hero-credibility span:nth-child(3) { animation-delay: 0.16s; }

        .hero-credibility span::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 70%);
            transform: translateX(-120%);
            transition: transform 0.6s ease;
        }

        .hero-credibility span:hover::after {
            transform: translateX(0%);
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(to right, #FFD700, #FFB700);
            color: #1E252D;
            padding: 1rem 2rem;
            border: none;
            border-radius: var(--radius-lg);
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-lg);
        }

        .hero-cta.primary { background: var(--gradient-primary); }

        .hero-cta.ghost {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            box-shadow: none;
        }

        .hero-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .hero-visual {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-self: center;
            opacity: 0;
            transform: translateX(2rem);
            animation: fadeInRight 1s ease 0.6s forwards;
            width: min(360px, 95%);
            margin-left: auto;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(15px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 30px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .hero-visual::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -20%;
            right: -20%;
            bottom: -20%;
            background: radial-gradient(circle at center, rgba(0, 67, 139, 0.06), transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        .founder-highlight {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 1rem;
            align-items: center;
            padding: 1rem 1.25rem;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), #032B44);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
        }

        .founder-photo {
            width: 90px;
            height: 90px;
            border-radius: 22px;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .founder-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .founder-details {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .founder-name {
            font-weight: 600;
            font-size: 1rem;
        }

        .founder-role {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.75);
        }

        .founder-signal {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .founder-signal span {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        .founder-spotlight {
            position: relative;
            overflow: hidden;
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), #03055B);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
        }

        .founder-spotlight img {
            width: 100%;
            height: clamp(200px, 32vw, 250px);
            object-fit: cover;
            display: block;
            filter: saturate(1.05);
        }

        .spotlight-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.75rem;
            background: linear-gradient(180deg, rgba(0, 67, 139, 0) 0%, rgba(0, 67, 139, 0.9) 90%);
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .spotlight-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 0.35rem;
        }

        .spotlight-name {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
        }

        .spotlight-role {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.75);
        }

        .hero-metric-grid {
            display: grid;
            gap: 15px;
            grid-template-columns: 1fr;
        }

        .hero-metric-grid .metric-card {
            width: 100%;
            margin-top: 0;
            padding: 20px;
            border-radius: 15px;
            border-left: 4px solid #FFB700;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
        }

        .hero-metric-grid .metric-card.primary {
            background: rgba(245, 199, 109, 0.1);
        }

        .hero-metric-grid .metric-card.secondary {
            background: rgba(0, 67, 139, 0.3);
        }

        .metric-label {
            text-transform: uppercase;
            font-size: 0.78rem;
            letter-spacing: 0.15em;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 0.45rem;
        }

        @media (min-width: 992px) {
            .hero-content {
                grid-template-columns: 1.1fr 0.9fr;
                gap: 3.5rem;
                align-items: center;
            }

            .hero-visual {
                align-self: stretch;
            }
        }

        @media (max-width: 640px) {
            .hero-content {
                text-align: center;
            }

            .founder-highlight {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .founder-photo {
                margin: 0 auto;
            }

            .founder-signal {
                justify-content: center;
            }
        }

        .screen-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .screen-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 0.35rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }

        .mini-graph {
            text-align: center;
        }

        .graph-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.5rem;
        }

        .graph-bars {
            display: flex;
            gap: 0.4rem;
            justify-content: center;
            margin-bottom: 0.5rem;
            align-items: flex-end;
        }

        .graph-bars span {
            width: 0.4rem;
            border-radius: 999px;
            background: var(--gradient-primary);
            display: inline-block;
            transform-origin: bottom;
            transform: scaleY(0.15);
            opacity: 0.35;
            transition: transform 0.6s cubic-bezier(0.21, 0.61, 0.35, 1), opacity 0.6s ease;
        }

        .graph-bars span:nth-child(1) { height: 1.1rem; transition-delay: 0s; }
        .graph-bars span:nth-child(2) { height: 1.6rem; transition-delay: 0.05s; }
        .graph-bars span:nth-child(3) { height: 2.2rem; transition-delay: 0.1s; }
        .graph-bars span:nth-child(4) { height: 2.8rem; transition-delay: 0.15s; }

        .mini-graph.is-visible .graph-bars span {
            transform: scaleY(1);
            opacity: 1;
        }

        .graph-value {
            font-weight: 700;
            font-size: 1.1rem;
            opacity: 0.5;
            transform: translateY(0.4rem);
            transition: color 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
        }

        .mini-graph.is-visible .graph-value {
            color: var(--secondary);
            opacity: 1;
            transform: translateY(0);
        }

        .metric-card {
            margin-top: 1.5rem;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            width: fit-content;
            color: #fff;
        }

        .metric-card strong {
            font-size: 1.5rem;
        }

        /* Section Styles */
        .section {
            padding: clamp(3rem, 6vw, 6rem) 0;
            position: relative;
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
        }

        .section-dark {
            background: radial-gradient(circle at top, rgba(255, 183, 0, 0.14), transparent 45%), linear-gradient(180deg, rgba(0, 67, 139, 0.9) 0%, rgba(0, 43, 68, 1) 100%);
            color: #f3f4f6;
            border-top: 1px solid rgba(245, 199, 109, 0.15);
        }

        .section-gradient {
            background: linear-gradient(140deg, rgba(0, 67, 139, 0.9) 0%, rgba(0, 43, 68, 1) 55%, rgba(0, 43, 68, 1) 100%);
            color: #f9fafb;
        }

        .section-premium {
            background: linear-gradient(180deg, #121728 0%, #0b111c 100%);
            color: #f7f8fb;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3.5rem;
            opacity: 1 !important;
            transform: none !important;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(245, 199, 109, 0.12);
            color: var(--secondary-light);
            padding: 0.6rem 1.4rem;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            border: 1px solid rgba(245, 199, 109, 0.35);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.025em;
            color: var(--text-primary);
        }

        .section-dark .section-title,
        .section-gradient .section-title,
        .section-premium .section-title {
            color: #fdfdfd;
        }

        .section-dark .section-subtitle,
        .section-gradient .section-subtitle,
        .section-premium .section-subtitle {
            color: rgba(255, 255, 255, 0.75);
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--surface);
            padding: 2rem;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(0, 67, 139, 0.1);
            color: var(--text-primary);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
            min-height: 380px;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--nexa-blue), var(--nexa-yellow));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 67, 139, 0.15);
            border-color: rgba(0, 67, 139, 0.2);
        }

        .service-card.premium {
            background: linear-gradient(135deg, var(--nexa-blue) 0%, rgba(0, 67, 139, 0.95) 100%);
            border-color: var(--nexa-blue);
            color: var(--surface-white);
            transform: scale(1.05);
            min-height: 460px;
        }

        .service-card.premium::before {
            background: linear-gradient(90deg, var(--nexa-yellow), #FFD700);
        }

        .service-card.premium:hover {
            transform: scale(1.05) translateY(-8px);
            box-shadow: 0 25px 50px rgba(223, 167, 28, 0.884);
        }

        .service-card.premium .service-title,
        .service-card.premium .service-description,
        .service-card.premium .service-features li,
        .service-card.premium .service-link {
            color: var(--surface-white);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, #001F3F 0%, #001F3F 70%, var(--nexa-blue) 100%);
            color: var(--surface-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0, 31, 63, 0.25);
        }

        .service-badge {
            position: absolute;
            top: -8px;
            right: 10px;
            background: linear-gradient(135deg, var(--nexa-yellow), #e3d89b);
            color: var(--text-main);
            padding: 0.35rem 0.7rem;
            margin-top: 3rem;
            border-radius: 999px;
            font-size: 0.6rem;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 0 2px 8px rgba(197, 162, 80, 0.2);
            z-index: 10;
            transform: rotate(1deg);
        }

        .service-card.premium .service-badge {
            background: linear-gradient(135deg, #0b227b, #05587b);
            color: white;
            box-shadow: 0 3px 12px rgba(49, 53, 111, 0.3);
            transform: rotate(1deg) scale(1.05);
        }

        .service-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
            font-style: normal;
        }

        .service-description {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            font-size: 1rem;
            font-style: normal;
        }

        .service-features {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-style: normal;
        }

        .service-features li::before {
            content: '✓';
            color: var(--secondary);
            font-weight: 600;
        }

        .service-link {
            color: var(--nexa-blue);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: auto;
            transition: transform 0.3s ease;
        }

        .service-link:hover {
            color: var(--nexa-yellow);
            transform: translateX(4px);
        }

        .services-section {
            background: var(--background);
        }

        .services-section .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.025em;
            color: var(--text-primary);
        }

        .services-section .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

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

        @media (max-width: 768px) {
            .process-timeline {
                flex-direction: column;
                gap: 1.5rem;
            }

            .process-timeline::before {
                display: none;
            }

            .process-step {
                max-width: 300px;
                margin: 0 auto;
            }
        }

        /* Portfolio Section - Même style que témoignages */
        .portfolio-section {
            background: var(--bg-glacier);
            padding: 4rem 0;
            overflow-x: hidden;
            position: relative;
        }

        .portfolio-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 20%, rgba(0, 67, 139, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 80%, rgba(255, 183, 0, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .portfolio-section .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.025em;
            color: var(--text-primary);
        }

        .portfolio-section .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .portfolio-section p {
            color: var(--text-primary);
        }

        .portfolio-section .filter-btn {
            border: 1px solid rgba(0, 67, 139, 0.3);
            background: transparent;
            color: var(--text-primary);
            padding: 0.45rem 1.4rem;
            border-radius: 999px;
            font-weight: 600;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .portfolio-section .filter-btn.active,
        .portfolio-section .filter-btn:hover {
            background: var(--gradient-primary);
            color: #1b1b1b;
            border-color: transparent;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
            width: 100%;
            max-width: 100%;
        }

        /* Carte de portfolio - Style adapté avec couleur */
        .portfolio-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 255, 0.9) 100%);
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid rgba(0, 67, 139, 0.1);
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            backdrop-filter: blur(10px);
            opacity: 1;
            transform: scale(1);
        }

        .portfolio-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(0, 67, 139, 0.2);
        }

        /* Conteneur d'image */
        .portfolio-image {
            position: relative;
            height: 0;
            padding-bottom: 70%; /* Ratio d'aspect 10:7 */
            overflow: hidden;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0; /* Coins supérieurs uniquement */
        }

        /* Image du portfolio */
        .portfolio-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain; /* Changé de 'cover' à 'contain' pour voir l'image entière */
            object-position: center;
            transition: transform 0.5s ease;
            will-change: transform;
            background-color: #f8f9fa; /* Fond de secours */
            padding: 10px; /* Espace autour de l'image */
        }

        .portfolio-card:hover .portfolio-image img {
            transform: scale(1.05);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: linear-gradient(180deg, rgba(0, 67, 139, 0) 0%, rgba(0, 67, 139, 0.85) 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .portfolio-card:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-content {
            padding: 1.75rem;
        }

        .portfolio-title {
            font-size: 1.15rem; /* Taille nom auteur */
            font-weight: 700; /* Poids nom auteur */
            margin-bottom: 0.25rem; /* Marge nom auteur */
            color: var(--text-primary);
        }

        .portfolio-category {
            font-size: 0.9rem; /* Taille fonction auteur */
            color: var(--text-muted); /* Couleur fonction auteur */
            margin: 0;
            font-weight: 500;
            letter-spacing: 0.025em;
        }

        .portfolio-kpi {
            font-size: 1.1rem; /* Taille avis témoignage */
            font-weight: 700; /* Gras */
            color: var(--nexa-blue); /* Couleur bleue Nexa */
            margin-bottom: 1rem;
            display: block;
        }

        .portfolio-description {
            font-size: 0.95rem;
            color: var(--text-secondary);
            margin-bottom: 15px;
        }

        .portfolio-tech .tech-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 0.8rem;
            padding: 3px 8px;
            border-radius: 6px;
            margin-right: 5px;
            margin-bottom: 5px;
        }

        .portfolio-link {
            color: var(--nexa-blue);
            font-weight: 600;
            text-decoration: none;
            letter-spacing: 0.05em;
            display: inline-flex;
            align-items: center;
            gap: 3px;
            padding: 3px 6px;
            border: 2px solid var(--nexa-blue);
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
            font-size: 0.8rem;
        }

        .portfolio-link:hover {
            color: var(--surface-white);
            background: var(--nexa-blue);
            transform: translateY(-2px);
        }

        .portfolio-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            margin-top: 0.75rem;
        }

        .portfolio-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
            margin-bottom: 2.5rem;
        }

        .filter-btn {
            border: 1px solid rgba(245, 199, 109, 0.4);
            background: transparent;
            color: rgba(255, 255, 255, 0.75);
            padding: 0.45rem 1.4rem;
            border-radius: 999px;
            font-weight: 600;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .filter-btn.active,
        .filter-btn:hover {
            background: var(--gradient-primary);
            color: #1b1b1b;
            border-color: transparent;
        }

        /* Values Section */
        .values {
            background: var(--gradient-primary);
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        /* Process Section - Compact Horizontal */
        .process-section {
            background: var(--bg-glacier);
            padding: 3rem 0;
            overflow-x: hidden;
            position: relative;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 15%, rgba(0, 67, 139, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 70% 85%, rgba(255, 183, 0, 0.04) 0%, transparent 40%);
            pointer-events: none;
        }

        .process-section .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.025em;
            color: var(--text-primary);
        }

        .process-section .section-subtitle {
            font-size: 1.125rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 3rem;
            line-height: 1.7;
        }

        .process-timeline {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--nexa-blue), var(--nexa-yellow));
            transform: translateY(-50%);
            z-index: 1;
        }

        .process-step {
            text-align: center;
            opacity: 1 !important;
            transform: none !important;
            position: relative;
            z-index: 2;
            flex: 1;
            background: var(--surface);
            padding: 1.5rem;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(0, 67, 139, 0.1);
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .process-number {
            width: 3rem;
            height: 3rem;
            background: linear-gradient(135deg, var(--nexa-blue) 0%, var(--nexa-blue) 70%, var(--nexa-yellow) 100%);
            color: var(--surface-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0 auto 1rem;
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 12px rgba(0, 67, 139, 0.15);
        }

        .process-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .process-description {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.9rem;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: var(--bg-glacier);
            padding: 4rem 0;
            overflow-x: hidden; /* Empêche le débordement horizontal */
        }

        .marquee {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 2rem 0;
        }

        .marquee-content {
            display: flex;
            width: fit-content;
            animation: scroll 80s linear infinite;
        }

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

        @keyframes scroll {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }

        .testimonial-item {
            flex-shrink: 0;
            width: 400px;
            max-width: 90vw;
            background: var(--surface);
            padding: 2rem;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            margin: 0 1rem;
            transition: all 0.3s ease;
        }

        .testimonial-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-text {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            color: var(--text-secondary);
            font-style: italic;
            flex-grow: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid var(--border-light);
        }

        .testimonial-rating {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
            color: var(--secondary);
            font-size: 1rem;
        }

        .testimonial-rating i {
            color: var(--secondary);
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info h4 {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.25rem;
        }

        .author-info p {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

/* Badges de témoignages */

/* Barre de confiance */
.trust-bar {
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 3rem 0 0;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), #1e90ff);
}

.trust-stat {
    text-align: center;
    padding: 0 1rem;
    position: relative;
    flex: 1;
}

.trust-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.trust-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary), #1e90ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.trust-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Responsive pour la barre de confiance */
@media (max-width: 768px) {
    .trust-bar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .trust-stat {
        padding: 0.5rem 0;
    }

    .trust-stat:not(:last-child)::after {
        display: none;
    }

    .trust-stat:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1.5rem;
    }
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1 1 280px;
    min-width: 260px;
    display: flex;
    gap: 1rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(10, 12, 18, 0.55));
    padding: 1.4rem 1.75rem;
    border-radius: 24px;
    border: 1px solid rgba(245, 199, 109, 0.18);
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.contact-item:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.35);
    border-color: rgba(245, 199, 109, 0.45);
}

.contact-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(245, 199, 109, 0.25), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-item:hover::after {
    opacity: 1;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 12px 25px rgba(245, 199, 109, 0.3);
}

.contact-item-body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}

.contact-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
}

.contact-headline {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--surface-white);
}

.contact-action {
    margin-top: 0.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--secondary-light);
    font-weight: 600;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 0.2rem;
    overflow: hidden;
}

        .contact-action::after {
            content: '';
            position: absolute;
            left: -110%;
            bottom: 0;
            width: 140%;
            height: 2px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(245, 199, 109, 1), rgba(255, 255, 255, 0));
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            transform: translateX(0);
        }

        .contact-action::before {
            content: '';
            position: absolute;
            inset: -60% 0 auto;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 55%);
            transform: translateX(-120%) skewX(-20deg);
            transition: transform 0.6s ease;
        }

        .contact-action span {
            display: inline-flex;
            transition: transform 0.3s ease;
        }

        .contact-action:hover::before {
            transform: translateX(120%) skewX(-20deg);
        }

        .contact-action:hover::after {
            transform: translateX(110%);
        }

        .contact-action:hover span {
            transform: translateX(4px) rotate(-12deg);
        }

        .contact-action:hover {
            color: var(--surface-white);
            text-shadow: 0 0 12px rgba(245, 199, 109, 0.45);
        }

        .contact-action:focus-visible {
            outline: 2px solid rgba(245, 199, 109, 0.6);
            outline-offset: 4px;
        }

        @keyframes contactLinkPulse {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        #contact-primary-cta {
            position: relative;
            box-shadow: 0 25px 40px rgba(245, 199, 109, 0.35);
            background: var(--gradient-primary);
            color: var(--text-main);
            opacity: 0;
            transform-origin: center;
        }

        @keyframes ctaDropIn {
            0% {
                opacity: 0;
                transform: translateY(-80px) scale(0.85);
                filter: blur(12px);
            }
            70% {
                opacity: 1;
                transform: translateY(8px) scale(1.02);
                filter: blur(0px);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Footer */
        .footer {
            background: var(--primary);
            color: var(--surface-white);
            padding: 3rem 0 2rem;
        }

        .footer-content {
            text-align: center;
            margin-bottom: 2rem;
        }

        .footer-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .footer-subtitle {
            color: var(--surface-white);
            opacity: 0.7;
            margin-bottom: 1.5rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-link {
            color: var(--surface-white);
            opacity: 0.7;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease, opacity 0.3s ease;
        }

        .footer-link:hover {
            color: var(--surface-white);
            opacity: 1;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            text-align: center;
            color: var(--surface-white);
            opacity: 0.5;
            font-size: 0.875rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(2rem);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes heroCredibilityReveal {
            from {
                opacity: 0;
                transform: translateY(0.6rem);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-in {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        .animate-in-left {
            opacity: 1 !important;
            transform: translateX(0) !important;
        }

        .animate-in-right {
            opacity: 1 !important;
            transform: translateX(0) !important;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .container {
                padding: 0 2rem;
            }
            
            .hero-content,
            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .hero-visual {
                order: -1;
                max-width: 500px;
                margin: 0 auto;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
                max-width: calc(100vw - 2rem);
            }
            
            /* Logo responsive - Afficher version mobile sur petits écrans */
            .logo-desktop {
                display: none;
            }

            .logo-mobile {
                display: block;
                width: 40px;
                height: auto;
            }
            
            /* Header mobile avec fond pour visibilité */
            .navbar {
                background: rgba(0, 67, 139, 0.85);
                backdrop-filter: blur(10px);
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .navbar.scrolled {
                background: rgba(0, 67, 139, 0.95);
                box-shadow: var(--shadow-lg);
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            }
            
            /* Navigation responsive - Menu hamburger */
            /* Le menu devient vertical et se cache par défaut */
            .nav-menu {
                position: fixed;
                top: 4rem;
                left: 0;
                width: 100%;
                max-width: 100vw;
                height: calc(100vh - 4rem);
                background: rgba(15, 23, 42, 0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                backdrop-filter: blur(20px);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                z-index: 999;
                overflow-y: auto;
                overflow-x: hidden;
                box-sizing: border-box;
            }
            
            .nav-menu.active {
                transform: translateX(0);
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .nav-menu li {
                width: 100%;
                text-align: center;
            }
            
            .nav-menu .nav-link,
            .nav-menu .nav-cta {
                display: block;
                width: 100%;
                padding: 1.25rem 1rem;
                font-size: 1.125rem;
                font-weight: 600;
                color: #ffffff;
                min-height: 48px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .nav-cta {
                width: auto;
                padding: 1rem 1.5rem;
                font-size: 1rem;
                font-weight: 600;
                min-height: 48px;
                border-radius: 12px;
                margin: 0.5rem 0;
            }
            .my-logo-icon {
                font-size: 18px;
            }
            .logo-text {
                font-size: 18px;
            }
            
            /* Hero section responsive */
            /* Réduction de la hauteur et adaptation du contenu */
            .hero {
                min-height: 80vh;
                padding: 2rem 0;
            }
            
            .hero-content {
                padding: 4rem 0;
            }
            
            .hero-title {
                font-size: 2.5rem;
                line-height: 1.2;
                font-weight: 700;
            }
            
            .hero-subtitle {
                font-size: 1.25rem;
                line-height: 1.5;
                color: #1e293b;
                font-weight: 400;
            }
            
            .hero-visual {
                display: block;
                margin-top: 2rem;
            }
            
            /* Sections responsive */
            /* Toutes les grids passent en 1 colonne sur mobile */
            .section {
                padding: 4rem 0;
            }
            
            .section-title {
                font-size: 2rem;
                font-weight: 700;
                color: #0f172a;
                line-height: 1.3;
            }
            
            .section-badge {
                font-size: 1rem;
                padding: 0.6rem 1rem;
                margin-bottom: 2rem;
            }

            .services-grid,
            .values-grid,
            .process-timeline,
            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .contact-info {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            /* Cookie banner responsive */
            /* ===== BANNIÈRE COOKIES RESPONSIVE ===== */
            .cookie-container {
                padding: 1.25rem 1.5rem;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
                margin-bottom: 1.25rem;
            }

            .cookie-icon {
                align-self: center;
                width: 36px;
                height: 36px;
            }

            .cookie-title {
                font-size: 1.0625rem;
            }

            .cookie-description {
                font-size: 0.875rem;
                line-height: 1.5;
            }
            
            .cookie-actions {
                justify-content: center;
                gap: 0.625rem;
                flex-wrap: wrap;
            }

            .btn-cookie {
                min-width: 110px;
                padding: 0.6875rem 1.25rem;
                font-size: 0.8125rem;
                min-height: 42px;
            }

            .cookie-modal-content {
                margin: 1rem;
                max-width: calc(100vw - 2rem);
                max-height: calc(100vh - 2rem);
            }

            .cookie-category {
                padding: 0.875rem;
                margin-bottom: 1rem;
            }
        }

        /* Media Queries pour le portfolio */
        @media (max-width: 992px) {
            .portfolio-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 767px) {
            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .portfolio-image {
                padding-bottom: 75%; /* Légèrement plus grand sur mobile pour une meilleure visibilité */
            }
            
            .portfolio-card {
                margin-bottom: 1.5rem;
            }
            
            /* Typography Adjustments */
            h1, .hero-title {
                font-size: 1.5rem !important; /* Réduction à 1.5rem pour mobile */
                line-height: 1.2;
                margin-bottom: 0.5rem;
            }
            
            h2, .section-title {
                font-size: 1.5rem !important; /* ~20% reduction */
                line-height: 1.25;
                margin-bottom: 0.5rem;
            }
            
            h3 {
                font-size: 1.25rem !important; /* ~15% reduction */
                line-height: 1.3;
                margin-bottom: 0.5rem;
            }
            
            p, .hero-subtitle, .section-description, .service-description, .testimonial-text {
                font-size: 0.85em !important; /* 85% of desktop */
                line-height: 1.5;
                margin-bottom: 1rem;
            }
            
            /* Button Adjustments */
            .btn, .hero-cta, .nav-cta, .contact-submit {
                width: 90% !important;
                max-width: 100%;
                padding: 0.6rem 1.2rem !important;
                margin: 0.5rem auto;
                display: inline-flex;
                justify-content: center;
                align-items: center;
                transition: all 0.2s ease;
            }
            
            .btn:hover, .hero-cta:hover, .nav-cta:hover {
                transform: translateY(-1px);
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            }
            
            /* Hero Section */
            .hero {
                padding-top: 5rem; /* Augmenté de 3rem à 5rem */
            }
            
            .hero-content {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem 0 !important;
            }
            
            .hero-text {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
                padding: 0 1rem;
                margin-bottom: 1rem;
            }
            
            .hero-cta {
                width: 90%;
                max-width: 100%;
                padding: 1rem 2rem !important;
                margin: 0 auto;
            }
            
            .hero-badge {
                justify-content: center;
                margin-bottom: 0.5rem;
            }
            
            .hero-subtitle {
                max-width: 90%;
                margin: 0.5rem auto 1rem;
            }
            
            .hero-visual {
                width: 90%;
                max-width: 400px;
                margin: 1rem auto 0;
                order: 2;
            }
            
            /* Section Spacing */
            .section {
                padding: 2rem 0 !important;
            }
            
            .section-header {
                margin-bottom: 1.25rem !important;
            }
            
            .section + .section {
                padding-top: 1.5rem !important;
            }
        }

        @media (max-width: 360px) {
            .container {
                padding: 0 0.5rem;
                max-width: calc(100vw - 1rem);
            }

            /* ===== BANNIÈRE COOKIES MOBILE TRÈS PETIT ===== */
            .cookie-container {
                padding: 1rem 1rem;
            }

            .cookie-content {
                gap: 0.875rem;
                margin-bottom: 1rem;
            }

            .cookie-icon {
                width: 32px;
                height: 32px;
            }

            .cookie-title {
                font-size: 1rem;
            }

            .cookie-description {
                font-size: 0.8125rem;
                line-height: 1.4;
            }

            .cookie-actions {
                gap: 0.5rem;
            }

            .btn-cookie {
                min-width: 100px;
                padding: 0.625rem 1rem;
                font-size: 0.75rem;
                min-height: 40px;
            }
            
            .nav-container {
                padding: 0 1rem;
            }
            
            .logo-text {
                font-size: 18px;
            }
            
            .my-logo-icon {
                font-size: 20px;
            }

            .hero-title {
                font-size: 2.2rem;
                font-weight: 700;
            }

            .hero-subtitle {
                font-size: 1.125rem;
                line-height: 1.5;
                color: #1e293b;
            }
            
            .section-title {
                font-size: 1.75rem;
                font-weight: 700;
                color: #0f172a;
            }

            .section {
                padding: 3rem 0;
            }
            
            .section-badge {
                font-size: 0.9rem;
                padding: 0.5rem 0.8rem;
            }

            .testimonial-item {
                padding: 1.5rem;
            }
            
            .hero-cta {
                padding: 1rem 2rem;
                font-size: 1rem;
                font-weight: 600;
                min-height: 48px;
                border-radius: 12px;
            }
            
            .service-card,
            .portfolio-card {
                padding: 1.5rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }
        }
        
        @media (max-width: 360px) {
            .container {
                padding: 0 0.5rem;
                max-width: calc(100vw - 1rem);
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .hero-title {
                font-size: 1.6rem;
            }
            
            .section-title {
                font-size: 1.3rem;
            }
            
            .nav-menu {
                padding: 1.5rem;
            }
        }

        /* Utility Classes */
        .text-gradient {
            background: var(--gradient-secondary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

    
        /* ===== MENTIONS LÉGALES PAGE STYLES ===== */
        
        /* Main content for legal pages */
        .main {
            padding: 6rem 0 4rem;
            background: var(--background);
            /* Empêche le débordement horizontal */
            width: 100%;
            max-width: 100vw;
            overflow-x: hidden;
        }

        .legal-content {
            max-width: 800px;
            margin: 0 auto;
            background: var(--surface-elevated);
            border-radius: var(--radius-xl);
            padding: 3rem;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border);
            /* Responsive adjustments */
            width: 100%;
            box-sizing: border-box;
        }

        /* Page title and subtitle */
        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
            text-align: center;
            letter-spacing: -0.025em;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-subtitle {
            font-size: 1.125rem;
            color: var(--text-secondary);
            text-align: center;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        /* Legal sections */
        .legal-section {
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--border-light);
        }

        .legal-section:last-of-type {
            border-bottom: none;
            margin-bottom: 2rem;
        }

        .legal-section .section-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-left: 1rem;
        }

        .legal-section .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gradient-secondary);
            border-radius: var(--radius-sm);
        }

        .subsection-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--text-primary);
            margin: 2rem 0 1rem;
        }

        .section-content {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .section-content p {
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .section-content p:last-child {
            margin-bottom: 0;
        }

        .section-content strong {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Links in content */
        .section-content a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .section-content a:hover {
            color: var(--primary-light);
        }

        .section-content a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

        .section-content a:hover::after {
            width: 100%;
        }

        /* Lists in content */
        .section-content ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .section-content li {
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .section-content li::marker {
            color: var(--secondary);
        }

        /* Last updated section */
        .last-updated {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-light);
        }

        .last-updated p {
            color: var(--text-muted);
            font-size: 0.875rem;
            font-style: italic;
        }

        /* Cookie banner styles */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--surface-elevated);
            border-top: 1px solid var(--border);
            box-shadow: var(--shadow-xl);
            z-index: 1000;
            transform: translateY(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            visibility: hidden;
        }

        .cookie-banner.show {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .cookie-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }

        .cookie-content p {
            color: var(--text-secondary);
            font-size: 0.875rem;
            line-height: 1.5;
            margin: 0;
            flex: 1;
        }

        .cookie-buttons {
            display: flex;
            gap: 1rem;
            flex-shrink: 0;
        }

        .btn-accept, .btn-decline {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: var(--radius-md);
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-accept {
            background: var(--gradient-secondary);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-accept:hover {
            transform: translateY(-1px);
            box-shadow: var(--shadow-lg);
        }

        .btn-decline {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border);
        }

        .btn-decline:hover {
            background: var(--surface);
            color: var(--text-primary);
        }

        /* ===== RESPONSIVE STYLES FOR LEGAL PAGES ===== */
        
        /* Tablettes et écrans moyens */
        @media (max-width: 1024px) {
            .legal-content {
                margin: 0 1rem;
                padding: 2.5rem;
            }
        }

        /* Styles pour tablettes (768px - 1366px) */
        @media (min-width: 1024px) {
            /* Hero Section */
            .hero {
                padding: 6rem 0 4rem;
                width: 100%;
                overflow: hidden; /* added to prevent overflow */
            }
            
            .hero-content {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                gap: 4rem;
                max-width: 1400px;
                margin: 0 auto;
                padding: 3rem 4rem !important;
                box-sizing: border-box;
                width: 100%;
            }
            
            .hero-text {
                width: 50%;
                text-align: left;
                padding: 2rem 0;
                margin: 0;
                max-width: 600px;
            }
            
            .hero-title {
                font-size: 3rem;
                line-height: 1.2;
                margin-bottom: 1.5rem;
                font-weight: 800;
                letter-spacing: -0.5px;
            }
            
            .hero-subtitle {
                font-size: 1.25rem;
                line-height: 1.6;
                margin-bottom: 2rem;
                line-height: 1.5;
                margin-bottom: 1.5rem;
                max-width: 100%;
            }
            
            .hero-cta {
                width: auto;
                max-width: 300px;
                padding: 1rem 2rem !important;
                margin: 0;
                font-size: 1.1rem;
                font-weight: 600;
                border-radius: 12px;
                transition: all 0.3s ease;
            }
            
            .hero-cta:hover {
                transform: translateY(-2px);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            }
            
            .hero-visual {
                width: 50%;
                display: flex;
                align-items: center;
                justify-content: flex-end;
                margin: 0;
                padding: 0;
                max-width: 650px;
            }
            
            .hero-visual img {
                max-width: 100%;
                height: auto;
                max-height: 400px;
                object-fit: contain;
            }
        }

        /* Mobile et tablettes */
        @media (max-width: 768px) {
            .main {
                padding: 5rem 0 3rem;
            }
            
            .legal-content {
                margin: 0 1rem;
                padding: 2rem 1.5rem;
                border-radius: var(--radius-lg);
            }
            
            .page-title {
                font-size: 2rem;
                line-height: 1.2;
                margin-bottom: 1.5rem;
            }
            
            .page-subtitle {
                font-size: 1rem;
                margin-bottom: 2.5rem;
            }
            
            .legal-section .section-title {
                font-size: 1.25rem;
                margin-bottom: 1rem;
            }
            
            .section-content {
                font-size: 0.95rem;
                line-height: 1.8;
            }
            
            .subsection-title {
                font-size: 1rem;
                margin: 1.5rem 0 0.75rem;
            }
            
            /* Cookies mobile */
            .cookie-content {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
                padding: 1.25rem;
            }
            
            .cookie-buttons {
                justify-content: center;
                width: 100%;
                gap: 0.75rem;
            }
            
            .btn-accept, .btn-decline {
                flex: 1;
                max-width: 150px;
                padding: 0.875rem 1rem;
            }
        }

        /* Petits mobiles */
        @media (max-width: 480px) {
            .main {
                padding: 4.5rem 0 2.5rem;
            }
            
            .legal-content {
                margin: 0 0.5rem;
                padding: 1.5rem 1rem;
                border-radius: var(--radius-md);
            }
            
            .page-title {
                font-size: 1.75rem;
                line-height: 1.3;
            }
            
            .page-subtitle {
                font-size: 0.9rem;
                margin-bottom: 2rem;
            }
            
            .legal-section .section-title {
                font-size: 1.125rem;
                padding-left: 0.75rem;
                margin-bottom: 1rem;
            }
            
            .legal-section .section-title::before {
                width: 2px;
            }
            
            .section-content {
                font-size: 0.9rem;
                line-height: 1.7;
            }
            
            .section-content p {
                margin-bottom: 1rem;
            }
            
            .subsection-title {
                font-size: 0.95rem;
                margin: 1.25rem 0 0.5rem;
            }
            
            .legal-section {
                margin-bottom: 2rem;
                padding-bottom: 1.5rem;
            }
            
            /* Cookies très petits écrans */
            .cookie-content {
                padding: 1rem;
                gap: 1rem;
            }
            
            .cookie-buttons {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .btn-accept, .btn-decline {
                max-width: none;
                width: 100%;
            }
        }

        /* Très petits écrans (320px et moins) */
        @media (max-width: 320px) {
            .legal-content {
                margin: 0 0.25rem;
                padding: 1rem 0.75rem;
            }
            
            .page-title {
                font-size: 1.5rem;
            }
            
            .legal-section .section-title {
                font-size: 1rem;
                padding-left: 0.5rem;
            }
            
            .section-content {
                font-size: 0.85rem;
            }
        }

        /* ===== NOUVELLE SECTION HERO ===== */
        .nexxa-hero {
            --nexxa-primary: #002855;
            --nexxa-primary-light: #00438B;
            --nexxa-secondary: #FFB700;
            --nexxa-dark: #001A33;
            --nexxa-light: #f8f9fa;
            
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--nexxa-dark) 0%, var(--nexxa-primary) 100%);
            color: #fff;
            overflow: hidden;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Container */
        .nexxa-container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Content Grid */
        .nexxa-hero-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
            max-width: 1280px;
        }

        /* Text Content */
        .nexxa-hero-text {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding:  2rem;
        }
        
        /* Hero Header */
        .nexxa-hero-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        @media (min-width: 768px) {
            .nexxa-hero-header {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
                gap: 2rem;
                margin-bottom: 3rem;
            }
            
            .nexxa-stats {
                margin: 0;
                padding: 0;
                border: none;
                gap: 2.5rem;
            }
            
            .nexxa-stat-item {
                margin: 0;
            }
            
            .nexxa-stat-number {
                font-size: 2rem;
                margin-bottom: 0.25rem;
            }
            
            .nexxa-stat-label {
                font-size: 0.85rem;
            }
        }

        /* Badge */
        .nexxa-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(90deg, rgba(0, 67, 139, 0.3), rgba(0, 40, 85, 0.5));
            color: #fff;
            padding: 0.2rem 1.25rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: -3rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .nexxa-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .nexxa-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            background: linear-gradient(90deg, rgba(0, 67, 139, 0.4), rgba(0, 40, 85, 0.6));
        }

        .nexxa-badge:hover::before {
            transform: translateX(100%);
        }

        .nexxa-badge-text {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            align-self: flex-start;
            margin-top: 1px;
        }

        .nexxa-badge-highlight {
            font-size: 0.75rem;
            font-weight: 800;
            color: var(--nexxa-secondary);
            align-self: flex-end;
            margin-bottom: 10px;
            animation: pulseHighlight 2s ease-in-out infinite;
        }

        /* Title */
        .nexxa-hero-title {
            font-size: clamp(3rem, 6.5vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin: 0 0 1.5rem;
            letter-spacing: -0.03em;
            max-width: 1000px;
        }

        .nexxa-gradient-text {
            background: linear-gradient(90deg, var(--nexxa-secondary), var(--nexxa-primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        /* Subtitle */
        .nexxa-hero-subtitle {
            font-size: 1.4rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.85);
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }

        /* Buttons */
        .nexxa-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .nexxa-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            gap: 0.5rem;
        }

        .nexxa-btn-primary {
            background: linear-gradient(90deg, #f3af29, #ffb115);
            color: #101010;
            box-shadow: 0 4px 20px rgba(245, 199, 109, 0.3);
            position: relative;
            overflow: hidden;
            border: none;
            transition: all 0.5s ease;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .nexxa-btn-primary:hover {
            background-position: right center;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(245, 199, 109, 0.4);
            color: #101010;
        }

        .nexxa-btn-ghost {
            background: transparent;
            color: var(--nexa-blue);
            border: 1px solid var(--nexa-blue);
            border: 2px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.5s ease;
            z-index: 1;
        }

        .nexxa-btn-ghost::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: all 0.5s ease;
            z-index: -1;
        }

        .nexxa-btn-ghost:hover {
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .nexxa-btn-ghost:hover::before {
            width: 100%;
        }

        /* Stats */
        .nexxa-stats {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nexxa-stat-item {
            text-align: center;
        }

        .nexxa-stat-number {
            display: block;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--nexxa-secondary);
            line-height: 1;
            margin-bottom: 0.25rem;
            animation: countUp 2s ease-out;
            transform-style: preserve-3d;
            backface-visibility: hidden;
            will-change: transform;
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.02em;
        }

        .nexxa-stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        /* Visual Section */
        .nexxa-hero-visual {
            position: relative;
            max-width: 300px;
            width: 100%;
            margin: 1rem auto 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nexxa-founder-card {
            background: rgba(0, 40, 85, 0.4);
            border-radius: 20px;
            padding: 1rem;
            margin: 0 auto;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .nexxa-founder-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .nexxa-founder-card:hover::before {
            transform: translateX(100%) rotate(45deg);
        }

        .nexxa-founder-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nexxa-founder-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--nexxa-secondary);
        }

        .nexxa-founder-name {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0 0 0.25rem;
            color: #fff;
        }

        .nexxa-founder-role {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        /* Metrics Grid */
        .nexxa-metrics-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .nexxa-metric-card {
            background: rgba(0, 40, 85, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 1.75rem 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nexxa-metric-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--nexxa-primary-light), var(--nexxa-secondary));
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .nexxa-metric-card:hover {
            transform: translateY(-8px);
            background: rgba(0, 40, 85, 0.5);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .nexxa-metric-card:hover::after {
            opacity: 1;
            height: 4px;
        }

        .nexxa-metric-primary {
            background: linear-gradient(135deg, rgba(0, 67, 139, 0.15), rgba(0, 67, 139, 0.25));
            border-color: rgba(0, 67, 139, 0.3);
        }

        .nexxa-metric-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.5rem;
            display: block;
        }

        .nexxa-metric-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 0.25rem;
        }

        .nexxa-metric-desc {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        /* Animations */
        @keyframes pulseHighlight {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
        }

        @keyframes countUp {
            0% {
                transform: translateY(20px) rotate(0deg);
                opacity: 0;
            }
            50% {
                transform: translateY(-5px) rotate(180deg);
                opacity: 0.7;
            }
            100% {
                transform: translateY(0) rotate(360deg);
                opacity: 1;
            }
        }

        /* Background Effects */
        .nexxa-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(0, 67, 139, 0.25) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(0, 86, 179, 0.2) 0%, transparent 30%),
                linear-gradient(135deg, rgba(0, 40, 85, 0.8) 0%, rgba(0, 20, 51, 0.9) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .nexxa-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(45deg, 
                    transparent 0%, 
                    rgba(255, 255, 255, 0.03) 50%, 
                    transparent 100%
                ),
                url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2H36zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            z-index: 2;
            pointer-events: none;
            opacity: 0.5;
        }

        /* Responsive Design */
        @media (min-width: 992px) {
            .nexxa-hero {
                min-height: 90vh;
                padding: 6rem 0;
            }
            
            .nexxa-hero-content {
                grid-template-columns: 1.1fr 1fr;
                align-items: center;
                gap: 4rem;
                text-align: left;
            }
            
            .nexxa-hero-text {
                text-align: left;
                align-items: flex-start;
            }
            
            .nexxa-hero-title {
                text-align: left;
                margin: 0 0 1.5rem;
            }
            
            .nexxa-hero-subtitle {
                text-align: left;
                margin: 0 0 2.5rem;
            }
            
            .nexxa-stats {
                justify-content: flex-start;
                margin-top: 2.5rem;
                padding-top: 2rem;
            }
            
            .nexxa-cta-group {
                justify-content: flex-start;
                margin-bottom: 3rem;
            }
            
            .nexxa-hero-visual {
                margin: 0;
                padding: 0 0 0 1rem;
                max-width: 100%;
            }
        }

        @media (max-width: 991px) {
            .nexxa-hero {
                padding: 5rem 0;
                min-height: auto;
                text-align: center;
            }
            
            .nexxa-hero-title {
                font-size: clamp(2rem, 8vw, 3rem);
                margin: 0 auto 1.5rem;
                max-width: 90%;
            }
            
            .nexxa-hero-subtitle {
                font-size: 1.1rem;
                margin: 0 auto 2.5rem;
                max-width: 90%;
            }
            
            .nexxa-stats {
                gap: 1.5rem;
                flex-wrap: wrap;
                justify-content: center;
                margin-top: 2.5rem;
            }
            
            .nexxa-stat-number {
                font-size: 2rem;
            }
            

            .nexxa-metric-primary {
                background: linear-gradient(135deg, rgba(0, 67, 139, 0.15), rgba(0, 67, 139, 0.25));
                border-color: rgba(0, 67, 139, 0.3);
            }

            .nexxa-metric-label {
                font-size: 0.8rem;
                color: rgba(255, 255, 255, 0.7);
                text-transform: uppercase;
                letter-spacing: 0.1em;
                margin-bottom: 0.5rem;
                display: block;
            }

            .nexxa-metric-value {
            }
            
            .nexxa-container {
                padding: 0 1.25rem;
            }
            
            .nexxa-hero-title {
                font-size: 2rem;
                margin-bottom: 1.25rem;
            }
            
            .nexxa-hero-subtitle {
                font-size: 0.95rem;
                margin-bottom: 2rem;
            }
            
            .nexxa-stats {
                gap: 1.25rem;
            }
            
            .nexxa-stat-item {
                flex: 1;
                min-width: 100px;
            }
            
            .nexxa-stat-number {
                font-size: 1.5rem;
            }
            
            .nexxa-stat-label {
                font-size: 0.8rem;
            }
        }

        /* --- Section Contact --- */
#contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #F0F7FF 0%, #E8F2FF 50%, #F5FBFF 100%);
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* En-tête de section */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-badge {
    background: #FFB700;
    color: #001F3F;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-title {
    color: #001F3F;
    font-size: 3rem;
    margin-top: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.contact-title span {
    color: #00438B;
}

.contact-desc {
    color: #586575;
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Grille de mise en page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: start;
}

/* Cartes (Info et Formulaire) */
.nexa-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
}

/* Carte Info (Gauche) */
.contact-info-card {
    box-shadow: 0 10px 30px rgba(0, 31, 63, 0.04);
    border: 1px solid rgba(0, 67, 139, 0.05);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #FFF4CC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00438B;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    color: #001F3F;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.info-link, .info-text {
    color: #00438B;
    text-decoration: none;
    font-weight: 600;
    margin: 0;
}

.info-text {
    color: #586575;
}

/* Carte Formulaire (Droite) */
.contact-form-card {
    box-shadow: 0 15px 40px rgba(0, 31, 63, 0.06);
    border: 1px solid rgba(0, 67, 139, 0.05);
}

.nexa-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Styles des Inputs, Select et Textarea */
.nexa-input, 
.nexa-select, 
.nexa-textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #E6EBF2;
    border-radius: 12px;
    background: #F8FBFF;
    outline: none;
    font-size: 1rem;
    color: #001F3F;
    transition: 0.3s;
    font-family: inherit;
}

.nexa-textarea {
    resize: vertical;
}

/* Select wrapper customisé */
.select-wrapper {
    position: relative;
}

.nexa-select {
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #00438B;
}

/* Bouton */
.nexa-btn {
    background: #FFB700;
    color: #001F3F;
    padding: 20px;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Animations et États (Hover/Focus) --- */

/* Focus des champs */
.nexa-input:focus, 
.nexa-select:focus, 
.nexa-textarea:focus {
    border-color: #00438B !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 0 0 4px rgba(0, 67, 139, 0.1) !important;
    transform: translateY(-2px);
}

/* Hover des cartes */
.nexa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 67, 139, 0.1) !important;
}

/* Hover du bouton */
.nexa-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 183, 0, 0.3) !important;
    background-color: #FFC529 !important;
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Empile les colonnes */
    }
    
    .form-row {
        grid-template-columns: 1fr; /* Empile les champs nom/email */
    }
    
    .contact-title {
        font-size: 2rem;
    }
}

/* ===== CONTRÔLES MOBILE NEXA ===== */
.nexa-mobile-controls {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 9999;
    display: none;
}

.burger-icon {
    width: 30px;
    height: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 9999;
    transition: all 0.3s ease;
}

.burger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--nexa-yellow);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--nexa-yellow);
}

.burger-icon.active span:nth-child(2) {
    opacity: 0;
}

.burger-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: var(--nexa-yellow);
}

.burger-icon:hover span {
    background-color: #FFC529;
}

/* Overlay Menu Mobile Nexa */
.nexa-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 63, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nexa-overlay.active {
opacity: 1;
visibility: visible;
}

.nexa-nav {
text-align: left;
padding: 80px 0 0 40px;
}

.nexa-nav-list {
list-style: none;
padding: 0;
margin: 0;
}

.nexa-nav-list li {
margin: 1.5rem 0;
opacity: 0;
transform: translateY(30px);
transition: all 0.6s ease;
}

.nexa-overlay.active .nexa-nav-list li {
opacity: 1;
transform: translateY(0);
}

.nexa-nav-list a {
color: #ffffff;
text-decoration: none;
font-size: 1.8rem;
font-weight: 300;
letter-spacing: 1px;
transition: all 0.3s ease;
display: block;
padding: 0.5rem 1rem;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nexa-nav-list a:hover {
color: var(--nexa-yellow);
transform: translateX(10px);
}

.nexa-cta {
    background: var(--nexa-yellow);
    color: var(--nexa-blue) !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.nexa-cta-whatsapp {
    background: #25D366 !important;
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.nexa-cta-whatsapp i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.nexa-cta-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
    background: #128C7E !important;
}

.nexa-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 183, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    /* Cacher le menu desktop */
    .nav-menu {
        display: none !important;
    }
    
    .nexa-mobile-controls {
        display: block;
        z-index: 1002; /* Ajouter un z-index élevé pour visibilité garantie */
    }
    
    /* Délais d'animation */
    .nexa-nav-list li:nth-child(1) { transition-delay: 0.1s; }
    .nexa-nav-list li:nth-child(2) { transition-delay: 0.15s; }
    .nexa-nav-list li:nth-child(3) { transition-delay: 0.2s; }
    .nexa-nav-list li:nth-child(4) { transition-delay: 0.25s; }
    .nexa-nav-list li:nth-child(5) { transition-delay: 0.3s; }
    .nexa-nav-list li:nth-child(6) { transition-delay: 0.35s; }
    .nexa-nav-list li:nth-child(7) { transition-delay: 0.4s; }
}

/* ===== MENU MOBILE ULTRA-MINIMALISTE ===== */
/* Bouton burger à deux lignes inégales */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 40px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  outline: none;
  transition: all 0.3s ease;
}

.menu-toggle .menu-line {
  display: block;
  height: 1.5px;
  background-color: var(--text-dark);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: right;
  position: relative;
}

/* Ligne supérieure plus longue (30px) */
.menu-toggle .menu-line:first-child {
  width: 30px;
  margin-bottom: 8px;
}

/* Ligne inférieure plus courte (20px) */
.menu-toggle .menu-line:last-child {
  width: 20px;
}

/* Animation du bouton burger en croix */
.menu-toggle.active .menu-line:first-child {
  transform: translateY(4px) rotate(-45deg) scaleX(0.8);
  width: 25px;
}

.menu-toggle.active .menu-line:last-child {
  transform: translateY(-4px) rotate(45deg) scaleX(0.8);
  width: 25px;
}

/* Overlay plein écran avec fond noir profond */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 10, 20, 0.98);
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  display: flex;
}

/* Navigation mobile */
.mobile-nav {
  width: 100%;
  max-width: 90%;
  padding: 2rem 0;
  position: relative;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
}

/* Style des éléments du menu */
.mobile-nav-item {
  margin: 1.5rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animation d'apparition des éléments */
.mobile-menu-overlay.active .mobile-nav-item {
  opacity: 1;
  transform: translateY(0);
}

/* Style des liens du menu */
.mobile-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  overflow: hidden;
}

/* Effet de survol avec soulignement fin */
.mobile-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--nexa-yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Style du bouton CTA dans le menu */
.mobile-nav-cta {
  display: inline-block;
  background: transparent;
  color: var(--nexa-yellow) !important;
  border: 1px solid var(--nexa-yellow);
  padding: 1rem 2.5rem !important;
  border-radius: 50px;
  font-weight: 400 !important;
  margin-top: 2rem;
  font-size: 1.2rem !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.mobile-nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--nexa-yellow);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-cta:hover {
  color: #0a192f !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(245, 199, 109, 0.3);
}

.mobile-nav-cta:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-nav-cta::after {
  display: none;
}

/* Bouton de fermeture minimaliste */
.menu-close {
  position: fixed;
  top: 30px;
  right: 30px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
  outline: none;
}

.menu-close:hover {
  color: #fff;
  transform: translateY(-15px) rotate(90deg);
}

.menu-close.show {
  opacity: 1;
  transform: translateY(0);
}

/* Délais d'animation pour chaque élément du menu */
.mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { transition-delay: 0.15s; }

/* Désactiver le défilement lorsque le menu est ouvert */
body.menu-open {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: fixed;
}

/* Media queries pour le menu mobile */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
  
  /* Cacher l'ancien bouton mobile s'il existe */
  .mobile-menu-btn {
    display: none !important;
  }
  
  /* Ajustements pour les très petits écrans */
  @media (max-width: 480px) {
    .mobile-nav-link {
      font-size: 1.7rem;
    }
    
    .mobile-nav-cta {
      font-size: 1.1rem !important;
      padding: 0.8rem 2rem !important;
    }
    
    .menu-close {
      top: 20px;
      right: 20px;
    }
  }
}