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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            /* Background et couleur gérés par global.css et les thèmes */
            overflow-x: hidden;
        }

        /* Background unifié - Grand dégradé global */
        body:not(.light-mode):not(.dark-theme) {
            background: linear-gradient(to bottom, 
                #0a0a1a 0%,           /* Bleu très foncé en haut */
                #1a1a2e 15%,          /* Bleu foncé */
                #16213e 30%,          /* Bleu navy */
                #1a1f3a 45%,          /* Bleu profond */
                #1e2440 60%,          /* Bleu-violet */
                #20263a 75%,          /* Retour bleu foncé */
                #0f1419 100%          /* Noir-bleu en bas */
            );
            background-attachment: fixed;
            color: #ffffff;
        }

        /* Chiffres volants en fond */
        .flying-numbers {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .number {
            position: absolute;
            font-size: 14px;
            font-weight: bold;
            opacity: 0.4;
            animation: flyNumber 8s infinite linear;
        }

        @keyframes flyNumber {
            0% { 
                transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
                opacity: 0;
            }
            10% { 
                opacity: 0.4;
                transform: translateY(90vh) translateX(10px) scale(1) rotate(180deg);
            }
            90% { 
                opacity: 0.4;
                transform: translateY(10vh) translateX(-10px) scale(1) rotate(360deg);
            }
            100% { 
                transform: translateY(-10vh) translateX(0) scale(0) rotate(540deg);
                opacity: 0;
            }
        }

        /* Grille de trading subtile */
        .trading-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(
                    0deg,
                    rgba(0, 212, 255, 0.08) 0px,
                    transparent 1px,
                    transparent 30px,
                    rgba(0, 212, 255, 0.08) 31px
                ),
                repeating-linear-gradient(
                    90deg,
                    rgba(0, 212, 255, 0.08) 0px,
                    transparent 1px,
                    transparent 30px,
                    rgba(0, 212, 255, 0.08) 31px
                );
            pointer-events: none;
            z-index: 1;
            animation: gridPulse 6s ease-in-out infinite;
        }

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

        .container {
            position: relative;
            z-index: 10;
            margin-top: 70px; /* Espace pour le header fixe */
        }

        .cta-button {
            background: linear-gradient(45deg, #00d4ff, #7b68ee);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

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

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(0, 212, 255, 0.3);
        }

        /* ========================================
           SECTION HERO EXPLOSIF
           ======================================== */
        .hero-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0px 20px 150px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            min-height: 600px;
        }

        /* Hero Content (Partie gauche) */
        .hero-content {
            animation: fadeInUp 0.8s ease-out;
        }

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

        /* Badge supérieur */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(60, 137, 198, 0.1) 0%, rgba(120, 89, 197, 0.1) 100%);
            border: 1px solid rgba(120, 89, 197, 0.3);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 25px;
            animation: badgePulse 2s ease-in-out infinite;
        }

        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 0 10px rgba(60, 137, 198, 0.2); }
            50% { box-shadow: 0 0 20px rgba(120, 89, 197, 0.4); }
        }

        .badge-icon {
            font-size: 1.2rem;
            animation: iconRotate 3s ease-in-out infinite;
        }

        @keyframes iconRotate {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(15deg); }
        }

        .badge-text {
            font-size: 0.9rem;
            font-weight: 600;
            color: #7859C5;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Titre principal */
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #ffffff 0%, #3C89C6 50%, #7859C5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleGlow 3s ease-in-out infinite alternate;
            /* RÉSERVER L'ESPACE POUR 4 LIGNES (3.5rem × 1.2 line-height × 4 lignes = 16.8rem) */
            min-height: 17rem;
            display: flex;
            align-items: flex-start;
        }

        @keyframes titleGlow {
            from { filter: drop-shadow(0 0 15px rgba(60, 137, 198, 0.3)); }
            to { filter: drop-shadow(0 0 25px rgba(120, 89, 197, 0.4)); }
        }

        /* Sous-titre */
        .hero-subtitle {
            font-size: 1.3rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 35px;
            max-width: 600px;
        }

        /* Boutons CTA */
        .hero-cta {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: nowrap; /* Pas de retour à la ligne */
            align-items: center;
        }

        .cta-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #3C89C6 0%, #7859C5 100%);
            color: white;
            padding: 15px 32px;
            border-radius: 8px;
            font-size: 1.15rem; /* Augmenté de 1rem à 1.15rem */
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(120, 89, 197, 0.3);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.3px;
        }

        .cta-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.6s;
        }

        .cta-primary:hover::before {
            left: 100%;
        }

        .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(120, 89, 197, 0.4);
        }

        .cta-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: #7859C5;
            padding: 15px 32px;
            border: 2px solid #7859C5;
            border-radius: 8px;
            font-size: 1.15rem; /* Augmenté de 1rem à 1.15rem */
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
        }

        .cta-secondary:hover {
            background: rgba(120, 89, 197, 0.1);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(120, 89, 197, 0.2);
        }

        /* Tags élégants */
        .hero-tags {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .hero-tag {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(120, 89, 197, 0.1);
            border: 1px solid rgba(120, 89, 197, 0.3);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .hero-tag:hover {
            background: rgba(120, 89, 197, 0.15);
            border-color: rgba(120, 89, 197, 0.5);
            transform: translateY(-2px);
        }

        .tag-icon {
            font-size: 1rem;
        }

        .tag-text {
            font-size: 0.85rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Hero Visual (Partie droite) */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
            animation: fadeInRight 1s ease-out 0.3s backwards;
        }

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

        /* TradeGuru Avatar */
        .guru-avatar {
            position: relative;
            width: 400px;
            height: 400px;
            animation: guruFloat 6s ease-in-out infinite, guruPulse 4s ease-in-out infinite;
        }

        @keyframes guruFloat {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-10px) scale(1.02); }
        }

        @keyframes guruPulse {
            0%, 100% { filter: brightness(1); }
            50% { filter: brightness(1.1); }
        }

        .guru-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 15px 40px rgba(120, 89, 197, 0.4));
            position: relative;
            z-index: 2;
        }

        .guru-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(120, 89, 197, 0.3) 0%, rgba(60, 137, 198, 0.2) 50%, transparent 70%);
            border-radius: 50%;
            animation: glowPulse 3s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes glowPulse {
            0%, 100% { 
                transform: translate(-50%, -50%) scale(1); 
                opacity: 0.5;
                box-shadow: 0 0 60px rgba(120, 89, 197, 0.4), 0 0 100px rgba(60, 137, 198, 0.2);
            }
            50% { 
                transform: translate(-50%, -50%) scale(1.15); 
                opacity: 0.8;
                box-shadow: 0 0 100px rgba(120, 89, 197, 0.6), 0 0 150px rgba(60, 137, 198, 0.3);
            }
        }

        /* EFFETS HYPNOTIQUES */
        
        /* Vagues concentriques */
        .hypnotic-wave {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 2px solid rgba(120, 89, 197, 0.3);
            border-radius: 50%;
            animation: waveExpand 4s ease-out infinite;
            z-index: 0;
        }

        .wave-1 {
            animation-delay: 0s;
        }

        .wave-2 {
            animation-delay: 1.3s;
        }

        .wave-3 {
            animation-delay: 2.6s;
        }

        @keyframes waveExpand {
            0% {
                width: 200px;
                height: 200px;
                opacity: 0.8;
            }
            100% {
                width: 600px;
                height: 600px;
                opacity: 0;
            }
        }

        /* Particules convergentes */
        .particle-flow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
            pointer-events: none;
        }

        .flow-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(120, 89, 197, 0.8);
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(120, 89, 197, 0.6), 0 0 20px rgba(60, 137, 198, 0.4);
            animation: flowToCenter 5s ease-in infinite;
        }

        @keyframes flowToCenter {
            0% {
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 0.8;
            }
            100% {
                transform: translate(0, 0) scale(0);
                opacity: 0;
            }
        }

        /* Positions initiales des particules (viennent de partout) */
        .p-1 {
            top: 0;
            left: 50%;
            animation-delay: 0s;
        }

        .p-2 {
            top: 30%;
            right: 0;
            animation-delay: 0.8s;
        }

        .p-3 {
            bottom: 0;
            left: 50%;
            animation-delay: 1.6s;
        }

        .p-4 {
            top: 30%;
            left: 0;
            animation-delay: 2.4s;
        }

        .p-5 {
            top: 10%;
            right: 20%;
            animation-delay: 3.2s;
        }

        .p-6 {
            bottom: 10%;
            left: 20%;
            animation-delay: 4s;
        }

        /* Satellite Container - 3 cercles outils */
        .satellite-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            animation: satelliteRotate 25s linear infinite;
            z-index: 3;
        }

        @keyframes satelliteRotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Satellites individuels - SEULEMENT 3 */
        .satellite {
            position: absolute;
            width: 75px;
            height: 75px;
            background: rgba(20, 20, 40, 0.95);
            backdrop-filter: blur(10px);
            border: 2px solid #7859C5;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            animation: satelliteCounterRotate 25s linear infinite;
        }

        @keyframes satelliteCounterRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(-360deg); }
        }

        /* Positions des 3 satellites */
        .satellite-1 {
            top: 0;
            left: 50%;
            transform: translateX(-50%) rotate(0deg);
            border-color: #7859C5;
        }

        .satellite-2 {
            top: 50%;
            right: -10px;
            transform: translateY(-50%) rotate(0deg);
            border-color: #3C89C6;
        }

        .satellite-3 {
            bottom: 20px;
            left: 10px;
            transform: rotate(0deg);
            border-color: #9D7FD8;
        }

        .satellite-icon {
            font-size: 1.5rem;
        }

        .satellite-text {
            font-size: 0.65rem;
            font-weight: 600;
            color: white;
            text-align: center;
            white-space: nowrap;
        }

        /* Tourbillon d'étoiles en arrière-plan */
        .stars-orbit {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 650px;
            height: 650px;
            animation: starsRotate 60s linear infinite;
            z-index: 1;
            opacity: 0.6;
        }

        @keyframes starsRotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .star {
            position: absolute;
            font-size: 1.2rem;
            animation: starTwinkle 2s ease-in-out infinite;
        }

        @keyframes starTwinkle {
            0%, 100% { opacity: 0.3; transform: scale(0.8); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        /* Positions des 10 étoiles */
        .star-1 { top: 10%; left: 50%; animation-delay: 0s; }
        .star-2 { top: 20%; right: 15%; animation-delay: 0.2s; }
        .star-3 { top: 50%; right: 5%; animation-delay: 0.4s; }
        .star-4 { bottom: 20%; right: 15%; animation-delay: 0.6s; }
        .star-5 { bottom: 10%; left: 50%; animation-delay: 0.8s; }
        .star-6 { bottom: 20%; left: 15%; animation-delay: 1s; }
        .star-7 { top: 50%; left: 5%; animation-delay: 1.2s; }
        .star-8 { top: 20%; left: 15%; animation-delay: 1.4s; }
        .star-9 { top: 35%; left: 25%; animation-delay: 1.6s; }
        .star-10 { bottom: 35%; right: 25%; animation-delay: 1.8s; }

        /* Bulles sympas avec texte */
        .speech-bubbles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 4;
        }

        .speech-bubble {
            position: absolute;
            background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(123, 104, 238, 0.15));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 212, 255, 0.4);
            border-radius: 15px;
            padding: 8px 14px;
            color: white;
            font-size: 0.75rem;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            white-space: nowrap;
            animation: bubbleFloat 4s ease-in-out infinite;
        }

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

        /* Positions des 5 bulles */
        .bubble-1 {
            top: 15%;
            right: 10%;
            animation-delay: 0s;
        }

        .bubble-2 {
            top: 40%;
            right: -5%;
            animation-delay: 0.8s;
        }

        .bubble-3 {
            bottom: 30%;
            right: 5%;
            animation-delay: 1.6s;
        }

        .bubble-4 {
            bottom: 15%;
            left: 10%;
            animation-delay: 2.4s;
        }

        .bubble-5 {
            top: 30%;
            left: -5%;
            animation-delay: 3.2s;
        }

        /* Cryptos qui orbitent */
        .crypto-orbit {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 580px;
            height: 580px;
            animation: cryptoRotate 40s linear infinite;
            z-index: 2;
        }

        @keyframes cryptoRotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .crypto {
            position: absolute;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
            animation: cryptoCounterRotate 40s linear infinite;
        }

        @keyframes cryptoCounterRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(-360deg); }
        }

        /* Positions des 3 cryptos */
        .crypto-1 {
            top: 5%;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #f7931a, #ffb347);
        }

        .crypto-2 {
            top: 50%;
            right: -5px;
            transform: translateY(-50%);
            background: linear-gradient(135deg, #627eea, #8a9ff5);
        }

        .crypto-3 {
            bottom: 15%;
            left: 15%;
            background: linear-gradient(135deg, #f3ba2f, #ffd966);
        }

        /* Section Fonctionnalités - Style Canvas */
        .features-section {
            max-width: 1300px;
            margin: -80px auto 80px;
            padding: 0 20px;
            background: none; /* Unifié avec le body */
        }
        
        .features-container {
            width: 100%;
        }
        
        /* Titre et sous-titre */
        .section-title {
            text-align: center;
            font-size: 2.5rem; /* Réduit de 3rem à 2.5rem (40px) */
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #3C89C6, #7859C5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.35rem;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .feature-card {
            background: rgba(20, 20, 40, 0.7);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(120, 89, 197, 0.25);
            border-radius: 20px;
            padding: 0;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            min-height: 200px;
        }
        
        /* Animation float individuelle */
        .feature-card:nth-child(1) { animation: cardFloat1 6s ease-in-out infinite; }
        .feature-card:nth-child(2) { animation: cardFloat2 6s ease-in-out infinite 1.5s; }
        .feature-card:nth-child(3) { animation: cardFloat3 6s ease-in-out infinite 3s; }
        .feature-card:nth-child(4) { animation: cardFloat4 6s ease-in-out infinite 4.5s; }
        
        @keyframes cardFloat1 {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-6px); }
        }
        @keyframes cardFloat2 {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }
        @keyframes cardFloat3 {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-7px); }
        }
        @keyframes cardFloat4 {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-9px); }
        }

        /* Bordure gradient animée */
        .feature-card::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #3C89C6 0%, #7859C5 100%);
            border-radius: 20px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .feature-card:hover::before {
            opacity: 1;
            animation: borderPulse 2s ease-in-out infinite;
        }
        
        @keyframes borderPulse {
            0%, 100% { opacity: 0.6; filter: brightness(1); }
            50% { opacity: 1; filter: brightness(1.2); }
        }

        .feature-card:hover {
            transform: translateY(-12px) !important;
            box-shadow: 0 20px 60px rgba(120, 89, 197, 0.5);
            border-color: rgba(120, 89, 197, 0.6);
        }
        
        /* Badge NOUVEAU */
        .feature-badge-new {
            position: absolute;
            top: 18px;
            right: 18px;
            background: linear-gradient(135deg, #ff4444, #ff6b6b);
            color: #fff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1px;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(255, 68, 68, 0.5);
            animation: badgePulse 2s ease-in-out infinite;
        }
        
        /* Contenu de la carte (flex horizontal) */
        .feature-content {
            display: flex;
            align-items: center;
            padding: 40px;
            gap: 30px;
        }
        
        /* Icône XXL à gauche */
        .feature-icon-box {
            flex-shrink: 0;
            width: 110px;
            height: 110px;
            background: linear-gradient(135deg, rgba(60, 137, 198, 0.2), rgba(120, 89, 197, 0.2));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 8px 20px rgba(120, 89, 197, 0.2);
        }
        
        .feature-card:hover .feature-icon-box {
            transform: scale(1.15) rotate(-5deg);
            box-shadow: 0 12px 32px rgba(120, 89, 197, 0.4);
        }

        .feature-icon {
            font-size: 56px;
            filter: drop-shadow(0 4px 12px rgba(120, 89, 197, 0.5));
            transition: transform 0.3s;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }
        
        /* Texte à droite */
        .feature-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .feature-card h3 {
            font-size: 1.65rem;
            font-weight: 800;
            color: #ffffff;
            margin: 0;
            line-height: 1.3;
            transition: all 0.3s;
        }
        
        .feature-card:hover h3 {
            background: linear-gradient(135deg, #3C89C6, #7859C5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transform: translateX(5px);
        }

        .feature-card p {
            font-size: 1.05rem;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }
        
        /* Détails (petits tags) */
        .feature-details {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.55);
            font-weight: 500;
            margin: 8px 0;
            line-height: 1.5;
        }
        
        /* Bouton Découvrir */
        .feature-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: linear-gradient(135deg, rgba(60, 137, 198, 0.2), rgba(120, 89, 197, 0.2));
            border: 2px solid rgba(120, 89, 197, 0.5);
            border-radius: 12px;
            color: #7859C5;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            width: fit-content;
            box-shadow: 0 4px 12px rgba(120, 89, 197, 0.2);
        }
        
        .feature-btn:hover {
            background: linear-gradient(135deg, #3C89C6, #7859C5);
            color: #fff;
            border-color: transparent;
            transform: translateX(8px);
            box-shadow: 0 8px 24px rgba(120, 89, 197, 0.5);
        }

        /* Section Méthodes */
        .methods-section {
            background: none;
            padding: 30px 0 80px 0;
            margin: 0;
        }

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

        .methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .method-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 35px;
            text-align: center;
            transition: all 0.3s;
            border: 1px solid rgba(0, 212, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .method-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #00d4ff, #7b68ee, #ffd700, #00d4ff);
            border-radius: 22px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s;
            transform: rotate(0deg);
        }

        .method-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
            border-color: rgba(0, 212, 255, 0.3);
        }

        .method-card:hover::before {
            opacity: 1;
            animation: borderRotate 1s ease-in-out forwards;
        }

        .method-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #00d4ff, #7b68ee);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
            animation: iconFloat 3s ease-in-out infinite;
        }

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

        .method-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #00d4ff;
            transition: color 0.1s ease;
        }

        .method-card:hover h3 {
            color: #000;
        }

        .method-card p {
            transition: color 0.1s ease;
        }

        .method-card:hover p {
            color: #000;
        }

        /* Section CTA finale */
        .final-cta {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

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

        .final-cta-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .cta-column {
            padding: 40px 30px;
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            border: 1px solid rgba(0, 212, 255, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .cta-column::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #00d4ff, #7b68ee, #ffd700, #00d4ff);
            border-radius: 22px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s;
            transform: rotate(0deg);
        }

        .cta-column:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
            border-color: rgba(0, 212, 255, 0.4);
        }

        .cta-column:hover::before {
            opacity: 1;
            animation: borderRotate 1s ease-in-out forwards;
        }

        .cta-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, #00d4ff, #7b68ee);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            animation: iconFloat 3s ease-in-out infinite;
        }

        .cta-column h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #00d4ff;
            transition: color 0.1s ease;
        }

        .cta-column:hover h3 {
            color: #000;
        }

        .cta-column p {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
            color: rgba(255, 255, 255, 0.9);
            transition: color 0.1s ease;
        }

        .cta-column:hover p {
            color: #000;
        }

        .cta-action {
            text-align: center;
        }

        .cta-action .primary-btn {
            font-size: 1.3rem;
            padding: 20px 50px;
        }

        @keyframes ctaGlow {
            from { opacity: 0.3; }
            to { opacity: 0.6; }
        }

        .final-cta .section-title {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #00d4ff;
        }

        .final-cta .section-subtitle {
            text-align: center;
            font-size: 1.3rem;
            margin-bottom: 60px;
            opacity: 0.8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        footer {
            background: rgba(0, 0, 0, 0.4);
            text-align: center;
            padding: 40px 20px;
            border-top: 1px solid rgba(0, 212, 255, 0.1);
        }

        @media (max-width: 768px) {
            /* Hero responsive */
            .hero-section {
                grid-template-columns: 1fr;
                padding: 60px 20px 80px;
                gap: 40px;
                min-height: auto;
            }

            .hero-title {
                font-size: 2.2rem;
                min-height: 12rem; /* 2.2rem × 1.2 × 4 = 10.56rem, on met 12rem pour sécurité */
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .hero-cta {
                flex-direction: column;
                align-items: stretch;
                flex-wrap: wrap; /* Sur mobile on permet le wrap */
            }

            .cta-primary,
            .cta-secondary {
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            .hero-proof {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .proof-separator {
                display: none;
            }

            /* Hero Visual responsive */
            .hero-visual {
                height: 350px;
            }

            .guru-avatar {
                width: 250px;
                height: 250px;
            }

            .guru-glow {
                width: 300px;
                height: 300px;
            }

            .floating-indicator {
                padding: 8px 15px;
                font-size: 0.85rem;
            }

            .indicator-1 {
                top: 5%;
                right: 0;
            }

            .indicator-2 {
                bottom: 5%;
                left: 0;
            }

            .indicator-3 {
                top: 45%;
                right: 0;
            }

            /* Old responsive rules */
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.3rem; }
            .features-grid { 
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .feature-content {
                flex-direction: column;
                text-align: center;
                padding: 30px 25px;
            }
            .feature-icon-box {
                width: 90px;
                height: 90px;
            }
            .feature-icon {
                font-size: 48px;
            }
        }

        @media (max-width: 480px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            .methods-grid { grid-template-columns: 1fr; }
            .final-cta-content { grid-template-columns: 1fr; }
            .final-cta .section-title { font-size: 2.2rem; }
        }

        /* =============================================
           SECTION AVANT/APRÈS
           ============================================= */
        .before-after-section {
            padding: 80px 20px;
            background: none;
            position: relative;
        }
        
        .before-after-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .before-after-title {
            font-size: 2.5rem; /* Réduit de 3rem à 2.5rem (40px) */
            font-weight: 800;
            text-align: center;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #3C89C6, #7859C5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .before-after-subtitle {
            font-size: 1.35rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 60px;
            font-weight: 400;
        }
        
        .comparison-grid {
            display: grid;
            grid-template-columns: 1fr 4px 1fr;
            gap: 40px;
            position: relative;
        }
        
        .comparison-side {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .side-title {
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 10px;
        }
        
        .side-title.negative {
            background: rgba(120, 89, 197, 0.08);
            color: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(120, 89, 197, 0.2);
        }
        
        .side-title.positive {
            background: rgba(60, 137, 198, 0.08);
            color: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(120, 89, 197, 0.2);
        }
        
        .central-divider {
            width: 4px;
            background: linear-gradient(to bottom, 
                rgba(120, 89, 197, 0.3),
                rgba(60, 137, 198, 0.5),
                rgba(120, 89, 197, 0.3)
            );
            border-radius: 2px;
            box-shadow: 0 0 20px rgba(120, 89, 197, 0.3);
        }
        
        .comparison-items {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .comparison-card {
            background: rgba(20, 20, 40, 0.5);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(120, 89, 197, 0.2);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }
        
        .comparison-card:hover {
            transform: translateX(-5px);
            border-color: rgba(120, 89, 197, 0.4);
            box-shadow: 0 8px 25px rgba(120, 89, 197, 0.2);
        }
        
        .comparison-card.positive:hover {
            transform: translateX(5px);
        }
        
        .comparison-card .card-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
            width: 60px;
            text-align: center;
        }
        
        .comparison-card .card-content {
            flex: 1;
        }
        
        .comparison-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 8px 0;
        }
        
        .comparison-card p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            line-height: 1.4;
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .central-divider {
                display: none;
            }
            
            .comparison-card {
                padding: 18px;
            }
            
            .comparison-card .card-icon {
                font-size: 2rem;
                width: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .before-after-title {
                font-size: 1.8rem; /* Réduit proportionnellement sur mobile */
            }
            
            .before-after-subtitle {
                font-size: 1.1rem;
            }
            
            .side-title {
                font-size: 1.4rem;
                padding: 15px;
            }
            
            .comparison-card {
                padding: 15px;
                gap: 15px;
            }
            
            .comparison-card h4 {
                font-size: 1rem;
            }
            
            .comparison-card p {
                font-size: 0.9rem;
            }
        }
        
        /* Mode clair */
        body.light-mode .before-after-section {
            background: none;
        }
        
        body.light-mode .before-after-title {
            background: linear-gradient(135deg, #6366f1, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        body.light-mode .before-after-subtitle {
            color: #64748b;
        }
        
        body.light-mode .side-title.negative {
            background: rgba(99, 102, 241, 0.08);
            color: #1e293b;
            border-color: rgba(99, 102, 241, 0.2);
        }
        
        body.light-mode .side-title.positive {
            background: rgba(99, 102, 241, 0.08);
            color: #1e293b;
            border-color: rgba(99, 102, 241, 0.2);
        }
        
        body.light-mode .central-divider {
            background: linear-gradient(to bottom, 
                rgba(99, 102, 241, 0.3),
                rgba(99, 102, 241, 0.5),
                rgba(99, 102, 241, 0.3)
            );
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
        }
        
        body.light-mode .comparison-card {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(99, 102, 241, 0.2);
        }
        
        body.light-mode .comparison-card:hover {
            border-color: rgba(99, 102, 241, 0.4);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
        }
        
        body.light-mode .comparison-card h4 {
            color: #1e293b;
        }
        
        body.light-mode .comparison-card p {
            color: #64748b;
        }

        /* =============================================
           SECTION ACCOMPAGNEMENT PÉDAGOGIQUE
           ============================================= */
        .pedagogy-section {
            padding: 100px 20px;
            background: none; /* Unifié avec le body */
            position: relative;
        }
        
        .pedagogy-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .pedagogy-title {
            font-size: 3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #3C89C6, #7859C5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .pedagogy-subtitle {
            font-size: 1.4rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 60px;
            font-weight: 400;
        }
        
        .pedagogy-content {
            display: flex;
            gap: 60px;
            align-items: center;
        }
        
        .pedagogy-guru {
            flex: 0 0 300px;
        }
        
        .guru-avatar {
            width: 300px;
            height: 300px;
            filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.5));
        }
        
        .guru-avatar.floating {
            animation: floatGuru 4s ease-in-out infinite;
        }
        
        @keyframes floatGuru {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        .pedagogy-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .pedagogy-feature {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            background: rgba(255, 255, 255, 0.03);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .pedagogy-feature:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(99, 102, 241, 0.4);
            transform: translateX(10px);
        }
        
        .pedagogy-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
        }
        
        .pedagogy-details h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.95);
        }
        
        .pedagogy-details p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Mode responsive */
        @media (max-width: 1024px) {
            .pedagogy-content {
                flex-direction: column;
                gap: 40px;
            }
            .pedagogy-guru {
                flex: 0 0 200px;
            }
            .guru-avatar {
                width: 200px;
                height: 200px;
            }
        }
        
        @media (max-width: 768px) {
            .pedagogy-title {
                font-size: 2rem;
            }
            .pedagogy-subtitle {
                font-size: 1.1rem;
            }
            .pedagogy-feature {
                flex-direction: column;
                text-align: center;
            }
            .pedagogy-details h3 {
                font-size: 1.2rem;
            }
            .pedagogy-details p {
                font-size: 1rem;
            }
        }
        
        /* Mode light */
        body.light-mode .pedagogy-section {
            background: none; /* Unifié avec le body */
        }
        
        body.light-mode .pedagogy-title {
            background: linear-gradient(135deg, #6366f1, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        body.light-mode .pedagogy-subtitle {
            color: #64748b;
        }
        
        body.light-mode .pedagogy-feature {
            background: rgba(255, 255, 255, 0.8);
            border-color: rgba(99, 102, 241, 0.2);
        }
        
        body.light-mode .pedagogy-feature:hover {
            background: rgba(255, 255, 255, 0.95);
            border-color: rgba(99, 102, 241, 0.4);
        }
        
        body.light-mode .pedagogy-details h3 {
            color: #1e293b;
        }
        
        body.light-mode .pedagogy-details p {
            color: #64748b;
        }
        
        .feature-column.highlight-column .feature-items li {
            background: rgba(219, 39, 119, 0.03);
        }
        
        .feature-column.highlight-column .feature-items li:hover {
            background: rgba(147, 51, 234, 0.1);
            padding-left: 30px;
            box-shadow: inset 0 0 15px rgba(219, 39, 119, 0.1);
        }
        
        .feature-column.highlight-column .feature-items .check {
            color: #db2777;
            font-size: 1.6rem;
            filter: drop-shadow(0 0 3px rgba(219, 39, 119, 0.3));
        }
        
        /* === COLONNE 1: BACKTESTING - Bleu cyan tech === */
        .feature-column:nth-child(1) {
            background: linear-gradient(135deg, 
                rgba(6, 182, 212, 0.08) 0%, 
                rgba(59, 130, 246, 0.08) 100%);
            border-color: rgba(6, 182, 212, 0.3);
        }
        
        .feature-column:nth-child(1):hover {
            border-color: rgba(6, 182, 212, 0.6);
            box-shadow: 0 12px 30px rgba(6, 182, 212, 0.3);
        }
        
        .feature-column:nth-child(1) .column-header {
            background: rgba(6, 182, 212, 0.12);
            border-bottom-color: rgba(6, 182, 212, 0.25);
        }
        
        .feature-column:nth-child(1) .column-header h3 {
            color: #06b6d4;
        }
        
        .feature-column:nth-child(1) .feature-items .check {
            color: #06b6d4;
        }
        
        /* === COLONNE 3: GESTION RISQUE - Vert émeraude === */
        .feature-column:nth-child(3) {
            background: linear-gradient(135deg, 
                rgba(16, 185, 129, 0.08) 0%, 
                rgba(5, 150, 105, 0.08) 100%);
            border-color: rgba(16, 185, 129, 0.3);
        }
        
        .feature-column:nth-child(3):hover {
            border-color: rgba(16, 185, 129, 0.6);
            box-shadow: 0 12px 30px rgba(16, 185, 129, 0.3);
        }
        
        .feature-column:nth-child(3) .column-header {
            background: rgba(16, 185, 129, 0.12);
            border-bottom-color: rgba(16, 185, 129, 0.25);
        }
        
        .feature-column:nth-child(3) .column-header h3 {
            color: #10b981;
        }
        
        .feature-column:nth-child(3) .feature-items .check {
            color: #10b981;
        }
        
        /* === COLONNE 4: PERSONNALISATION - Orange/Jaune === */
        .feature-column:nth-child(4) {
            background: linear-gradient(135deg, 
                rgba(251, 146, 60, 0.08) 0%, 
                rgba(245, 158, 11, 0.08) 100%);
            border-color: rgba(251, 146, 60, 0.3);
        }
        
        .feature-column:nth-child(4):hover {
            border-color: rgba(251, 146, 60, 0.6);
            box-shadow: 0 12px 30px rgba(251, 146, 60, 0.3);
        }
        
        .feature-column:nth-child(4) .column-header {
            background: rgba(251, 146, 60, 0.12);
            border-bottom-color: rgba(251, 146, 60, 0.25);
        }
        
        .feature-column:nth-child(4) .column-header h3 {
            color: #fb923c;
        }
        
        .feature-column:nth-child(4) .feature-items .check {
            color: #fb923c;
        }
        
        /* === COLONNE 5: ANALYSE - Bleu indigo === */
        .feature-column:nth-child(5) {
            background: linear-gradient(135deg, 
                rgba(99, 102, 241, 0.08) 0%, 
                rgba(79, 70, 229, 0.08) 100%);
            border-color: rgba(99, 102, 241, 0.3);
        }
        
        .feature-column:nth-child(5):hover {
            border-color: rgba(99, 102, 241, 0.6);
            box-shadow: 0 12px 30px rgba(99, 102, 241, 0.3);
        }
        
        .feature-column:nth-child(5) .column-header {
            background: rgba(99, 102, 241, 0.12);
            border-bottom-color: rgba(99, 102, 241, 0.25);
        }
        
        .feature-column:nth-child(5) .column-header h3 {
            color: #6366f1;
        }
        
        .feature-column:nth-child(5) .feature-items .check {
            color: #6366f1;
        }
        
        /* Mode clair pour la colonne highlight */
        body.light-mode .feature-column.highlight-column {
            background: linear-gradient(135deg, 
                rgba(99, 102, 241, 0.15) 0%, 
                rgba(139, 92, 246, 0.15) 100%);
            border-color: rgba(99, 102, 241, 0.5);
            box-shadow: 
                0 0 30px rgba(99, 102, 241, 0.2),
                inset 0 0 40px rgba(99, 102, 241, 0.1);
        }
        
        body.light-mode .feature-column.highlight-column:hover {
            box-shadow: 
                0 20px 60px rgba(99, 102, 241, 0.4),
                inset 0 0 80px rgba(99, 102, 241, 0.2);
            border-color: rgba(99, 102, 241, 0.8);
        }
        
        body.light-mode .feature-column.highlight-column .column-header {
            background: linear-gradient(135deg, 
                rgba(99, 102, 241, 0.2) 0%, 
                rgba(139, 92, 246, 0.2) 100%);
            border-bottom-color: rgba(99, 102, 241, 0.3);
        }
        
        body.light-mode .feature-column.highlight-column .column-header h3 {
            background: linear-gradient(135deg, #6366f1, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        body.light-mode .feature-column.highlight-column .feature-items li {
            background: rgba(99, 102, 241, 0.08);
        }
        
        body.light-mode .feature-column.highlight-column .feature-items li:hover {
            background: rgba(99, 102, 241, 0.15);
            box-shadow: inset 0 0 20px rgba(99, 102, 241, 0.15);
        }
        
        body.light-mode .feature-column.highlight-column .feature-items .check {
            color: rgba(99, 102, 241, 1);
            filter: drop-shadow(0 0 5px rgba(99, 102, 241, 0.4));
        }
        
        .feature-column {
            background: rgba(20, 20, 40, 0.5);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(120, 89, 197, 0.2);
            border-radius: 16px;
            padding: 0;
            transition: all 0.3s ease;
            overflow: hidden;
        }
        
        .feature-column:hover {
            border-color: rgba(120, 89, 197, 0.4);
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(120, 89, 197, 0.25);
        }
        
        .column-header {
            background: rgba(60, 137, 198, 0.1);
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid rgba(120, 89, 197, 0.2);
        }
        
        .column-icon {
            font-size: 2rem;
            display: block;
            margin-bottom: 10px;
        }
        
        .column-header h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
            letter-spacing: 0.5px;
        }
        
        .feature-items {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .feature-items li {
            padding: 18px 20px; /* Augmenté pour compenser la taille de fonte */
            border-bottom: 1px solid rgba(120, 89, 197, 0.1);
            display: flex;
            align-items: center;
            gap: 15px; /* Augmenté pour plus d'espace */
            transition: all 0.2s ease;
            min-height: 60px; /* Hauteur minimum pour éviter les décalages */
        }
        
        .feature-items li:last-child {
            border-bottom: none;
        }
        
        .feature-items li:hover {
            background: rgba(60, 137, 198, 0.08);
            padding-left: 25px;
        }
        
        .feature-items .check {
            font-size: 1.4rem; /* Augmenté pour correspondre au texte */
            color: rgba(120, 89, 197, 0.8);
            font-weight: 700;
            flex-shrink: 0;
            width: 24px; /* Largeur fixe pour alignement */
            text-align: center;
        }
        
        .feature-items li span:last-child {
            color: rgba(255, 255, 255, 0.85);
            font-size: 18px; /* Ajusté à 18px */
            font-weight: 600; /* Plus bold pour meilleure lisibilité */
            line-height: 1.5;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .features-columns {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .features-list-title {
                font-size: 1.8rem; /* Réduit proportionnellement sur mobile */
            }
            .features-list-subtitle {
                font-size: 1.1rem;
            }
            .features-columns {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            .column-header {
                padding: 15px;
            }
            .feature-items li {
                padding: 12px 15px;
            }
        }
        
        @media (max-width: 480px) {
            .features-columns {
                grid-template-columns: 1fr;
            }
        }
        
        /* Mode clair */
        body.light-mode .features-list-section {
            background: none;
        }
        
        body.light-mode .features-list-title {
            background: linear-gradient(135deg, #6366f1, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        body.light-mode .features-list-subtitle {
            color: #64748b;
        }
        
        body.light-mode .feature-column {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(99, 102, 241, 0.2);
        }
        
        body.light-mode .feature-column:hover {
            border-color: rgba(99, 102, 241, 0.4);
            box-shadow: 0 12px 30px rgba(99, 102, 241, 0.15);
        }
        
        body.light-mode .column-header {
            background: rgba(99, 102, 241, 0.08);
            border-bottom-color: rgba(99, 102, 241, 0.2);
        }
        
        body.light-mode .column-header h3 {
            color: #1e293b;
        }
        
        body.light-mode .feature-items li {
            border-bottom-color: rgba(99, 102, 241, 0.1);
        }
        
        body.light-mode .feature-items li:hover {
            background: rgba(99, 102, 241, 0.05);
        }
        
        body.light-mode .feature-items .check {
            color: rgba(99, 102, 241, 0.8);
        }
        
        body.light-mode .feature-items li span:last-child {
            color: #475569;
            font-weight: 600; /* Plus bold en mode light aussi */
        }

        /* =============================================
           SECTION LAB TRADING - HARMONISÉE AVEC LE DESIGN
           ============================================= */
        .lab-section {
            padding: 80px 20px;
            background: none;
            position: relative;
        }
        
        .lab-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        
        .lab-title {
            font-size: 2.5rem; /* Réduit de 3rem à 2.5rem (40px) */
            font-weight: 800;
            text-align: center;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #3C89C6, #7859C5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .lab-subtitle {
            font-size: 1.35rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 60px;
            font-weight: 400;
        }
        
        .lab-panel {
            background: rgba(20, 20, 40, 0.7);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(120, 89, 197, 0.25);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(120, 89, 197, 0.2);
            transition: all 0.4s ease;
        }
        
        .lab-panel:hover {
            border-color: rgba(120, 89, 197, 0.4);
            box-shadow: 0 25px 70px rgba(120, 89, 197, 0.3);
        }
        
        .lab-zone {
            margin-bottom: 50px;
            background: rgba(20, 20, 40, 0.3);
            border-radius: 20px;
            padding: 40px;
            border: 2px solid rgba(120, 89, 197, 0.2);
            transition: all 0.3s ease;
        }
        
        .lab-zone:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(120, 89, 197, 0.2);
        }
        
        /* === TOUTES LES ZONES - Harmonie Bleu/Violet avec dégradé blanc === */
        
        /* ZONE 1: 12 STRATÉGIES - Bleu clair → Blanc */
        .lab-zone:nth-child(1) {
            background: linear-gradient(135deg, 
                rgba(59, 130, 246, 0.08) 0%,
                rgba(255, 255, 255, 0.02) 100%);
            border-color: rgba(59, 130, 246, 0.25);
            box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
        }
        
        .lab-zone:nth-child(1):hover {
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
        }
        
        .lab-zone:nth-child(1) .lab-zone-title {
            background: linear-gradient(135deg, #3b82f6, rgba(255, 255, 255, 0.9));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            border-bottom-color: rgba(59, 130, 246, 0.2);
        }
        
        .lab-zone:nth-child(1) .strategy-card {
            background: rgba(59, 130, 246, 0.08);
            border-color: rgba(59, 130, 246, 0.3);
            color: rgba(59, 130, 246, 0.95);
        }
        
        .lab-zone:nth-child(1) .strategy-card:hover {
            background: rgba(59, 130, 246, 0.15);
            border-color: rgba(59, 130, 246, 0.5);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
        }
        
        /* ZONE 2: COMBINAISONS - Violet → Blanc */
        .lab-zone:nth-child(2) {
            background: linear-gradient(135deg, 
                rgba(139, 92, 246, 0.08) 0%,
                rgba(255, 255, 255, 0.02) 100%);
            border-color: rgba(139, 92, 246, 0.25);
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
        }
        
        .lab-zone:nth-child(2):hover {
            border-color: rgba(139, 92, 246, 0.4);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
        }
        
        .lab-zone:nth-child(2) .lab-zone-title {
            background: linear-gradient(135deg, #8b5cf6, rgba(255, 255, 255, 0.9));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            border-bottom-color: rgba(139, 92, 246, 0.2);
        }
        
        .lab-zone:nth-child(2) .combo-box {
            background: rgba(139, 92, 246, 0.05);
            border-color: rgba(139, 92, 246, 0.2);
        }
        
        .lab-zone:nth-child(2) .combo-box:hover {
            background: rgba(139, 92, 246, 0.08);
            border-color: rgba(139, 92, 246, 0.35);
        }
        
        .lab-zone:nth-child(2) .combo-card {
            background: rgba(139, 92, 246, 0.08);
            border-color: rgba(139, 92, 246, 0.3);
            color: rgba(139, 92, 246, 0.95);
        }
        
        .lab-zone:nth-child(2) .combo-card:hover {
            background: rgba(139, 92, 246, 0.15);
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.2);
        }
        
        /* ZONE 3: GESTION RISQUE - Bleu/Violet mix → Blanc */
        .lab-zone:nth-child(3) {
            background: linear-gradient(135deg, 
                rgba(99, 102, 241, 0.08) 0%,
                rgba(255, 255, 255, 0.02) 100%);
            border-color: rgba(99, 102, 241, 0.25);
            box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
        }
        
        .lab-zone:nth-child(3):hover {
            border-color: rgba(99, 102, 241, 0.4);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
        }
        
        .lab-zone:nth-child(3) .lab-zone-title {
            background: linear-gradient(135deg, #6366f1, rgba(255, 255, 255, 0.9));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            border-bottom-color: rgba(99, 102, 241, 0.2);
        }
        
        .lab-zone:nth-child(3) .risk-col {
            background: rgba(99, 102, 241, 0.05);
            border-color: rgba(99, 102, 241, 0.2);
        }
        
        .lab-zone:nth-child(3) .risk-col:hover {
            background: rgba(99, 102, 241, 0.08);
            border-color: rgba(99, 102, 241, 0.35);
        }
        
        .lab-zone:nth-child(3) .risk-col ul li {
            background: rgba(99, 102, 241, 0.08);
            border-color: rgba(99, 102, 241, 0.3);
            color: rgba(99, 102, 241, 0.95);
        }
        
        .lab-zone:nth-child(3) .risk-col ul li:hover {
            background: rgba(99, 102, 241, 0.15);
            border-color: rgba(99, 102, 241, 0.5);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2);
        }
        
        /* ZONE 4: MANAGER AVANCÉ - Violet clair → Blanc */
        .lab-zone:nth-child(4) {
            background: linear-gradient(135deg, 
                rgba(167, 139, 250, 0.08) 0%,
                rgba(255, 255, 255, 0.02) 100%);
            border-color: rgba(167, 139, 250, 0.25);
            box-shadow: 0 0 15px rgba(167, 139, 250, 0.1);
        }
        
        .lab-zone:nth-child(4):hover {
            border-color: rgba(167, 139, 250, 0.4);
            box-shadow: 0 8px 25px rgba(167, 139, 250, 0.15);
        }
        
        .lab-zone:nth-child(4) .lab-zone-title {
            background: linear-gradient(135deg, #a78bfa, rgba(255, 255, 255, 0.9));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            border-bottom-color: rgba(167, 139, 250, 0.2);
        }
        
        .lab-zone:nth-child(4) .manager-card {
            background: rgba(167, 139, 250, 0.08);
            border-color: rgba(167, 139, 250, 0.3);
        }
        
        .lab-zone:nth-child(4) .manager-card:hover {
            background: rgba(167, 139, 250, 0.15);
            border-color: rgba(167, 139, 250, 0.5);
            box-shadow: 0 6px 20px rgba(167, 139, 250, 0.2);
        }
        
        .lab-zone:nth-child(4) .manager-card span:not(.manager-icon) {
            color: rgba(167, 139, 250, 0.95);
        }
        
        .lab-zone:last-child {
            margin-bottom: 0;
        }
        
        .lab-zone-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(120, 89, 197, 0.2);
        }
        
        /* 12 Stratégies Grid */
        .strategies-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        .strategy-card {
            padding: 18px;
            border-radius: 12px;
            text-align: center;
            font-weight: 700;
            font-size: 20px; /* Ajusté à 20px */
            color: #ffffff;
            background: rgba(60, 137, 198, 0.1);
            border: 3px solid rgba(120, 89, 197, 0.5); /* Contour accentué */
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(120, 89, 197, 0.2);
        }
        
        .strategy-card:hover {
            background: rgba(60, 137, 198, 0.2);
            border-color: rgba(120, 89, 197, 0.8); /* Contour encore plus accentué au hover */
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(120, 89, 197, 0.4);
        }
        
        /* Combinaisons */
        .combo-box {
            background: rgba(60, 137, 198, 0.05);
            border: 1px solid rgba(120, 89, 197, 0.2);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s ease;
        }
        
        .combo-box:hover {
            background: rgba(60, 137, 198, 0.08);
            border-color: rgba(120, 89, 197, 0.3);
        }
        
        .combo-intro {
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            margin-bottom: 25px;
            font-weight: 400;
        }
        
        .combo-examples {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
        
        .combo-card {
            background: rgba(120, 89, 197, 0.1);
            border: 3px solid rgba(120, 89, 197, 0.5); /* Contour accentué */
            padding: 14px;
            border-radius: 10px;
            text-align: center;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 700;
            font-size: 20px; /* Ajusté à 20px */
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(120, 89, 197, 0.2);
        }
        
        .combo-card:hover {
            background: rgba(120, 89, 197, 0.2);
            border-color: rgba(120, 89, 197, 0.8); /* Contour encore plus accentué au hover */
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(120, 89, 197, 0.4);
        }
        
        /* Gestion du Risque */
        .risk-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }
        
        .risk-col {
            border-radius: 16px;
            padding: 30px;
            background: rgba(60, 137, 198, 0.05);
            border: 1px solid rgba(120, 89, 197, 0.2);
            transition: all 0.3s ease;
        }
        
        .risk-col:hover {
            background: rgba(60, 137, 198, 0.08);
            border-color: rgba(120, 89, 197, 0.3);
            transform: translateY(-2px);
        }
        
        .risk-col h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            text-align: center;
            color: #ffffff;
            font-weight: 600;
        }
        
        .risk-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px; /* Augmenté pour plus d'espace */
        }
        
        .risk-col ul li {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            padding: 15px 10px; /* Plus de padding vertical */
            background: rgba(60, 137, 198, 0.1);
            border: 3px solid rgba(120, 89, 197, 0.5); /* Contour accentué comme les strategy-cards */
            border-radius: 10px;
            font-weight: 700;
            text-align: center; /* Centré comme les boutons */
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(120, 89, 197, 0.2);
            cursor: pointer; /* Curseur pointer pour look bouton */
        }
        
        .risk-col ul li:hover {
            background: rgba(60, 137, 198, 0.2);
            border-color: rgba(120, 89, 197, 0.8);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(120, 89, 197, 0.4);
        }
        
        .risk-col ul li::before {
            content: ''; /* Suppression de la puce */
            margin-right: 0;
            color: transparent;
        }
        
        /* Manager Avancé */
        .manager-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }
        
        .manager-card {
            background: rgba(60, 137, 198, 0.08);
            border: 3px solid rgba(120, 89, 197, 0.5); /* Contour accentué */
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(120, 89, 197, 0.2);
        }
        
        .manager-card:hover {
            background: rgba(60, 137, 198, 0.15);
            border-color: rgba(120, 89, 197, 0.8); /* Contour encore plus accentué au hover */
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(120, 89, 197, 0.4);
        }
        
        .manager-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .manager-card span:not(.manager-icon) {
            color: rgba(255, 255, 255, 0.85);
            font-size: 20px; /* Ajusté à 20px */
            font-weight: 700;
        }
        
        /* Responsive Lab */
        @media (max-width: 968px) {
            .strategies-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .combo-examples {
                grid-template-columns: repeat(2, 1fr);
            }
            .manager-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .lab-title {
                font-size: 1.8rem; /* Réduit proportionnellement sur mobile */
            }
            .lab-subtitle {
                font-size: 1.1rem;
            }
            .lab-panel {
                padding: 25px;
            }
            .strategies-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .risk-columns {
                grid-template-columns: 1fr;
            }
            .risk-col ul {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .strategies-grid {
                grid-template-columns: 1fr;
            }
            .combo-examples {
                grid-template-columns: 1fr;
            }
            .manager-grid {
                grid-template-columns: 1fr;
            }
            .risk-col ul {
                grid-template-columns: 1fr;
            }
        }
        
        /* Mode clair - Lab harmonisé */
        body.light-mode .lab-section {
            background: none;
        }
        
        body.light-mode .lab-title {
            background: linear-gradient(135deg, #6366f1, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        body.light-mode .lab-subtitle {
            color: #64748b;
        }
        
        body.light-mode .lab-panel {
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(99, 102, 241, 0.25);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
        }
        
        body.light-mode .lab-panel:hover {
            border-color: rgba(99, 102, 241, 0.4);
            box-shadow: 0 12px 35px rgba(99, 102, 241, 0.15);
        }
        
        body.light-mode .lab-zone-title {
            background: linear-gradient(135deg, #6366f1, #8B5CF6) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
            border-bottom-color: rgba(99, 102, 241, 0.2);
        }
        
        body.light-mode .strategy-card {
            color: #1e293b;
            background: rgba(99, 102, 241, 0.08);
            border: 3px solid rgba(99, 102, 241, 0.5); /* Contour accentué en light */
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
        }
        
        body.light-mode .strategy-card:hover {
            background: rgba(99, 102, 241, 0.15);
            border-color: rgba(99, 102, 241, 0.8); /* Contour encore plus accentué au hover en light */
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
        }
        
        body.light-mode .combo-box {
            background: rgba(99, 102, 241, 0.05);
            border-color: rgba(99, 102, 241, 0.15);
        }
        
        body.light-mode .combo-box:hover {
            background: rgba(99, 102, 241, 0.08);
            border-color: rgba(99, 102, 241, 0.25);
        }
        
        body.light-mode .combo-card {
            color: #1e293b;
            background: rgba(99, 102, 241, 0.08);
            border: 3px solid rgba(99, 102, 241, 0.5); /* Contour accentué en light */
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
        }
        
        body.light-mode .combo-card:hover {
            background: rgba(99, 102, 241, 0.15);
            border-color: rgba(99, 102, 241, 0.8); /* Contour encore plus accentué au hover en light */
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
        }
        
        body.light-mode .risk-col {
            background: rgba(99, 102, 241, 0.05);
            border-color: rgba(99, 102, 241, 0.15);
        }
        
        body.light-mode .risk-col:hover {
            background: rgba(99, 102, 241, 0.08);
            border-color: rgba(99, 102, 241, 0.25);
        }
        
        body.light-mode .risk-col h4 {
            color: #1e293b;
        }
        
        body.light-mode .risk-col ul li {
            color: #1e293b;
            background: rgba(99, 102, 241, 0.08);
            border: 3px solid rgba(99, 102, 241, 0.5); /* Contour accentué en light */
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
            font-weight: 700;
        }
        
        body.light-mode .risk-col ul li:hover {
            background: rgba(99, 102, 241, 0.15);
            border-color: rgba(99, 102, 241, 0.8);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
        }
        
        body.light-mode .manager-card {
            background: rgba(99, 102, 241, 0.08);
            border: 3px solid rgba(99, 102, 241, 0.5); /* Contour accentué en light */
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
        }
        
        body.light-mode .manager-card:hover {
            background: rgba(99, 102, 241, 0.15);
            border-color: rgba(99, 102, 241, 0.8); /* Contour encore plus accentué au hover en light */
            box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
        }
        
        body.light-mode .manager-card span:not(.manager-icon) {
            color: #1e293b;
            font-weight: 700;
        }

        /* =============================================
           SECTION DISCLAIMER
           ============================================= */
        .disclaimer-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .disclaimer-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
            animation: disclaimerPulse 8s ease-in-out infinite;
        }
        
        @keyframes disclaimerPulse {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            50% { transform: translate(10px, 10px) scale(1.1); opacity: 0.5; }
        }
        
        .disclaimer-container {
            max-width: 1000px;
            margin: 0 auto;
            background: rgba(20, 20, 40, 0.8);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 107, 107, 0.3);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
            position: relative;
            transition: all 0.4s ease;
        }
        
        .disclaimer-container:hover {
            border-color: rgba(255, 107, 107, 0.5);
            box-shadow: 0 25px 70px rgba(255, 107, 107, 0.3);
            transform: translateY(-5px);
        }
        
        .disclaimer-icon {
            font-size: 4rem;
            text-align: center;
            margin-bottom: 25px;
            animation: warningBounce 2s ease-in-out infinite;
            filter: drop-shadow(0 4px 12px rgba(255, 165, 0, 0.5));
        }
        
        @keyframes warningBounce {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-10px) scale(1.1); }
        }
        
        .disclaimer-title {
            font-size: 2rem;
            font-weight: 800;
            text-align: center;
            color: #ff6b6b;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
        }
        
        .disclaimer-content {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }
        
        .disclaimer-content p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        
        .disclaimer-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .disclaimer-list li {
            position: relative;
            padding-left: 40px;
            margin-bottom: 15px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        
        .disclaimer-list li::before {
            content: "•";
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            color: #ffa500;
            font-size: 1.5rem;
        }
        
        /* RTL Support for Arabic and Hebrew */
        .rtl .disclaimer-list li {
            padding-left: 0;
            padding-right: 40px;
        }
        
        .rtl .disclaimer-list li::before {
            left: auto;
            right: 15px;
        }
        
        .disclaimer-content strong {
            color: #ffa500;
            font-weight: 700;
        }
        
        .disclaimer-final {
            margin-top: 30px;
            padding: 20px;
            background: rgba(255, 165, 0, 0.1);
            border: 1px solid rgba(255, 165, 0, 0.3);
            border-radius: 12px;
            font-weight: 600;
            color: #ffa500;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .disclaimer-section {
                padding: 60px 15px;
            }
            
            .disclaimer-container {
                padding: 30px 20px;
            }
            
            .disclaimer-icon {
                font-size: 3rem;
            }
            
            .disclaimer-title {
                font-size: 1.5rem;
            }
            
            .disclaimer-content p {
                font-size: 0.95rem;
            }
        }
        
        /* Mode clair */
        body.light-mode .disclaimer-section {
            background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(251, 146, 60, 0.08) 100%);
        }
        
        body.light-mode .disclaimer-container {
            background: rgba(255, 255, 255, 0.95);
            border-color: rgba(239, 68, 68, 0.3);
            box-shadow: 0 8px 25px rgba(239, 68, 68, 0.15);
        }
        
        body.light-mode .disclaimer-container:hover {
            border-color: rgba(239, 68, 68, 0.5);
            box-shadow: 0 12px 35px rgba(239, 68, 68, 0.2);
        }
        
        body.light-mode .disclaimer-title {
            color: #dc2626;
            text-shadow: none;
        }
        
        body.light-mode .disclaimer-content {
            color: #475569;
        }
        
        body.light-mode .disclaimer-content strong {
            color: #ea580c;
        }
        
        body.light-mode .disclaimer-final {
            background: rgba(251, 146, 60, 0.1);
            border-color: rgba(251, 146, 60, 0.3);
            color: #ea580c;
        }

        /* =============================================
           SECTION CTA FINAL ULTIME
           ============================================= */
        .ultimate-cta-section {
            padding: 40px 20px 40px 20px;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.4) 0%, rgba(22, 33, 62, 0.4) 100%);
            position: relative;
            overflow: hidden;
            margin: 0;
        }
        
        .ultimate-cta-container {
            max-width: 1300px;
            margin: 0 auto;
        }
        
        /* Grille principale */
        .cta-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 60px;
        }
        
        /* Texte à gauche */
        .cta-text-content {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .cta-features-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #3C89C6, #7859C5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .cta-features-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .cta-features-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px 15px; /* Ajout de 10px en haut et en bas (10px → 20px) */
            background: rgba(20, 20, 40, 0.5);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(120, 89, 197, 0.2);
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .cta-features-list li:hover {
            background: rgba(60, 137, 198, 0.08);
            border-color: rgba(120, 89, 197, 0.4);
            transform: translateX(5px);
        }
        
        .cta-features-list .feature-icon {
            font-size: 2.2rem;
            flex-shrink: 0;
            line-height: 1;
        }
        
        .cta-features-list .feature-content {
            flex: 1;
            padding: 10px 0;
        }
        
        .cta-features-list strong {
            display: block;
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 2px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .cta-features-list p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            line-height: 1.3;
        }
        
        /* Logo à droite */
        .cta-logo-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }
        
        /* TradeGuru Génie */
        .guru-hero {
            position: relative;
            width: 500px;
            height: 500px;
        }
        
        .guru-aura {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, 
                rgba(120, 89, 197, 0.3) 0%,
                rgba(60, 137, 198, 0.2) 40%,
                rgba(0, 0, 0, 0) 70%
            );
            animation: aurapulse 3s ease-in-out infinite;
        }
        
        @keyframes aurapulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
            50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.9; }
        }
        
        .guru-circle {
            position: relative;
            width: 480px;
            height: 480px;
            margin: 10px auto;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: floatSubtle 4s ease-in-out infinite;
        }
        
        @keyframes floatSubtle {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        .guru-logo {
            width: 400px;
            height: 400px;
            object-fit: contain;
            filter: drop-shadow(0 10px 30px rgba(120, 89, 197, 0.6)) 
                    drop-shadow(0 0 20px rgba(60, 137, 198, 0.4));
        }
        
        /* Titres */
        .ultimate-title {
            font-size: 2.5rem; /* Réduit de 3.5rem à 2.5rem (40px) */
            font-weight: 800;
            margin-bottom: 15px;
            text-align: center;
            background: linear-gradient(135deg, #3C89C6, #7859C5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .ultimate-subtitle {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0;
            font-weight: 400;
            text-align: center;
        }
        
        /* Gros bouton CTA */
        .giant-cta-btn {
            display: inline-block;
            position: relative;
            padding: 20px 50px;
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #3C89C6, #7859C5);
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 20px 50px rgba(120, 89, 197, 0.4);
            transition: all 0.3s ease;
            overflow: hidden;
            margin-top: 20px;
            margin-bottom: 25px;
        }
        
        .giant-cta-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 30px 70px rgba(120, 89, 197, 0.6);
        }
        
        .btn-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.3), 
                transparent
            );
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }
        
        .btn-text {
            position: relative;
            z-index: 1;
        }
        
        /* Garanties */
        .guarantees-row {
            display: flex;
            justify-content: flex-start;
            gap: 12px;
            flex-wrap: wrap;
        }
        
        .guarantee-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            background: rgba(60, 137, 198, 0.1);
            border: 1px solid rgba(120, 89, 197, 0.3);
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .guarantee-item:hover {
            background: rgba(60, 137, 198, 0.15);
            border-color: rgba(120, 89, 197, 0.5);
            transform: translateY(-3px);
        }
        
        .guarantee-icon {
            font-size: 1.3rem;
        }
        
        .guarantee-text {
            font-size: 0.95rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Social Proof */
        .social-proof {
            text-align: center;
        }
        
        .proof-line {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin: 8px 0;
            font-weight: 600;
            line-height: 1.6;
        }
        
        .proof-line:first-child {
            background: linear-gradient(135deg, #3C89C6, #7859C5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            .cta-content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .cta-logo-content {
                order: -1;
            }
            
            .guru-hero {
                width: 250px;
                height: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .ultimate-title {
                font-size: 1.8rem; /* Réduit proportionnellement sur mobile */
            }
            
            .ultimate-subtitle {
                font-size: 1.1rem;
            }
            
            .cta-features-title {
                font-size: 1.5rem;
                text-align: center;
            }
            
            .cta-features-list li {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            
            .cta-features-list li:hover {
                transform: translateY(-3px);
            }
            
            .giant-cta-btn {
                font-size: 1.4rem;
                padding: 20px 40px;
                width: 100%;
            }
            
            .guarantees-row {
                justify-content: center;
            }
            
            .proof-counter {
                font-size: 2.5rem;
            }
            
            .guru-hero {
                width: 200px;
                height: 200px;
            }
        }
        
        /* Mode clair */
        body.light-mode .ultimate-cta-section {
            background: linear-gradient(135deg, rgba(231, 235, 255, 0.6) 0%, rgba(204, 214, 255, 0.4) 100%);
            padding: 40px 20px 40px 20px;
            margin: 0;
        }
        
        body.light-mode .ultimate-title {
            background: linear-gradient(135deg, #6366f1, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        body.light-mode .ultimate-subtitle {
            color: #64748b;
        }
        
        body.light-mode .cta-features-title {
            background: linear-gradient(135deg, #6366f1, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        body.light-mode .cta-features-list li {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(99, 102, 241, 0.2);
        }
        
        body.light-mode .cta-features-list li:hover {
            background: rgba(255, 255, 255, 1);
            border-color: rgba(99, 102, 241, 0.4);
        }
        
        body.light-mode .cta-features-list strong {
            color: #1e293b;
        }
        
        body.light-mode .cta-features-list p {
            color: #64748b;
        }
        
        body.light-mode .guru-circle {
            background: transparent;
            box-shadow: none;
        }
        
        body.light-mode .giant-cta-btn {
            background: linear-gradient(135deg, #6366f1, #8B5CF6);
            box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
        }
        
        body.light-mode .giant-cta-btn:hover {
            box-shadow: 0 30px 70px rgba(99, 102, 241, 0.5);
        }
        
        body.light-mode .guarantee-item {
            background: rgba(99, 102, 241, 0.08);
            border-color: rgba(99, 102, 241, 0.2);
        }
        
        body.light-mode .guarantee-item:hover {
            background: rgba(99, 102, 241, 0.12);
            border-color: rgba(99, 102, 241, 0.4);
        }
        
        body.light-mode .guarantee-text {
            color: #475569;
        }
        
        body.light-mode .proof-intro,
        body.light-mode .proof-text {
            color: #64748b;
        }
        
        body.light-mode .proof-counter {
            background: linear-gradient(90deg, #6366f1, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* === THÈME CLAIR SPÉCIFIQUE HOMEPAGE === */
        body.light-mode .number {
            color: #1a1a2e;
            opacity: 0.3;
        }

        body.light-mode .trading-grid {
            background-image: 
                repeating-linear-gradient(
                    0deg,
                    rgba(0, 84, 128, 0.05) 0px,
                    transparent 1px,
                    transparent 30px,
                    rgba(0, 84, 128, 0.05) 31px
                ),
                repeating-linear-gradient(
                    90deg,
                    rgba(0, 84, 128, 0.05) 0px,
                    transparent 1px,
                    transparent 30px,
                    rgba(0, 84, 128, 0.05) 31px
                );
        }

        body.light-mode .hero h1 {
            background: linear-gradient(45deg, #1a1a2e, #6366F1, #ffa500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        body.light-mode .hero p {
            color: #3a3b4d;
        }

        body.light-mode .section-title {
            color: #6366F1;
        }

        body.light-mode .section-subtitle {
            color: #3a3b4d;
        }

        body.light-mode .feature-card {
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid rgba(99, 102, 241, 0.25);
        }
        
        body.light-mode .feature-card::before {
            background: linear-gradient(135deg, #6366F1, #8B5CF6);
        }

        body.light-mode .feature-card h3 {
            color: #1e293b;
        }
        
        body.light-mode .feature-card:hover h3 {
            background: linear-gradient(135deg, #6366F1, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        body.light-mode .feature-card p {
            color: rgba(30, 41, 59, 0.75);
        }
        
        body.light-mode .feature-details {
            color: rgba(30, 41, 59, 0.5);
        }

        body.light-mode .feature-icon-box {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
        }
        
        body.light-mode .feature-btn {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
            border-color: rgba(99, 102, 241, 0.4);
            color: #6366F1;
        }

        body.light-mode .methods-section {
            background: none;
        }

        body.light-mode .method-card {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(204, 214, 255, 0.3);
            color: #3a3b4d;
        }

        body.light-mode .method-card h3 {
            color: #6366F1;
            transition: color 0.1s ease;
        }

        body.light-mode .method-card:hover h3 {
            color: #fff;
        }

        body.light-mode .method-card p {
            transition: color 0.1s ease;
        }

        body.light-mode .method-card:hover p {
            color: #fff;
        }

        body.light-mode .cta-column {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(204, 214, 255, 0.3);
            color: #3a3b4d;
        }

        body.light-mode .cta-column h3 {
            color: #6366F1;
            transition: color 0.1s ease;
        }

        body.light-mode .cta-column:hover h3 {
            color: #fff;
        }

        body.light-mode .cta-column p {
            color: #3a3b4d;
            transition: color 0.1s ease;
        }

        body.light-mode .cta-column:hover p {
            color: #fff;
        }

        body.light-mode .final-cta .section-title {
            color: #6366F1;
        }

        body.light-mode .final-cta .section-subtitle {
            color: #3a3b4d;
        }

        body.light-mode footer {
            background: rgba(231, 235, 255, 0.5);
            border-top: 1px solid rgba(204, 214, 255, 0.3);
            color: #3a3b4d;
        }

        /* Section Tradeguru */
        .tradeguru-section {
            padding: 60px 0 80px 0;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(26, 26, 46, 0.4) 50%, rgba(22, 33, 62, 0.5) 100%);
        }

        .tradeguru-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        /* Partie texte */
        .content-text {
            z-index: 2;
            position: relative;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(45deg, #00d4ff, #7b68ee);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: white;
            box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
        }

        .tradeguru-section .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

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

        .features-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .features-list li::before {
            content: "✨";
            margin-right: 1rem;
            font-size: 1.2rem;
            color: #ffd700;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #00d4ff, #7b68ee);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
            border-color: #00d4ff;
            background: linear-gradient(45deg, #7b68ee, #00d4ff);
        }

        /* Partie visuelle avec Tradeguru */
        .visual-content {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 500px;
        }

        /* Tradeguru principal */
        .tradeguru-showcase {
            width: 300px;
            height: 300px;
            background: url('../../assets/img/logo3.png') center/contain no-repeat;
            border-radius: 20px;
            position: relative;
            animation: float 4s ease-in-out infinite;
            filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5));
            z-index: 3;
            /*border: 3px solid rgba(255, 215, 0, 0.3);*/
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(2deg); }
        }

        /* Bulles de dialogue flottantes */
        .chat-bubble {
            position: absolute;
            background: rgba(20, 20, 40, 0.95);
            border: 2px solid;
            border-image: linear-gradient(45deg, #00d4ff, #7b68ee) 1;
            border-radius: 20px;
            padding: 1.5rem;
            color: white;
            backdrop-filter: blur(10px);
            max-width: 250px;
            animation: fadeInOut 6s infinite;
            opacity: 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .chat-bubble::before {
            content: '';
            position: absolute;
            width: 0;
            height: 0;
            border-style: solid;
        }

        .bubble-1 {
            top: 50px;
            right: 50px;
            animation-delay: 0s;
        }

        .bubble-1::before {
            bottom: -10px;
            left: 30px;
            border-width: 10px 10px 0 10px;
            border-color: #00d4ff transparent transparent transparent;
        }

        .bubble-2 {
            bottom: 80px;
            left: 30px;
            animation-delay: 1.7s;
        }

        .bubble-2::before {
            top: -10px;
            right: 30px;
            border-width: 0 10px 10px 10px;
            border-color: transparent transparent #7b68ee transparent;
        }

        .bubble-3 {
            top: 150px;
            left: -20px;
            animation-delay: 3.3s;
        }

        .bubble-3::before {
            top: 20px;
            right: -10px;
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent #00d4ff;
        }

        .bubble-4 {
            bottom: 30px;
            right: 80px;
            animation: fadeInOut 6s infinite;
            animation-delay: 5.1s;
            opacity: 0;
        }

        .bubble-4::before {
            top: -10px;
            left: 30px;
            border-width: 0 10px 10px 10px;
            border-color: transparent transparent #7b68ee transparent;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; box-shadow: 0 0 20px rgba(0, 212, 255, 0.5); }
            51%, 100% { opacity: 0.3; box-shadow: 0 0 5px rgba(0, 212, 255, 0.2); }
        }

        @keyframes fadeInOut {
            0%, 100% { opacity: 0; transform: translateY(10px); }
            20%, 80% { opacity: 1; transform: translateY(0); }
        }

        /* Effets de particules */
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #00d4ff;
            border-radius: 50%;
            animation: particle-float 8s infinite;
            opacity: 0.6;
        }

        @keyframes particle-float {
            0% { transform: translateY(100vh) translateX(0); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
        }

        /* Support du thème clair pour la section Tradeguru */
        body.light-mode .tradeguru-section {
            background: linear-gradient(135deg, rgba(231, 235, 255, 0.8) 0%, rgba(204, 214, 255, 0.6) 50%, rgba(180, 194, 255, 0.7) 100%);
        }

        body.light-mode .section-badge {
            background: linear-gradient(45deg, #7b68ee, #00d4ff);
            color: white;
        }

        body.light-mode .tradeguru-section .section-subtitle {
            color: #3a3b4d;
        }

        body.light-mode .features-list li {
            color: #3a3b4d;
        }

        body.light-mode .chat-bubble {
            background: rgba(255, 255, 255, 0.95);
            color: #3a3b4d;
            border-image: linear-gradient(45deg, #7b68ee, #00d4ff) 1;
        }

        /* Responsive pour la section Tradeguru */
        @media (max-width: 768px) {
            .section-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .visual-content {
                height: 400px;
                margin-top: 2rem;
            }

            .tradeguru-showcase {
                width: 150px;
                height: 150px;
            }

            .chat-bubble {
                max-width: 200px;
                padding: 1rem;
                font-size: 0.9rem;
            }
        }

        /* =============================================
           SUPPORT RTL COMPLET (Hébreu & Arabe)
           ============================================= */

        /* Configuration de base RTL */
        body[dir="rtl"] {
            text-align: right;
            direction: rtl;
        }

        /* Hero section RTL */
        body[dir="rtl"] .hero {
            text-align: center; /* Garder centré pour le hero */
        }

        body[dir="rtl"] .hero-cta {
            flex-direction: row-reverse;
        }

        /* Features section RTL */
        body[dir="rtl"] .features-grid {
            direction: rtl;
        }

        body[dir="rtl"] .feature-content {
            flex-direction: row-reverse;
        }
        
        body[dir="rtl"] .feature-text {
            text-align: right;
        }
        
        body[dir="rtl"] .feature-btn {
            margin-left: auto;
            margin-right: 0;
        }
        
        body[dir="rtl"] .feature-badge-new {
            right: auto;
            left: 18px;
        }

        /* TradeGuru section RTL */
        body[dir="rtl"] .tradeguru-section .section-content {
            flex-direction: row-reverse;
        }

        body[dir="rtl"] .content-text {
            text-align: right;
        }

        body[dir="rtl"] .features-list {
            text-align: right;
        }

        body[dir="rtl"] .features-list li {
            padding-left: 0;
            padding-right: 25px;
        }

        body[dir="rtl"] .features-list li::before {
            left: auto;
            right: 0;
        }

        /* Chat bubbles RTL */
        body[dir="rtl"] .chat-bubble {
            text-align: right;
        }

        body[dir="rtl"] .bubble-1 {
            right: auto;
            left: 20px;
        }

        body[dir="rtl"] .bubble-2 {
            left: auto;
            right: 30px;
        }

        body[dir="rtl"] .bubble-3 {
            right: auto;
            left: 40px;
        }

        body[dir="rtl"] .bubble-4 {
            left: auto;
            right: 15px;
        }

        /* Methods section RTL */
        body[dir="rtl"] .methods-grid {
            direction: rtl;
        }

        body[dir="rtl"] .method-card {
            text-align: right;
        }

        body[dir="rtl"] .method-icon {
            float: right;
            margin-left: 15px;
            margin-right: 0;
        }

        /* Final CTA section RTL */
        body[dir="rtl"] .final-cta-content {
            direction: rtl;
        }

        body[dir="rtl"] .cta-column {
            text-align: right;
        }

        body[dir="rtl"] .cta-icon {
            float: right;
            margin-left: 15px;
            margin-right: 0;
        }

        /* Floating interface RTL */
        body[dir="rtl"] .floating-interface {
            right: auto;
            left: 20px;
        }

        body[dir="rtl"] .tradeguru-call-btn {
            right: auto;
            left: 30px;
        }

        body[dir="rtl"] .chat-header {
            text-align: right;
        }

        body[dir="rtl"] .chat-messages {
            text-align: right;
        }

        body[dir="rtl"] .message-bubble {
            margin-left: 0;
            margin-right: 10px;
        }

        body[dir="rtl"] .chat-input {
            direction: rtl;
        }

        body[dir="rtl"] .input-field {
            text-align: right;
            padding-left: 50px;
            padding-right: 15px;
        }

        body[dir="rtl"] .send-btn {
            left: 10px;
            right: auto;
        }

        /* Responsive RTL */
        @media (max-width: 768px) {
            body[dir="rtl"] .tradeguru-section .section-content {
                flex-direction: column;
            }

            body[dir="rtl"] .final-cta-content {
                flex-direction: column;
            }

            body[dir="rtl"] .hero-cta {
                flex-direction: column;
            }

            body[dir="rtl"] .floating-interface {
                left: 10px;
                right: auto;
            }

            body[dir="rtl"] .tradeguru-call-btn {
                left: 20px;
                right: auto;
            }
        }

        /* Font support pour les langues RTL */
        body[dir="rtl"] {
            font-family: 'Segoe UI', 'Tahoma', 'Arial Unicode MS', sans-serif;
        }

        /* Support pour l'hébreu spécifiquement */
        html[lang="he"] body {
            font-family: 'Segoe UI', 'Arial Hebrew', 'David', sans-serif;
        }

        /* Support pour l'arabe spécifiquement */
        html[lang="ar"] body {
            font-family: 'Segoe UI', 'Arabic UI Text', 'Tahoma', sans-serif;
        }

        /* Features-list RTL support */
        body[dir="rtl"] .features-list li {
            text-align: right;
            padding-left: 0;
            padding-right: 25px;
        }

        body[dir="rtl"] .features-list li::before {
            margin-right: 0;
            margin-left: 1rem;
            float: right;
        }

        /* Support spécifique pour l'hébreu et l'arabe - features-list */
        html[lang="he"] body .features-list li::before,
        html[lang="ar"] body .features-list li::before {
            margin-right: 0 !important;
            margin-left: 1rem !important;
            float: right !important;
        }

        html[lang="he"] body .features-list li,
        html[lang="ar"] body .features-list li {
            text-align: right !important;
            padding-left: 0 !important;
            padding-right: 25px !important;
        }
