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

        html {
            background: #1a1a2e;
        }

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #ffffff;
            color: #2d2d41;
            line-height: 1.6;
            overflow-x: hidden;
            min-height: 100vh;
        }

        .container {
            max-width: 100% !important;
            min-width: 320px;
            margin: 0 auto;
            padding: 2rem;
            width: 100%;
            box-sizing: border-box;
            min-height: calc(100vh - 200px); /* Assure que le footer reste en bas de page */
        }


        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 700;
            color: #5a5fca;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: #1f2937;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: #5a5fca;
        }

        .btn-primary, .btn-secondary {
            padding: 0.75rem 1.5rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn-primary {
            background: #F37E05;
            color: white;
            box-shadow: 0 2px 4px rgba(243, 126, 5, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(243, 126, 5, 0.3);
            background: #d46904;
        }

        .btn-secondary {
            background: #ffffff;
            color: #5a5fca;
            border: 1px solid #e5e7eb;
        }

        .btn-secondary:hover {
            background: #f9fafb;
            border-color: #5a5fca;
        }

        /* Hero Section */
        .hero {
            padding: 4rem 0 6rem;
            text-align: left;
            background: #ffffff;
            position: relative;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
            border-radius: 0 0 24px 24px;
            margin-bottom: 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 800px;
            height: 800px;
            background: #e8e9f5;
            border-radius: 50%;
            z-index: 0;
            opacity: 0.3;
            animation: circleFloat1 22s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: #f0f1f8;
            border-radius: 50%;
            z-index: 0;
            opacity: 0.2;
            animation: circleFloat2 28s ease-in-out infinite;
        }

        /* Animations dynamiques pour les ronds dans les coins */
        @keyframes circleFloat1 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }
            25% {
                transform: translate(50px, -40px) scale(1.08);
                opacity: 0.32;
            }
            50% {
                transform: translate(80px, -70px) scale(1.15);
                opacity: 0.35;
            }
            75% {
                transform: translate(40px, -50px) scale(1.1);
                opacity: 0.33;
            }
        }

        @keyframes circleFloat2 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.2;
            }
            25% {
                transform: translate(-45px, 35px) scale(1.09);
                opacity: 0.22;
            }
            50% {
                transform: translate(-75px, 65px) scale(1.18);
                opacity: 0.25;
            }
            75% {
                transform: translate(-35px, 45px) scale(1.12);
                opacity: 0.23;
            }
        }

        .hero .pattern-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background-repeat: repeat;
            background-size: 768px 768px;
            animation: drift 90s linear infinite;
            opacity: 0.15;
        }
        @keyframes drift {
0% { background-position: 0 0; }
            100% { background-position: 256px 256px; }
        }

        /* Logos en fond du hero banner avec transparence */
        .hero-logo-background {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }

        .hero-logo-background img {
            position: absolute;
            opacity: 0;
            height: auto;
            visibility: hidden;
            /* Taille sera définie aléatoirement par JavaScript */
            transition: opacity 0.5s ease-in, visibility 0.5s ease-in;
        }

        .hero-logo-background img.ready {
            opacity: 0.08;
            visibility: visible;
            animation: logoFloat 15s ease-in-out infinite;
            filter: brightness(0) invert(1);
        }
        
        /* Classes de taille pour les logos */
        .hero-logo-background img.size-small {
            width: 120px;
        }
        
        .hero-logo-background img.size-medium {
            width: 160px;
        }
        
        .hero-logo-background img.size-large {
            width: 200px;
        }
        
        .hero-logo-background img.size-xlarge {
            width: 240px;
        }
        
        .hero-logo-background img.size-xxlarge {
            width: 280px;
        }
        
        /* Réduire les logos sur mobile */
        @media (max-width: 768px) {
            .hero-logo-background img.size-small {
                width: 60px;
            }
            
            .hero-logo-background img.size-medium {
                width: 80px;
            }
            
            .hero-logo-background img.size-large {
                width: 100px;
            }
            
            .hero-logo-background img.size-xlarge {
                width: 120px;
            }
            
            .hero-logo-background img.size-xxlarge {
                width: 140px;
            }
        }

        @keyframes logoFloat1 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
                opacity: 0.08;
            }
            25% {
                transform: translate(40px, -30px) rotate(5deg) scale(1.05);
                opacity: 0.1;
            }
            50% {
                transform: translate(60px, -50px) rotate(-3deg) scale(1.1);
                opacity: 0.12;
            }
            75% {
                transform: translate(30px, -40px) rotate(2deg) scale(1.08);
                opacity: 0.1;
            }
        }

        @keyframes logoFloat2 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
                opacity: 0.08;
            }
            25% {
                transform: translate(-35px, 25px) rotate(-4deg) scale(1.06);
                opacity: 0.1;
            }
            50% {
                transform: translate(-55px, 45px) rotate(6deg) scale(1.12);
                opacity: 0.12;
            }
            75% {
                transform: translate(-25px, 35px) rotate(-2deg) scale(1.09);
                opacity: 0.1;
            }
        }

        @keyframes logoFloat3 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
                opacity: 0.08;
            }
            25% {
                transform: translate(30px, 40px) rotate(3deg) scale(1.04);
                opacity: 0.1;
            }
            50% {
                transform: translate(50px, 60px) rotate(-5deg) scale(1.1);
                opacity: 0.12;
            }
            75% {
                transform: translate(20px, 50px) rotate(2deg) scale(1.07);
                opacity: 0.1;
            }
        }

        @keyframes logoFloat4 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
                opacity: 0.08;
            }
            25% {
                transform: translate(-40px, -25px) rotate(-5deg) scale(1.05);
                opacity: 0.1;
            }
            50% {
                transform: translate(-60px, -45px) rotate(4deg) scale(1.11);
                opacity: 0.12;
            }
            75% {
                transform: translate(-30px, -35px) rotate(-2deg) scale(1.08);
                opacity: 0.1;
            }
        }

        @keyframes logoFloat5 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
                opacity: 0.08;
            }
            25% {
                transform: translate(35px, 30px) rotate(4deg) scale(1.06);
                opacity: 0.1;
            }
            50% {
                transform: translate(55px, 50px) rotate(-6deg) scale(1.12);
                opacity: 0.12;
            }
            75% {
                transform: translate(25px, 40px) rotate(3deg) scale(1.09);
                opacity: 0.1;
            }
        }

        @keyframes logoFloat6 {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
                opacity: 0.08;
            }
            25% {
                transform: translate(-30px, 35px) rotate(3deg) scale(1.04);
                opacity: 0.1;
            }
            50% {
                transform: translate(-50px, 55px) rotate(-4deg) scale(1.1);
                opacity: 0.12;
            }
            75% {
                transform: translate(-20px, 45px) rotate(2deg) scale(1.07);
                opacity: 0.1;
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        /* Hero Left Column Styles */
        .hero-left {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .hero-partner-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.875rem;
            color: #6b7280;
            transition: transform 0.2s ease;
        }

        .hero-partner-badge:hover {
            transform: translateY(-1px);
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .hero-partner-badge .logo-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #5a5fca 0%, #F37E05 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.25rem;
        }

        .hero-partner-badge .partner-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .hero-partner-badge .partner-name {
            font-weight: 700;
            color: #2d2d41;
        }

        .hero-partner-badge .partner-label {
            font-size: 0.75rem;
            color: #9ca3af;
        }

        @media (max-width: 768px) {
            .hero-left {
                align-items: center;
                width: 100%;
            }

            .hero-partner-badge {
                font-size: 0.8rem;
                gap: 0.625rem;
                margin-bottom: 1.5rem;
                justify-content: center;
                width: 100%;
                display: flex !important;
                align-items: center;
                padding: 0.5rem 0;
            }

            .hero-partner-badge .logo-icon {
                width: 28px;
                height: 28px;
                font-size: 1.1rem;
                flex-shrink: 0;
                box-shadow: 0 2px 8px rgba(90, 95, 202, 0.2);
            }

            .hero-partner-badge .partner-name {
                font-size: 0.9em;
            }

            .hero-partner-badge .partner-label {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 480px) {
            .hero-partner-badge {
                font-size: 0.75rem;
                gap: 0.5rem;
                margin-bottom: 1.5rem;
                padding: 0.375rem 0;
            }

            .hero-partner-badge .logo-icon {
                width: 24px;
                height: 24px;
                font-size: 1rem;
                box-shadow: 0 2px 6px rgba(90, 95, 202, 0.2);
            }

            .hero-partner-badge .partner-name {
                font-size: 0.85em;
            }

            .hero-partner-badge .partner-label {
                font-size: 0.65rem;
            }
        }

        .hero-left h1 {
            margin-bottom: 1.5rem;
        }

        .hero-left .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.35rem);
            line-height: 1.7;
            color: #4b5563;
            margin-bottom: 2rem;
            max-width: 100%;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .hero-buttons .btn-primary {
            background: linear-gradient(135deg, #F37E05 0%, #ff9500 50%, #F37E05 100%);
            background-size: 200% auto;
            color: white;
            border: none;
            padding: 1.125rem 2.5rem;
            border-radius: 16px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.625rem;
            box-shadow: 0 8px 24px rgba(243, 126, 5, 0.35), 
                        0 4px 12px rgba(243, 126, 5, 0.2),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            letter-spacing: -0.01em;
        }
        
        .hero-buttons .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .hero-buttons .btn-primary:hover {
            background-position: 100% center;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 32px rgba(243, 126, 5, 0.45), 
                        0 6px 16px rgba(243, 126, 5, 0.3),
                        inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }
        
        .hero-buttons .btn-primary:hover::before {
            left: 100%;
        }
        
        .hero-buttons .btn-primary:active {
            transform: translateY(-1px) scale(0.98);
        }

        .hero-buttons .btn-secondary {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: #5a5fca;
            border: 2px solid rgba(90, 95, 202, 0.3);
            padding: 1.125rem 2.5rem;
            border-radius: 16px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.625rem;
            box-shadow: 0 4px 16px rgba(90, 95, 202, 0.15),
                        0 2px 8px rgba(90, 95, 202, 0.1);
            position: relative;
            letter-spacing: -0.01em;
        }
        
        .hero-buttons .btn-secondary::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            padding: 2px;
            background: linear-gradient(135deg, #5a5fca, #F37E05);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .hero-buttons .btn-secondary:hover {
            background: rgba(255, 255, 255, 1);
            border-color: rgba(90, 95, 202, 0.5);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 24px rgba(90, 95, 202, 0.25),
                        0 4px 12px rgba(90, 95, 202, 0.15);
            color: #4549a8;
        }
        
        .hero-buttons .btn-secondary:hover::after {
            opacity: 1;
        }
        
        .hero-buttons .btn-secondary:active {
            transform: translateY(-1px) scale(0.98);
        }

        /* Hero Right Column - Visual */
        /* Hero Features Scroll Wrapper */
        .hero-features-scroll-wrapper {
            width: 100%;
            max-width: 600px;
            position: relative;
            padding: 1rem;
            border-radius: 20px;
            /*background: linear-gradient(135deg, rgba(90, 95, 202, 0.18) 0%, rgba(243, 126, 5, 0.12) 100%);
            border: 1px solid rgba(90, 95, 202, 0.18);
            box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);*/
        }

        /* Indicateur de scroll avec gradient en bas */
        .hero-features-scroll-wrapper::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 10px;
            height: 50px;
            background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.8) 40%, transparent 100%);
            pointer-events: none;
            z-index: 2;
            border-radius: 0 0 8px 8px;
        }

        .hero-features-scroll-wrapper::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 22px;
            background: linear-gradient(135deg, rgba(90, 95, 202, 0.35), rgba(243, 126, 5, 0.2));
            opacity: 0.55;
            filter: blur(18px);
            z-index: 0;
        }

        /* Hero Features Scroll Container */
        .hero-features-scroll-container {
            width: 100%;
            max-height: 500px;
            overflow-y: auto;
            padding-right: 0.5rem;
            padding-bottom: 1rem;
            scrollbar-width: thin;
            scrollbar-color: rgba(90, 95, 202, 0.5) rgba(243, 244, 246, 0.3);
            position: relative;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(90, 95, 202, 0.15);
            box-shadow: 0 10px 24px rgba(90, 95, 202, 0.12);
            z-index: 1;
        }

        .hero-features-scroll-container::-webkit-scrollbar {
            width: 10px;
        }

        .hero-features-scroll-container::-webkit-scrollbar-track {
            background: rgba(243, 244, 246, 0.6);
            border-radius: 8px;
            margin: 8px 0;
        }

        .hero-features-scroll-container::-webkit-scrollbar-thumb {
            background: rgba(90, 95, 202, 0.5);
            border-radius: 8px;
            border: 2px solid rgba(255, 255, 255, 0.8);
        }

        .hero-features-scroll-container::-webkit-scrollbar-thumb:hover {
            background: rgba(90, 95, 202, 0.7);
        }

        .hero-features-scroll-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .hero-features-scroll-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.875rem 0.75rem;
            font-size: 1.125rem;
            background: transparent;
            color: #4338ca;
            border: 1px solid rgba(90, 95, 202, 0.12);
            border-left: 4px solid rgba(90, 95, 202, 0.6);
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 8px;
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }

        .hero-features-scroll-list li::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: linear-gradient(135deg, #F37E05, #f59e0b);
            box-shadow: 0 0 0 4px rgba(243, 126, 5, 0.2);
            flex-shrink: 0;
        }

        .hero-features-scroll-list li:hover {
            transform: translateX(4px);
            border-color: rgba(90, 95, 202, 0.35);
            box-shadow: 0 12px 20px rgba(90, 95, 202, 0.18);
        }

        .hero-features-scroll-list li:nth-child(1) { animation-delay: 0.1s; }
        .hero-features-scroll-list li:nth-child(2) { animation-delay: 0.15s; }
        .hero-features-scroll-list li:nth-child(3) { animation-delay: 0.2s; }
        .hero-features-scroll-list li:nth-child(4) { animation-delay: 0.25s; }
        .hero-features-scroll-list li:nth-child(5) { animation-delay: 0.3s; }
        .hero-features-scroll-list li:nth-child(n+6) { animation-delay: 0.35s; }

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

        .hero-features-scroll-list li:hover {
            transform: translateX(5px);
            padding-left: 1rem;
        }

        .hero-features-scroll-list li:last-child {
            border-bottom: none;
        }

        .hero-right .visual {
            width: 100%;
            max-width: 600px;
            height: 500px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Logo parallaxe container */
        .logo-parallax-container {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: visible;
        }

        .hero-logo-parallax {
            width: 300px;
            height: auto;
            max-width: 90%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: transform 0.15s ease-out;
            filter: drop-shadow(0 10px 30px rgba(90, 95, 202, 0.3));
            z-index: 2;
            will-change: transform;
        }

        @media (max-width: 1024px) {
            .hero-logo-parallax {
                width: 200px;
            }
        }

        @media (max-width: 480px) {
            .hero-logo-parallax {
                width: 150px;
            }
        }

        /* Hero Layout - Two Column Design */
        .hero-single {
            position: relative;
            max-width: 90%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            text-align: left;
            padding: 0;
        }

        .hero-left {
            position: relative;
            z-index: 3;
        }

        .hero-right {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 1024px) {
            .hero-single {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2.5rem;
                padding: 0 1rem;
            }
            
            .hero-left {
                text-align: center;
            }

            .hero-right .visual {
                height: 300px;
                max-width: 100%;
            }

            .hero-features-scroll-wrapper {
                max-width: 100%;
            }

            .hero-features-scroll-container {
                max-height: 400px;
            }

            .hero-features-scroll-wrapper::after {
                right: 8px;
            }
        }



        /* Animation du point vert qui "vit sa best life" - reste au centre mais bouge subtilement */
        @keyframes pointLiving {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                box-shadow: 0 0 20px rgba(90, 95, 202, 0.5), 0 0 40px rgba(90, 95, 202, 0.3);
            }
            25% {
                transform: translate(-50%, calc(-50% - 6px)) scale(1.08);
                box-shadow: 0 0 25px rgba(90, 95, 202, 0.6), 0 0 50px rgba(90, 95, 202, 0.4);
            }
            50% {
                transform: translate(-50%, calc(-50% - 10px)) scale(1.12);
                box-shadow: 0 0 30px rgba(90, 95, 202, 0.7), 0 0 60px rgba(90, 95, 202, 0.5);
            }
            75% {
                transform: translate(-50%, calc(-50% - 6px)) scale(1.08);
                box-shadow: 0 0 25px rgba(90, 95, 202, 0.6), 0 0 50px rgba(90, 95, 202, 0.4);
            }
        }

        /* Animation de la montagne qui monte */
        @keyframes mountainRise {
            0%, 100% {
                transform: translateY(0);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-10px);
                opacity: 0.8;
            }
        }

        /* Animation du conteneur pour donner l'impression que tout monte */
        .stats-animation-container {
            animation: containerRise 5s ease-in-out infinite;
        }

        @keyframes containerRise {
            0% {
                transform: translateY(10px);
            }
            50% {
                transform: translateY(-8px);
            }
            100% {
                transform: translateY(10px);
            }
        }

        /* Animation de la ligne SVG pour qu'elle monte */
        .stats-line {
            animation: lineRise 5s ease-in-out infinite;
        }

        @keyframes lineRise {
            0% {
                transform: translateY(20px);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-15px);
                opacity: 1;
            }
            100% {
                transform: translateY(20px);
                opacity: 0.7;
            }
        }

        .hero h1 {
            font-size: clamp(2rem, 4.5vw, 3.25rem);
            font-weight: 700;
            color: var(--color-text);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
            animation: fadeInUp 0.8s ease-out;
            transition: color 0.3s ease-out;
        }

        #hero-title {
            position: relative;
            line-height: 1.25;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            align-items: flex-start;
            font-size: clamp(1.75rem, 4vw, 3rem);
            font-weight: 900;
        }
        
        .hero-title-normal {
            color: #2d2d41;
            font-weight: 700;
            font-size: 1.4em;
        }
        
        .hero-title-tools {
            background: linear-gradient(135deg, #5a5fca 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            display: inline-block;
            font-size: 1.4em;
        }
        
        .hero-title-decisions {
            background: linear-gradient(135deg, #F37E05 0%, #ff9500 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            display: inline-block;
        }

        .hero-title-line {
            display: block;
            width: 100%;
        }

        .hero-title-line-1 {
            font-size: clamp(2.5rem, 5.5vw, 4rem);
            font-weight: 800;
            color: #4549a8;
            letter-spacing: -0.03em;
            line-height: 1.1;
        }

        .hero-title-line-2 {
            font-size: clamp(2.75rem, 6.5vw, 4.8rem);
            font-weight: 900;
            background: linear-gradient(135deg, #5a5fca 0%,rgb(255, 255, 255) 50%, #5a5fca 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.04em;
            line-height: 1.1;
            animation: gradientRotate 7s ease infinite;
            position: relative;
            display: inline-block;
        }

        .hero-title-line-2::after {
            content: '';
            position: absolute;
            bottom: 0.1em;
            left: 0;
            width: 100%;
            height: 0.15em;
            background: linear-gradient(90deg, rgba(90, 95, 202, 0.3), rgba(243, 126, 5, 0.3), rgba(90, 95, 202, 0.3));
            border-radius: 2px;
            z-index: -1;
            animation: underlinePulse 2s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes underlinePulse {
            0%, 100% {
                opacity: 0.3;
                transform: scaleX(1);
            }
            50% {
                opacity: 0.5;
                transform: scaleX(1.02);
            }
        }

        .hero-title-highlight {
            display: inline-block;
            position: relative;
            background: linear-gradient(135deg, #F37E05 0%, #ff9500 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            text-shadow: 0 0 30px rgba(243, 126, 5, 0.2);
        }

        .hero-title-line-2 .hero-title-highlight {
            background: linear-gradient(135deg, #F37E05 0%, #ff9500 50%, #F37E05 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: highlightPulse 2s ease-in-out infinite;
        }

        @keyframes highlightPulse {
            0%, 100% {
                background-position: 0% 50%;
                filter: brightness(1);
            }
            50% {
                background-position: 100% 50%;
                filter: brightness(1.2);
            }
        }

        @media (max-width: 768px) {
            #hero-title {
                align-items: center;
                text-align: center;
            }
            
            .hero-title-line-1,
            .hero-title-line-2 {
                text-align: center;
            }

            .hero-title-line-2 span[style*="white-space: nowrap"] {
                white-space: normal !important;
            }
        }

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

        /* ============================================
           ANIMATIONS PARALLAXE - FadeIn vers le haut
           ============================================ */
        
        /* Classes pour les blocs animés */
        /* Par défaut visible (progressive enhancement) */
        .fade-in-up {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Seulement si JS est actif, on active les animations */
        html.js-enabled .fade-in-up {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html.js-enabled .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Délais progressifs pour les éléments enfants */
        .fade-in-up-delay-1 {
            transition-delay: 0.1s;
        }

        .fade-in-up-delay-2 {
            transition-delay: 0.2s;
        }

        .fade-in-up-delay-3 {
            transition-delay: 0.3s;
        }

        .fade-in-up-delay-4 {
            transition-delay: 0.4s;
        }

        .fade-in-up-delay-5 {
            transition-delay: 0.5s;
        }

        /* Animation pour les sections principales */
        section.fade-in-up {
            opacity: 1;
            transform: translateY(0);
        }
        
        html.js-enabled section.fade-in-up {
            opacity: 0;
            transform: translateY(80px);
            transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html.js-enabled section.fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animation pour les cartes de features */
        .feature-card.fade-in-up {
            opacity: 1;
            transform: translateY(0);
        }
        
        html.js-enabled .feature-card.fade-in-up {
            opacity: 0;
            transform: translateY(60px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html.js-enabled .feature-card.fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Désactiver les animations pour prefers-reduced-motion */
        @media (prefers-reduced-motion: reduce) {
            html.js-enabled .fade-in-up,
            html.js-enabled section.fade-in-up,
            html.js-enabled .feature-card.fade-in-up {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
            }
        }

        .hero-subtitle {
            font-size: clamp(1.15rem, 2.5vw, 1.5rem);
            color: #4b5563;
            margin-bottom: 2.5rem;
            max-width: 100%;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .hero-badges {
            display: flex;
            gap: 0.75rem;
            justify-content: flex-start;
            flex-wrap: wrap;
            margin-top: 1.5rem;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        @media (max-width: 1024px) {
            .hero-badges {
                justify-content: center;
            }
        }

        .badge {
            padding: 0.6rem 1.2rem;
            background: rgba(255, 255, 255, 0.9);
            border: 1.5px solid rgba(90, 95, 202, 0.2);
            border-radius: 50px;
            font-size: 0.875rem;
            color: #5a5fca;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(90, 95, 202, 0.1);
            backdrop-filter: blur(10px);
        }

        .badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(90, 95, 202, 0.2);
            border-color: rgba(90, 95, 202, 0.4);
        }

        .badge a {
            color: #5a5fca;
            text-decoration: none;
            transition: color 0.2s;
        }

        .badge a:hover {
            color: #4549a8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: flex-start;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        @media (max-width: 1024px) {
            .hero-buttons {
                justify-content: center;
            }
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(90, 95, 202, 0.1);
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }

        @media (max-width: 640px) {
            .hero-stats {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

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

        .hero-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #5a5fca 0%, #F37E05 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .hero-stat-label {
            font-size: 0.9rem;
            color: #6b7280;
            font-weight: 500;
        }

        /* Features Section */
        .features {
            padding: 5rem 0;
            background: #ffffff;
            border-radius: 0;
            margin: 0;
            margin-top: 0;
            box-shadow: none;
            position: relative;
            overflow: hidden;
        }
        
        .features-pattern-overlay {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-repeat: repeat;
            background-size: 512px 512px;
            animation: patternDrift 20s ease-in-out infinite, patternFloat 8s ease-in-out infinite;
            opacity: 0.18;
        }
        
        @keyframes patternDrift {
            0% { background-position: 0 0; }
            25% { background-position: 512px 256px; }
            50% { background-position: 512px 512px; }
            75% { background-position: 256px 512px; }
            100% { background-position: 0 0; }
        }
        
        @keyframes patternFloat {
            0%, 100% { 
                transform: translate(0, 0) rotate(0deg);
            }
            25% { 
                transform: translate(-8px, -12px) rotate(-0.5deg);
            }
            50% { 
                transform: translate(8px, -8px) rotate(0.5deg);
            }
            75% { 
                transform: translate(-4px, -16px) rotate(-0.3deg);
            }
        }
        
        .features .container {
            position: relative;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: #5a5fca;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Grille compacte des outils (remplace les feature-cards) */
        .features-compact {
            background: #f9fafb;
            padding: 4rem 0;
        }

        .tools-compact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .tool-compact {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 1.25rem 1.5rem;
            background: linear-gradient(135deg, rgba(90, 95, 202, 0.08) 0%, rgba(255, 255, 255, 0.95) 45%, rgba(243, 126, 5, 0.06) 100%);
            border-radius: 12px;
            border: 1px solid rgba(90, 95, 202, 0.12);
            transition: all 0.3s ease;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
        }

        .tool-compact:hover {
            background: linear-gradient(135deg, rgba(90, 95, 202, 0.12) 0%, rgba(255, 255, 255, 0.98) 45%, rgba(243, 126, 5, 0.08) 100%);
            border-color: rgba(90, 95, 202, 0.3);
            box-shadow: 0 8px 24px rgba(90, 95, 202, 0.12);
            transform: translateY(-2px);
        }

        .tool-compact-name {
            font-size: 1.1rem;
            font-weight: 700;
            color: #2d2d41;
            margin: 0 0 0.35rem 0;
            line-height: 1.3;
        }

        .tool-compact-desc {
            font-size: 0.9rem;
            color: #6b7280;
            line-height: 1.5;
            margin: 0;
        }

        /* ============================================
           BLOC USP - Design éclaté
           ============================================ */
        .usp-block {
            position: relative;
            padding: 5rem 0 5.5rem;
            background: linear-gradient(180deg, rgba(90, 95, 202, 0.06) 0%, #ffffff 25%, #f9fafb 100%);
            overflow: hidden;
        }

        .usp-block-inner {
            position: relative;
        }

        .usp-block-wave {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(135deg, #6366f1 0%, #5a5fca 40%, #4f46e5 100%);
            clip-path: polygon(0 0, 100% 0, 100% 60%, 0 100%);
            opacity: 0.12;
        }

        .usp-block-container {
            max-width: 1100px;
            margin: 0 auto;
            min-height: unset;
        }

        .usp-block-title {
            text-align: center;
            font-size: clamp(1.75rem, 3.5vw, 2.75rem);
            font-weight: 800;
            color: #2d2d41;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }

        .usp-block-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 3rem;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        .usp-block-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            grid-template-rows: auto auto;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }

        .usp-block-card {
            position: relative;
            padding: 2rem 2.25rem;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(90, 95, 202, 0.08);
        }

        .usp-block-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 48px rgba(90, 95, 202, 0.15);
        }

        .usp-block-card--primary {
            grid-column: 1;
            grid-row: 1 / 3;
            background: linear-gradient(145deg, rgba(90, 95, 202, 0.12) 0%, rgba(255, 255, 255, 0.98) 50%, rgba(90, 95, 202, 0.06) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .usp-block-card--primary:hover {
            border-color: rgba(90, 95, 202, 0.25);
            box-shadow: 0 28px 56px rgba(90, 95, 202, 0.18);
        }

        .usp-block-card--accent {
            grid-column: 2;
            grid-row: 1;
            background: linear-gradient(145deg, rgba(243, 126, 5, 0.1) 0%, rgba(255, 255, 255, 0.98) 45%, rgba(243, 126, 5, 0.05) 100%);
        }

        .usp-block-card--accent:hover {
            border-color: rgba(243, 126, 5, 0.3);
            box-shadow: 0 24px 48px rgba(243, 126, 5, 0.15);
        }

        .usp-block-card--mixed {
            grid-column: 2;
            grid-row: 2;
            background: linear-gradient(145deg, rgba(90, 95, 202, 0.08) 0%, rgba(255, 255, 255, 0.97) 40%, rgba(243, 126, 5, 0.08) 100%);
        }

        .usp-block-card--mixed:hover {
            border-color: rgba(90, 95, 202, 0.2);
            box-shadow: 0 24px 48px rgba(90, 95, 202, 0.12);
        }

        .usp-block-card-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.4;
            pointer-events: none;
        }

        .usp-block-card-glow--purple {
            width: 200px;
            height: 200px;
            top: -60px;
            right: -40px;
            background: radial-gradient(circle, #5a5fca 0%, transparent 70%);
        }

        .usp-block-card-glow--orange {
            width: 140px;
            height: 140px;
            bottom: -30px;
            left: -20px;
            background: radial-gradient(circle, #F37E05 0%, transparent 70%);
        }

        .usp-block-card-glow--mixed {
            width: 160px;
            height: 160px;
            top: -40px;
            right: -30px;
            background: radial-gradient(circle, rgba(90, 95, 202, 0.6) 0%, rgba(243, 126, 5, 0.4) 50%, transparent 70%);
        }

        .usp-block-number {
            display: block;
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #5a5fca 0%, #F37E05 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.9;
        }

        .usp-block-card--primary .usp-block-number {
            font-size: 4.5rem;
        }

        .usp-block-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #2d2d41;
            margin: 0 0 0.75rem 0;
            line-height: 1.3;
        }

        .usp-block-card--primary .usp-block-card-title {
            font-size: 1.5rem;
        }

        .usp-block-card-desc {
            font-size: 0.95rem;
            color: #6b7280;
            line-height: 1.6;
            margin: 0;
        }

        .usp-block-cta {
            text-align: center;
        }

        .usp-block-btn {
            display: inline-block;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 700;
            color: #5a5fca;
            text-decoration: none;
            border: 2px solid rgba(90, 95, 202, 0.3);
            border-radius: 14px;
            transition: all 0.3s ease;
            background: linear-gradient(135deg, rgba(90, 95, 202, 0.06) 0%, rgba(255, 255, 255, 0.9) 100%);
        }

        .usp-block-btn:hover {
            background: linear-gradient(135deg, #5a5fca 0%, #4f46e5 100%);
            color: #fff;
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(90, 95, 202, 0.35);
        }

        @media (max-width: 900px) {
            .usp-block-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }

            .usp-block-card--primary,
            .usp-block-card--accent,
            .usp-block-card--mixed {
                grid-column: 1;
                grid-row: auto;
            }

            .usp-block-card--primary .usp-block-number {
                font-size: 3.5rem;
            }

            .usp-block {
                padding: 4rem 0 4.5rem;
            }
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: #ffffff;
            padding: 2rem;
            border-radius: 16px;
            border: 2px solid rgba(90, 95, 202, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(90, 95, 202, 0.08);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #5a5fca 0%, #F37E05 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            width: 80px;
            height: 80px;
            top:unset;
            left:unset;
            background-image: url('/img/beriox-logo.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: bottom right;
            opacity: 0.08;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }

        .feature-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(90, 95, 202, 0.4);
            box-shadow: 0 16px 40px rgba(90, 95, 202, 0.25), 0 4px 12px rgba(90, 95, 202, 0.15);
            background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
        }

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

        .feature-card:hover::after {
            opacity: 0.15;
        }

        .feature-list-item {
            cursor: default;
        }

        .feature-card:hover .feature-list-item {
            transform: translateX(4px);
            color: #2d2d41;
        }

        .feature-card:hover .feature-list-item span {
            transform: scale(1.1);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-number {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1;
            display: block;
            background: linear-gradient(135deg, #5a5fca 0%, #4549a8 50%, #F37E05 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.8;
            transition: opacity 0.3s ease, transform 0.3s ease;
            position: absolute;
            bottom: 1rem;
            right: 1rem;
            margin: 0;
            z-index: 1;
        }

        .feature-card:hover .feature-number {
            opacity: 1;
            transform: scale(1.05);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            color: #2d2d41;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .feature-card p {
            color: #6b7280;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Stats Section */
        .stats {
            padding: 5rem 0;
            background: rgba(90, 95, 202, 0.05);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: #5a5fca;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #6b7280;
            font-size: 1rem;
            font-weight: 600;
        }

        /* Use Cases */
        .use-cases {
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
            background: #ffffff;
            border-radius: 0;
            margin: 0;
            margin-top: 0;
            box-shadow: none;
        }
        
        .use-cases .container {
            position: relative;
            z-index: 1;
        }
        
        .use-cases-logo-container {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }
        
        /* Logos "au vent" (réutilisé sur plusieurs sections) */
        .use-cases-logo-container .floating-logo,
        .pricing-logo-container .floating-logo,
        .blog-logo-container .floating-logo,
        .cta-logo-container .floating-logo {
            position: absolute;
            width: 60px;
            height: 60px;
            opacity: 0.12;
            background-image: url('/img/beriox-logo.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            will-change: transform, opacity;
        }

        .use-case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .use-case-card {
            background: #e8e9f5;
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid #C4B5FD;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .use-case-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(90, 95, 202, 0.1) 0%, rgba(243, 126, 5, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 0;
        }
        
        /* Logo Beriox en transparence dans le coin inférieur droit */
        .use-case-card::after {
            content: '';
            position: absolute;
            bottom: 0.75rem;
            right: 0.75rem;
            width: 40px;
            height: 40px;
            background-image: url('/img/beriox-logo.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.08;
            pointer-events: none;
            z-index: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .use-case-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 12px 40px rgba(90, 95, 202, 0.25);
            border-color: #5a5fca;
            background: #ffffff;
        }

        .use-case-card:hover::before {
            opacity: 1;
        }

        .use-case-card:hover::after {
            opacity: 0.3;
            filter: brightness(0) invert(1);
        }
        
        .use-case-card > * {
            position: relative;
            z-index: 1;
        }

        .use-case-card h4 {
            font-size: 1.25rem;
            color: #9fa3e0;
            margin-bottom: 1rem;
            font-weight: 700;
            transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .use-case-card:hover h4 {
            color: #5a5fca;
        }

        .use-case-card ul {
            list-style: none;
            padding: 0;
        }

        .use-case-card li {
            color: #6b7280;
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .use-case-card:hover li {
            color: #2d2d41;
        }
        
        .use-case-card li:hover {
            transform: translateX(4px);
            color: #5a5fca;
        }

        .use-case-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: 700;
        }

        /* Blog Preview Section */
        .blog-preview {
            padding: 5rem 0;
            background: #ffffff;
            border-radius: 24px;
            margin: 0;
            margin-top: 3rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .blog-preview .container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .blog-logo-container {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        /* Blog Slider */
        .blog-slider-wrapper {
            position: relative;
            margin-top: 3rem;
            padding: 0 2rem;
            overflow: visible;
        }
        
        .blog-slider {
            overflow: visible;
            border-radius: 20px;
            min-height: 450px;
            contain: layout;
        }
        
        .blog-slider .swiper-slide {
            height: auto;
            overflow: visible;
            padding: 1rem;
        }
        
        /* Permettre l'overflow visible sur le wrapper pour les effets hover */
        .blog-slider .swiper-wrapper {
            overflow: visible;
        }
        
        .blog-slider .swiper-button-next,
        .blog-slider .swiper-button-prev {
            background: linear-gradient(135deg, #5a5fca 0%, #8b5cf6 100%);
            color: white;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            margin-top: 0;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 16px rgba(90, 95, 202, 0.3),
                        0 2px 8px rgba(90, 95, 202, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            z-index: 10;
            position: absolute;
        }
        
        .blog-slider .swiper-button-next:hover,
        .blog-slider .swiper-button-prev:hover {
            background: linear-gradient(135deg, #4549a8 0%, #7c3aed 100%);
            transform: translateY(-50%) scale(1.15);
            box-shadow: 0 8px 24px rgba(90, 95, 202, 0.4),
                        0 4px 12px rgba(90, 95, 202, 0.3);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .blog-slider .swiper-button-next:active,
        .blog-slider .swiper-button-prev:active {
            transform: translateY(-50%) scale(1.05);
            box-shadow: 0 2px 8px rgba(90, 95, 202, 0.3);
        }
        
        /* Flèches uniformes (CSS pur, même style pour next/prev) */
        .blog-slider .swiper-button-next::after,
        .blog-slider .swiper-button-prev::after {
            content: '';
            display: block;
            width: 0;
            height: 0;
            margin: 0;
            font-size: 0;
            border: none;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-left: 10px solid #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-45%, -50%);
            text-shadow: none;
        }
        .blog-slider .swiper-button-prev::after {
            transform: translate(-55%, -50%) scaleX(-1);
        }
        
        .blog-slider .swiper-button-next {
            right: -2rem;
        }
        
        .blog-slider .swiper-button-prev {
            left: -2rem;
        }

        /* Amélioration pour mobile - flèches plus petites mais visibles */
        @media (max-width: 1024px) {
            .blog-slider .swiper-button-next,
            .blog-slider .swiper-button-prev {
                width: 48px;
                height: 48px;
            }
            
            .blog-slider .swiper-button-next {
                right: -1.5rem;
            }
            
            .blog-slider .swiper-button-prev {
                left: -1.5rem;
            }
        }
        
        .blog-slider .swiper-pagination {
            position: relative;
            margin-top: 2rem;
            bottom: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            padding: 0;
        }
        
        .blog-slider .swiper-pagination-bullet {
            position: relative;
            background: rgba(90, 95, 202, 0.2);
            opacity: 1;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            overflow: visible;
            margin: 0 6px !important;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            flex-shrink: 0;
            border: 2px solid transparent;
        }

        .blog-slider .swiper-pagination-bullet::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(90, 95, 202, 0.4) 0%, transparent 70%);
            border-radius: 50%;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .blog-slider .swiper-pagination-bullet::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #5a5fca 0%, #8b5cf6 100%);
            border-radius: 50%;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
            box-shadow: 0 0 0 0 rgba(90, 95, 202, 0);
            pointer-events: none;
        }
        
        .blog-slider .swiper-pagination-bullet-active {
            width: 32px;
            height: 10px;
            background: rgba(90, 95, 202, 0.1);
            border-color: rgba(90, 95, 202, 0.3);
            transform: scale(1);
        }

        .blog-slider .swiper-pagination-bullet-active::after {
            transform: translate(-50%, -50%) scale(1);
            box-shadow: 0 0 12px rgba(90, 95, 202, 0.6),
                        0 0 24px rgba(90, 95, 202, 0.3),
                        0 2px 8px rgba(90, 95, 202, 0.4);
            border-radius: 5px;
        }

        .blog-slider .swiper-pagination-bullet-active::before {
            transform: translate(-50%, -50%) scale(2);
            opacity: 0;
        }

        /* Animation de pulse élégante lors du changement de slide */
        @keyframes bulletGlow {
            0% {
                box-shadow: 0 0 12px rgba(90, 95, 202, 0.6),
                            0 0 24px rgba(90, 95, 202, 0.3),
                            0 2px 8px rgba(90, 95, 202, 0.4);
            }
            50% {
                box-shadow: 0 0 20px rgba(90, 95, 202, 0.8),
                            0 0 40px rgba(90, 95, 202, 0.5),
                            0 4px 16px rgba(90, 95, 202, 0.6);
            }
            100% {
                box-shadow: 0 0 12px rgba(90, 95, 202, 0.6),
                            0 0 24px rgba(90, 95, 202, 0.3),
                            0 2px 8px rgba(90, 95, 202, 0.4);
            }
        }

        @keyframes bulletScale {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1);
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
            }
        }

        /* Classe pour l'animation lors du changement de slide */
        .blog-slider .swiper-pagination-bullet-active.animate {
            animation: bulletGlow 0.6s ease-out;
        }

        .blog-slider .swiper-pagination-bullet-active.animate::after {
            animation: bulletScale 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* Effet hover stylisé sur les bullets inactifs */
        .blog-slider .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
            background: rgba(90, 95, 202, 0.3);
            transform: scale(1.2);
            border-color: rgba(90, 95, 202, 0.4);
        }
        
        .blog-slider .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover::after {
            transform: translate(-50%, -50%) scale(0.6);
            opacity: 0.5;
        }

        .blog-slider .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover::before {
            transform: translate(-50%, -50%) scale(1.5);
            opacity: 0.3;
        }
        
        @media (max-width: 768px) {
            .blog-slider-wrapper {
                padding: 0 1rem;
            }
            
            .blog-slider .swiper-button-next,
            .blog-slider .swiper-button-prev {
                width: 44px;
                height: 44px;
                opacity: 0.9;
            }
            
            .blog-slider .swiper-button-next {
                right: 0.5rem;
            }
            
            .blog-slider .swiper-button-prev {
                left: 0.5rem;
            }
            
            .blog-slider .swiper-button-next::after,
            .blog-slider .swiper-button-prev::after {
                border-top-width: 5px;
                border-bottom-width: 5px;
                border-left-width: 8px;
            }
        }
        
        .blog-card {
            background: #ffffff;
            border: 1px solid rgba(90, 95, 202, 0.15);
            border-radius: 20px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        /* Logo Beriox en transparence dans le coin inférieur droit */
        .blog-card::after {
            content: '';
            position: absolute;
            bottom: 0.75rem;
            right: 0.75rem;
            width: 40px;
            height: 40px;
            background-image: url('/img/beriox-logo.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.08;
            pointer-events: none;
            z-index: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(90, 95, 202, 0.2);
            border-color: #5a5fca;
        }
        
        .blog-card:hover::after {
            opacity: 0.15;
            filter: brightness(0) invert(1);
        }
        
        .blog-card-image {
            width: 100%;
            height: 200px;
            overflow: visible;
            background: linear-gradient(135deg, #e8e9f5 0%, #f0f1f8 100%);
            position: relative;
        }
        
        .blog-card-image img {
            overflow: hidden;
        }
        
        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .blog-card:hover .blog-card-image img {
            transform: scale(1.05);
        }
        
        .blog-card-content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
        }
        
        .blog-card-category {
            display: inline-block;
            padding: 0.35rem 0.75rem;
            background: rgba(90, 95, 202, 0.1);
            color: #5a5fca;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.75rem;
        }
        
        .blog-card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #2d2d41;
            margin: 0 0 0.75rem;
            line-height: 1.4;
            transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .blog-card:hover .blog-card-title {
            color: #5a5fca;
        }
        
        .blog-card-excerpt {
            font-size: 0.95rem;
            color: #6b7280;
            line-height: 1.6;
            margin: 0 0 1rem;
            flex: 1;
        }
        
        .blog-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px solid rgba(90, 95, 202, 0.1);
        }
        
        .blog-card-date {
            font-size: 0.85rem;
            color: #9ca3af;
        }
        
        .blog-card-read-more {
            font-size: 0.9rem;
            font-weight: 600;
            color: #5a5fca;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .blog-card:hover .blog-card-read-more {
            transform: translateX(4px);
        }
        
        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .blog-card-image {
                height: 180px;
            }
        }

        /* Pricing Preview */
        .pricing-preview {
            padding: 5rem 0;
            background: #ffffff;
            border-radius: 0;
            margin: 0;
            margin-top: 0;
            box-shadow: none;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-preview .container {
            position: relative;
            z-index: 1;
        }
        
        .pricing-logo-container {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: #ffffff;
            padding: 2.5rem;
            border-radius: 16px;
            border: 2px solid rgba(90, 95, 202, 0.15);
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .pricing-card:hover {
            transform: translateY(-2px);
            border-color: #5a5fca;
            box-shadow: 0 4px 20px rgba(90, 95, 202, 0.15);
        }

        .pricing-card.featured {
            border: 3px solid #5a5fca;
            background: #ffffff;
            transform: scale(1.02);
            box-shadow: 0 8px 32px rgba(90, 95, 202, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.featured::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #5a5fca 0%, #F37E05 50%, #5a5fca 100%);
            background-size: 200% auto;
            animation: gradientShift 3s ease infinite;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            color: #9fa3e0;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .pricing-card.featured h3 {
            font-size: 1.75rem;
            background: linear-gradient(135deg, #5a5fca 0%, #F37E05 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            letter-spacing: -0.02em;
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 700;
            color: #2d2d41;
            margin-bottom: 0.5rem;
        }
        
        .pricing-card.featured .pricing-price {
            font-size: 3.5rem;
            background: linear-gradient(135deg, #5a5fca 0%, #F37E05 50%, #5a5fca 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            animation: gradientShift 3s ease infinite;
            text-shadow: 0 0 30px rgba(90, 95, 202, 0.3);
        }

        .pricing-period {
            color: #6b7280;
            margin-bottom: 2rem;
        }
        
        .pricing-card.featured .pricing-period {
            color: #5a5fca;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            color: #6b7280;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .pricing-card.featured .pricing-features li {
            color: #2d2d41;
            font-weight: 500;
            font-size: 1.05rem;
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: 700;
        }
        
        .pricing-card.featured .pricing-features li::before {
            color: #5a5fca;
            font-size: 1.2rem;
            font-weight: 900;
        }
        
        .pricing-card.featured .btn-primary {
            background: linear-gradient(135deg, #5a5fca 0%, #F37E05 100%);
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            padding: 1rem 2rem;
            box-shadow: 0 8px 24px rgba(90, 95, 202, 0.4);
            border: none;
            transition: all 0.3s ease;
        }
        
        .pricing-card.featured .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 32px rgba(90, 95, 202, 0.5);
            background: linear-gradient(135deg, #4549a8 0%, #d46904 100%);
        }
        
        .pricing-card.featured .btn-secondary {
            background: #ffffff;
            color: #5a5fca;
            border: 2px solid #5a5fca;
            font-weight: 600;
        }
        
        .pricing-card.featured .btn-secondary:hover {
            background: #5a5fca;
            color: white;
            transform: translateY(-2px);
        }
        
        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        /* CTA Section */
        .cta {
            padding: 5rem 0;
            background: #ffffff;
            border-radius: 0;
            margin: 0;
            margin-top: 0;
            box-shadow: none;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta .container {
            position: relative;
            z-index: 1;
        }

        .cta-logo-container {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .cta h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: #5a5fca;
            margin-bottom: 1rem;
        }

        .cta p {
            font-size: 1.1rem;
            color: #6b7280;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Footer - S'assurer que le footer est visible et qu'aucune bande ne dépasse en dessous */
        footer {
            position: relative !important;
            display: block !important;
            visibility: visible !important;
            opacity: 1 !important;
            width: 100% !important;
            z-index: 1 !important;
            margin-top: 3rem !important;
        }
        /* Prolonger le fond du footer sous la page pour éviter une bande blanche ou autre couleur */
        
        
        /* S'assurer que le footer connecté a bien son fond foncé */
        footer.footer-connected {
            background: linear-gradient(135deg, #2d2d41 0%, #1a1a2e 100%) !important;
            color: rgba(255, 255, 255, 0.9) !important;
        }
        
        footer.footer-connected * {
            color: inherit;
        }

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

            .hero {
                padding: 2.5rem 0 2rem;
                min-height: auto;
            }

            .hero h1 {
                font-size: 2rem !important;
            }

            .hero > .container > div {
                grid-template-columns: 1fr !important;
                gap: 2.5rem !important;
                text-align: center !important;
            }

            .hero > .container > div > div:last-child {
                grid-template-columns: 1fr !important;
                text-align: center !important;
                gap: 1.5rem !important;
            }

            .hero-single {
                gap: 2.5rem;
            }

            .hero-left {
                width: 100%;
                align-items: center;
            }

            .hero-left h1 {
                margin-bottom: 1.25rem;
                width: 100%;
            }

            .hero-title-line-1,
            .hero-title-line-2 {
                text-align: center;
                width: 100%;
            }

            .hero-left .hero-subtitle {
                font-size: clamp(1rem, 4vw, 1.2rem);
                margin-bottom: 1.75rem;
                padding: 0 0.75rem;
                text-align: center;
                line-height: 1.6;
                max-width: 100%;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 0.875rem;
                width: 100%;
                margin-top: 0.5rem;
                padding: 0 0.5rem;
            }

            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary {
                width: 100%;
                padding: 1rem 1.5rem;
                font-size: 0.95rem;
                justify-content: center;
                text-align: center;
                border-radius: 12px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }

            .hero-buttons .btn-primary {
                box-shadow: 0 4px 16px rgba(243, 126, 5, 0.3);
            }

            .hero-badges {
                justify-content: center;
                gap: 0.625rem;
                margin-top: 1.5rem;
                flex-wrap: wrap;
                width: 100%;
                padding: 0 0.5rem;
            }

            .badge {
                font-size: 0.8rem;
                padding: 0.625rem 1.125rem;
                white-space: nowrap;
                box-shadow: 0 2px 6px rgba(90, 95, 202, 0.15);
            }

            .hero-right .visual {
                height: 250px;
            }

            .hero-right .visual .stats-animation-container {
                padding: 1rem;
            }

            .hero-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
                margin-top: 2rem;
                padding-top: 2rem;
            }

            .features-grid, .pricing-grid, .tools-compact-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: scale(1);
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 2rem 0 1.75rem;
            }

            .hero-single {
                gap: 2rem;
            }

            .hero-partner-badge {
                margin-bottom: 1.5rem;
            }

            .hero-left h1 {
                margin-bottom: 1rem;
            }

            .hero-title-line-1 {
                font-size: clamp(1.75rem, 8vw, 2.25rem) !important;
                line-height: 1.2;
            }

            .hero-title-line-2 {
                font-size: clamp(2rem, 9vw, 2.5rem) !important;
                line-height: 1.2;
            }

            .hero-left .hero-subtitle {
                font-size: clamp(0.95rem, 4.5vw, 1.1rem);
                margin-bottom: 1.5rem;
                padding: 0 0.5rem;
            }

            .hero-buttons {
                gap: 0.75rem;
                padding: 0 0.25rem;
            }

            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary {
                font-size: 0.875rem;
                padding: 0.875rem 1.25rem;
            }

            .hero-buttons .btn-primary {
                box-shadow: 0 3px 12px rgba(243, 126, 5, 0.25);
            }

            .hero-badges {
                gap: 0.5rem;
                margin-top: 1.25rem;
                padding: 0 0.25rem;
            }

            .badge {
                font-size: 0.75rem;
                padding: 0.5rem 0.875rem;
                box-shadow: 0 2px 4px rgba(90, 95, 202, 0.12);
            }

            .hero-right .visual {
                height: 200px;
            }
        }
        
        /* Styles pour le bouton flottant de création de compte */
        #floating-signup-btn {
            position: fixed;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%) translateX(-150%);
            z-index: 999;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
            opacity: 0;
        }
        
        #floating-signup-btn a {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            background: linear-gradient(135deg, #5a5fca 0%, #4549a8 100%);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(90, 95, 202, 0.35);
            font-weight: 600;
            font-size: 0.95rem;
            white-space: nowrap;
            transition: all 0.3s;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }
        
        #floating-signup-btn a:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 32px rgba(90, 95, 202, 0.45);
        }
        
        /* Responsive - Cacher le bouton sur mobile */
        @media (max-width: 1024px) {
            #floating-signup-btn {
                display: none;
            }
        }

        /* Animations pour le carousel USP */
        #usp-carousel {
            overflow: hidden;
            position: relative;
        }

        .usp-item {
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
            transform-origin: center;
        }

        .usp-item.slide-out {
            animation: slideOutUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .usp-item.slide-up {
            animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .usp-item.slide-in {
            animation: slideInFromBottom 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            transform: translateY(100%);
        }
        .usp-item.slide-in-top {
            animation: slideInFromTop 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            transform: translateY(-100%);
        }

        .usp-item.hidden {
            display: none !important;
        }

        @keyframes slideOutUp {
            0% {
                transform: translateY(0);
                opacity: 1;
            }
            100% {
                transform: translateY(-100%);
                opacity: 0;
            }
        }

        @keyframes slideUp {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(calc(-100% - 1.5rem));
            }
        }

        @keyframes slideInFromBottom {
            0% {
                transform: translateY(100%);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }
        @keyframes slideInFromTop {
            0% {
                transform: translateY(-100%);
                opacity: 0;
            }
            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

/* Account Request Modal */
.account-request-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.account-request-modal.active {
    display: flex;
}

.account-request-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideInModal 0.3s ease;
}

@keyframes slideInModal {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.account-request-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.account-request-modal-header h2 {
    margin: 0;
    color: #2d2d41;
    font-size: 1.75rem;
    font-weight: 700;
}

.account-request-modal-close {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    color: #6b7280;
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.2s;
}

.account-request-modal-close:hover {
    background: #f3f4f6;
    color: #2d2d41;
}

.account-request-modal-body {
    padding: 1.5rem 2.5rem 2.5rem;
}

.account-request-modal-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    text-align: center;
}

.account-request-modal-alert {
    color: #dc2626;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    font-size: 0.875rem;
}

.account-request-modal-alert-success {
    color: #059669;
    background: #d1fae5;
    border-color: #a7f3d0;
}

.account-request-modal-form-group {
    margin-bottom: 1.25rem;
}

.account-request-modal-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2d2d41;
    font-weight: 600;
    font-size: 0.9rem;
}

.account-request-modal-form-group input,
.account-request-modal-form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(90,95,202,0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.account-request-modal-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.account-request-modal-form-group input:focus,
.account-request-modal-form-group textarea:focus {
    outline: none;
    border-color: #5a5fca;
    box-shadow: 0 0 0 3px rgba(90,95,202,0.1);
}

.account-request-modal-btn-primary {
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    border: none;
    background: #5a5fca;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(90,95,202,0.3);
    margin-top: 0.5rem;
}

.account-request-modal-btn-primary:hover {
    background: #4549a8;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(90,95,202,0.4);
}

.account-request-modal-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Hero Section Optimized Classes */
.hero-section {
    padding: 4rem 0 6rem;
    text-align: left;
    background: linear-gradient(135deg, #6366f1 0%, #5a5fca 50%, #4f46e5 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    border-radius: 0 0 24px 24px;
    margin-bottom: 0;
    box-shadow: 0 20px 60px rgba(90, 95, 202, 0.4);
}

.hero-gradient-overlay-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-gradient-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-container-relative {
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #5a5fca;
    font-weight: 600;
}

.hero-title-main {
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.25);
}

.hero-title-gradient {
    background: linear-gradient(135deg, #c7d2fe 0%, #fcd34d 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-text {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
}

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

.hero-cta-secondary {
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transition: border-color 0.2s, color 0.2s;
}

.hero-cta-secondary:hover {
    border-color: rgba(255,255,255,1);
    color: #fff;
}

.hero-cta-primary-auth {
    background: linear-gradient(135deg, #5a5fca 0%, #7c3aed 100%);
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    box-shadow: 0 10px 30px rgba(90, 95, 202, 0.4);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-cta-primary-auth:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(90, 95, 202, 0.5);
}

.hero-cta-primary-register {
    background: linear-gradient(135deg, #F37E05 0%, #ff9500 50%, #F37E05 100%);
    color: white;
    padding: 1.125rem 2.5rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    box-shadow: 0 10px 30px rgba(243, 126, 5, 0.4);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-cta-primary-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(243, 126, 5, 0.5);
}

.hero-cta-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.hero-right-container {
    position: relative;
    z-index: 2;
}

.hero-parallax-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-parallax-logo {
    opacity: 0.12;
    width: 180px;
    height: auto;
}

.hero-usp-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-scroll-hint {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(90, 95, 202, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(90, 95, 202, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #a5b4fc;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
    transition: opacity 0.3s;
}

.hero-carousel-arrows {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 0.5rem;
    pointer-events: none;
    z-index: 5;
}
.hero-carousel-arrow {
    pointer-events: auto;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.hero-carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}
.hero-carousel-arrow:active {
    transform: scale(0.95);
}

.hero-carousel-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    min-height: 280px;
    overflow: hidden;
}

.hero-carousel-container .usp-item.hidden {
    display: none !important;
}

.usp-item-purple-light {
    background: rgba(90, 95, 202, 0.15);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(90, 95, 202, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.usp-item-orange-light {
    background: rgba(243, 126, 5, 0.15);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(243, 126, 5, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
}

.usp-item-purple-medium {
    background: rgba(90, 95, 202, 0.2);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(90, 95, 202, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
}

.usp-item-orange-medium {
    background: rgba(243, 126, 5, 0.2);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(243, 126, 5, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
}

.usp-item-purple-soft {
    background: rgba(90, 95, 202, 0.18);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(90, 95, 202, 0.35);
    backdrop-filter: blur(10px);
    position: relative;
}

.usp-item-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    z-index: 1;
}

.usp-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.usp-item-description {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
}

.account-request-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 10000;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(4px);
    }

    .account-request-modal.active {
        display: flex;
    }

    .account-request-modal-content {
        background: white;
        border-radius: 20px;
        max-width: 480px;
        width: 90%;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: slideInModal 0.3s ease;
    }

    @keyframes slideInModal {
        from {
            opacity: 0;
            transform: translateY(-20px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .account-request-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2rem 2.5rem 1rem;
        border-bottom: 1px solid #e5e7eb;
    }

    .account-request-modal-header h2 {
        margin: 0;
        color: #2d2d41;
        font-size: 1.75rem;
        font-weight: 700;
    }

    .account-request-modal-close {
        background: #f9fafb;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 0.5rem 0.75rem;
        cursor: pointer;
        color: #6b7280;
        font-size: 1.5rem;
        line-height: 1;
        transition: all 0.2s;
    }

    .account-request-modal-close:hover {
        background: #f3f4f6;
        color: #2d2d41;
    }

    .account-request-modal-body {
        padding: 1.5rem 2.5rem 2.5rem;
    }

    .account-request-modal-subtitle {
        color: #6b7280;
        font-size: 0.95rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    .account-request-modal-alert {
        color: #dc2626;
        margin-bottom: 1rem;
        padding: 0.75rem;
        background: #fee2e2;
        border: 1px solid #fecaca;
        border-radius: 8px;
        font-size: 0.875rem;
    }

    .account-request-modal-alert-success {
        color: #059669;
        background: #d1fae5;
        border-color: #a7f3d0;
    }

    .account-request-modal-form-group {
        margin-bottom: 1.25rem;
    }

    .account-request-modal-form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: #2d2d41;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .account-request-modal-form-group input,
    .account-request-modal-form-group textarea {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 2px solid rgba(90,95,202,0.2);
        border-radius: 10px;
        font-size: 1rem;
        font-family: inherit;
        transition: border-color 0.2s;
        box-sizing: border-box;
    }

    .account-request-modal-form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .account-request-modal-form-group input:focus,
    .account-request-modal-form-group textarea:focus {
        outline: none;
        border-color: #5a5fca;
        box-shadow: 0 0 0 3px rgba(90,95,202,0.1);
    }

    .account-request-modal-btn-primary {
        padding: 0.875rem 1.75rem;
        border-radius: 10px;
        border: none;
        background: #5a5fca;
        color: #fff;
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        width: 100%;
        transition: all 0.2s;
        box-shadow: 0 4px 12px rgba(90,95,202,0.3);
        margin-top: 0.5rem;
    }

    .account-request-modal-btn-primary:hover {
        background: #4549a8;
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(90,95,202,0.4);
    }

    .account-request-modal-btn-primary:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

/* ============================================
   BLOC INFOLETTRE - Accueil (full width, 2 colonnes desktop)
   ============================================ */
.newsletter-block {
    padding: 2.5rem 0;
    position: relative;
    background: #f8f9fc;
    width: 100%;
}
.newsletter-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(90, 95, 202, 0.06);
}
.newsletter-block-content {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    text-align: left;
}
.newsletter-block-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: rgba(90, 95, 202, 0.1);
    border-radius: 12px;
    color: #5a5fca;
}
.newsletter-block-icon svg {
    width: 26px;
    height: 26px;
}
.newsletter-block-text {
    min-width: 0;
}
.newsletter-block-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
    color: #2d2d41;
}
.newsletter-block-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}
.newsletter-block-form-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
}
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.85rem 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    background: #fff;
    color: #2d2d41;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.newsletter-form input[type="email"]::placeholder {
    color: #9ca3af;
}
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #5a5fca;
    box-shadow: 0 0 0 3px rgba(90, 95, 202, 0.12);
}
.newsletter-form .newsletter-btn {
    padding: 0.85rem 1.75rem;
    white-space: nowrap;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    background: #5a5fca;
    color: #fff;
    border: none;
    transition: background 0.2s, transform 0.2s;
}
.newsletter-form .newsletter-btn:hover {
    background: #4f46e5;
    transform: translateY(-1px);
}
.newsletter-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.85rem;
    color: #6b7280;
}
.newsletter-trust span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.newsletter-message {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-weight: 500;
    display: none;
}
.newsletter-message.success {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.newsletter-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.25);
}
@media (max-width: 768px) {
    .newsletter-block {
        padding: 2rem 0;
    }
    .newsletter-block-inner {
        grid-template-columns: 1fr;
        padding: 1.75rem 1.25rem;
        margin-left: 1rem;
        margin-right: 1rem;
        border-radius: 12px;
    }
    .newsletter-block-content {
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    .newsletter-block-form-wrap {
        align-items: stretch;
    }
    .newsletter-block-title {
        font-size: 1.35rem;
    }
    .newsletter-block-subtitle {
        margin-bottom: 0;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input[type="email"] {
        min-width: 100%;
    }
    .newsletter-form .newsletter-btn {
        width: 100%;
    }
    .newsletter-trust {
        justify-content: center;
    }
    .newsletter-block-icon {
        width: 48px;
        height: 48px;
    }
    .newsletter-block-icon svg {
        width: 24px;
        height: 24px;
    }
}
