/* === VARIABLES & RESET === */
        :root {
            --primary: #7A0CFF;
            --primary-dark: #5C11FF;
            --primary-light: #AD02FF;
            --bg-dark: #0f0f1a;
            --bg-card: #1a1a2e;
            --bg-card-hover: #252542;
            --text-primary: #ffffff;
            --text-secondary: #b8b8d1;
            --text-muted: #6b6b8a;
            --border: #2a2a4a;
            --success: #00d47a;
            --warning: #ffb84d;
            --error: #ff4d6a;
            --shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
            --shadow-hover: 0 12px 40px rgba(122, 12, 255, 0.25);
            --radius: 16px;
            --transition: all 0.25s ease;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        html { scroll-behavior: smooth; }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* === UTILITIES === */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 32px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            box-shadow: 0 4px 14px rgba(122, 12, 255, 0.4);
        }
        
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        
        .btn:active { transform: translateY(0); }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }
        
        .section { padding: 100px 0; }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #fff, var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-title p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* === HEADER === */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            background: rgba(15, 15, 26, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }
        
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 1.4rem;
            color: white;
            text-decoration: none;
        }
        
        .logo-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }
        
        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-links a:hover { color: var(--primary-light); }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-light);
            transition: var(--transition);
        }
        
        .nav-links a:hover::after { width: 100%; }
        
        .header-cta { display: flex; gap: 12px; }
        
        .mobile-toggle { display: none; font-size: 1.5rem; background: none; border: none; color: white; cursor: pointer; }
        
        /* === HERO === */
        .hero {
            padding: 180px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 1200px;
            height: 1200px;
            background: radial-gradient(circle, rgba(122, 12, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(122, 12, 255, 0.15);
            border: 1px solid var(--primary);
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--primary-light);
            margin-bottom: 24px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero h1 span {
            background: linear-gradient(135deg, var(--primary-light), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        .hero-cta {
            display: flex;
            gap: 16px;
            justify-content: center;
            margin-bottom: 60px;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .stat {
            text-align: center;
        }
        
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-light);
        }
        
        .stat-label {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        
        /* === FEATURES === */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }
        
        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px;
            transition: var(--transition);
        }
        
        .feature-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
            box-shadow: var(--shadow-hover);
        }
        
        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .feature-card p { color: var(--text-secondary); }
        
        /* === HOW IT WORKS === */
        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            counter-reset: step;
        }
        
        .step {
            position: relative;
            padding-left: 80px;
        }
        
        .step::before {
            counter-increment: step;
            content: counter(step);
            position: absolute;
            left: 0;
            top: 0;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.4rem;
            color: white;
        }
        
        .step h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .step p { color: var(--text-secondary); }
        
        /* === PRICING === */
        .pricing-card {
            max-width: 500px;
            margin: 0 auto;
            background: var(--bg-card);
            border: 2px solid var(--primary);
            border-radius: var(--radius);
            padding: 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card::before {
            content: 'RECOMMANDÉ';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--primary-light);
            color: white;
            padding: 6px 50px;
            font-size: 0.8rem;
            font-weight: 600;
            transform: rotate(45deg);
        }
        
        .pricing-header { margin-bottom: 32px; }
        
        .pricing-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .pricing-price {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, var(--primary-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .pricing-price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-secondary);
            -webkit-text-fill-color: var(--text-secondary);
        }
        
        .pricing-features {
            list-style: none;
            margin: 32px 0;
            text-align: left;
        }
        
        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-secondary);
        }
        
        .pricing-features li::before {
            content: '✓';
            color: var(--success);
            font-weight: 700;
        }
        
        .pricing-cta { margin-top: 32px; }
        
        .pricing-guarantee {
            margin-top: 24px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        
        /* === FAQ === */
        .faq { max-width: 800px; margin: 0 auto; }
        
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 16px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px 24px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .faq-question:hover { background: var(--bg-card-hover); }
        
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary-light);
            transition: var(--transition);
        }
        
        .faq-item.active .faq-question::after { content: '−'; }
        
        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: var(--text-secondary);
        }
        
        .faq-item.active .faq-answer {
            padding: 0 24px 20px;
            max-height: 500px;
        }
        
        /* === CTA SECTION === */
        .cta-section {
            background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        
        .cta-content {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            color: var(--text-secondary);
            margin-bottom: 32px;
            font-size: 1.1rem;
        }
        
        /* === FOOTER === */
        footer {
            padding: 60px 0 30px;
            border-top: 1px solid var(--border);
            text-align: center;
        }
        
        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 24px;
            color: white;
            text-decoration: none;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover { color: var(--primary-light); }
        
        .footer-copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        /* === RESPONSIVE === */
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            .section { padding: 80px 0; }
        }
        
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-toggle { display: block; }
            .hero { padding: 140px 0 80px; }
            .hero h1 { font-size: 2.3rem; }
            .hero-cta { flex-direction: column; align-items: center; }
            .pricing-card { padding: 32px 24px; }
            .pricing-price { font-size: 2.8rem; }
            .header-cta { display: none; }
        }
        
        /* === ANIMATIONS === */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animate { animation: fadeInUp 0.6s ease forwards; }
        .animate-delay-1 { animation-delay: 0.1s; }
        .animate-delay-2 { animation-delay: 0.2s; }
        .animate-delay-3 { animation-delay: 0.3s; }