 /* Import de la police premium */
        @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');

        .hero-premium {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #0a0a0a;
            color: white;
            overflow: hidden;
        }

        /* Arrière-plan avec effet de mouvement */
        .hero-background {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 50% 50%, 
                rgba(147, 51, 234, 0.15) 0%, 
                rgba(79, 70, 229, 0.1) 25%, 
                rgba(0, 0, 0, 0) 50%);
            animation: rotate 30s linear infinite;
            z-index: 1;
        }

        /* Grille lumineuse */
        .grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 2;
            animation: gridPulse 4s ease-in-out infinite;
        }

        /* Cercles flous animés */
        .blur-circles {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 3;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.3;
            animation: floatCircle 20s ease-in-out infinite;
        }

        .circle-1 {
            top: 20%;
            left: 10%;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #ff0080, #ff8c00);
            animation-delay: 0s;
        }

        .circle-2 {
            bottom: 20%;
            right: 10%;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #00c6ff, #0072ff);
            animation-delay: -5s;
        }

        .circle-3 {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, #a855f7, #d946ef);
            animation-delay: -10s;
        }

        /* Conteneur principal */
        .hero-container {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            width: 100%;
            padding: 2rem;
            margin: 0 auto;
        }

        /* Contenu */
        .hero-content {
            text-align: center;
        }

        /* Badge premium avec effet de brillance */
        .premium-badge {
            display: inline-block;
            margin-bottom: 2rem;
            position: relative;
            animation: fadeInUp 1s ease-out;
        }

        .badge-inner {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            overflow: hidden;
        }

        .badge-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.2),
                transparent
            );
            animation: shine 3s infinite;
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            display: inline-block;
            animation: pulse 2s ease-in-out infinite;
        }

        /* Titre principal avec effet de texte */
        .hero-title {
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .title-line {
            display: block;
            font-size: clamp(3rem, 12vw, 7rem);
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .gradient-text {
            background: linear-gradient(135deg, #fff, #a855f7, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 200%;
            animation: gradientMove 5s ease-in-out infinite;
        }

        .text-reveal {
            position: relative;
            display: inline-block;
            color: transparent;
            -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
        }

        .text-reveal::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            color: white;
            -webkit-text-stroke: 0;
            white-space: nowrap;
            overflow: hidden;
            animation: revealText 2s ease-out forwards;
            animation-delay: 0.5s;
        }

        /* Description */
        .hero-description {
            max-width: 800px;
            margin: 0 auto 3rem;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .hero-description p {
            font-size: clamp(1.1rem, 3vw, 1.5rem);
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        /* Groupe de boutons */
        .button-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 4rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        /* Bouton principal */
        .btn-primary {
            position: relative;
            padding: 1.25rem 3rem;
            background: linear-gradient(135deg, #a855f7, #3b82f6);
            border: none;
            border-radius: 50px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 40px rgba(168, 85, 247, 0.5);
        }

        .btn-primary i {
            transition: transform 0.3s ease;
        }

        .btn-primary:hover i {
            transform: translateX(5px);
        }

        /* Bouton secondaire */
        .btn-secondary {
            padding: 1.25rem 3rem;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }

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

        .btn-secondary:hover::before {
            left: 100%;
        }

        .btn-secondary:hover {
            border-color: rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* Statistiques */
        .stats-container {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

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

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            line-height: 1;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, #fff, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Éléments flottants */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
        }

        .float-item {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.3);
            font-size: 24px;
            animation: floatElement 20s ease-in-out infinite;
        }

        .float-1 {
            top: 20%;
            left: 5%;
            animation-delay: 0s;
            transform: rotate(15deg);
        }

        .float-2 {
            bottom: 30%;
            right: 8%;
            animation-delay: -5s;
            transform: rotate(-10deg);
        }

        .float-3 {
            top: 40%;
            right: 15%;
            animation-delay: -10s;
            transform: rotate(25deg);
        }

        .float-4 {
            bottom: 20%;
            left: 10%;
            animation-delay: -15s;
            transform: rotate(-5deg);
        }

        /* Animations */
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes floatCircle {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(50px, -50px) scale(1.2);
            }
            66% {
                transform: translate(-30px, 30px) scale(0.9);
            }
        }

        @keyframes floatElement {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(50px, 50px) rotate(90deg);
            }
            50% {
                transform: translate(0, 100px) rotate(180deg);
            }
            75% {
                transform: translate(-50px, 50px) rotate(270deg);
            }
        }

        @keyframes shine {
            0% {
                left: -100%;
            }
            20% {
                left: 100%;
            }
            100% {
                left: 100%;
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.5);
            }
        }

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

        @keyframes revealText {
            0% {
                width: 0;
            }
            100% {
                width: 100%;
            }
        }

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

        @keyframes gridPulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .button-group {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .stats-container {
                gap: 2rem;
            }

            .float-item {
                display: none;
            }

            .circle {
                filter: blur(40px);
            }

            .circle-1 {
                width: 200px;
                height: 200px;
            }

            .circle-2 {
                width: 300px;
                height: 300px;
            }

            .circle-3 {
                width: 400px;
                height: 400px;
            }
        }

        /* Effet de parallaxe au scroll */
        .parallax-element {
            transition: transform 0.1s ease-out;
        }

        /* Curseur personnalisé (optionnel) */
        .custom-cursor {
            width: 20px;
            height: 20px;
            background: rgba(168, 85, 247, 0.5);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: screen;
            transition: transform 0.1s ease;
            transform: translate(-50%, -50%);
            backdrop-filter: blur(5px);
            border: 2px solid white;
        }