  
        /* ==========================================
           🎨 THEME & CORE VARIABLES
           ========================================== */
        :root {
            --bg-main: #f8f9fa;
            --bg-card: #ffffff;
            --primary: #4f46e5;       /* Modern Indigo */
            --primary-light: #e0e7ff; 
            --secondary: #10b981;     /* Soft Emerald */
            --text-dark: #1e293b;     /* Deep Slate */
            --text-muted: #64748b;
            --transition-bounce: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --transition-smooth: all 0.4s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-main);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3 {
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        /* Blurred and animated background shapes */
        .bg-shapes {
            position: absolute;
            width: 100%; height: 100%;
            top: 0; left: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            background: linear-gradient(135deg, var(--primary-light), rgba(224, 231, 255, 0.2));
            border-radius: 50%;
            filter: blur(80px);
            animation: pulseShape 8s infinite alternate ease-in-out;
        }

        .shape-1 { width: 450px; height: 450px; top: -100px; right: -50px; animation-delay: 0s; }
        .shape-2 { width: 550px; height: 550px; top: 50%; left: -150px; animation-delay: 2s; }

        @keyframes pulseShape {
            0% { transform: scale(1) translate(0, 0); }
            100% { transform: scale(1.15) translate(30px, 20px); }
        }

        /* ==========================================
           🧭 NAVIGATION BAR
           ========================================== */
        header {
            position: fixed;
            top: 0; width: 100%;
            padding: 20px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transform: translateY(-100%);
            animation: slideDown 0.8s forwards ease;
        }

        @keyframes slideDown {
            to { transform: translateY(0); }
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-dark);
        }

        .logo span { color: var(--primary); }

        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        nav a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: var(--transition-smooth);
            position: relative;
        }

        nav a:hover, nav a.active { color: var(--primary); }

        nav a::after {
            content: '';
            position: absolute;
            width: 0; height: 3px;
            bottom: -6px; left: 0;
            background-color: var(--primary);
            border-radius: 2px;
            transition: var(--transition-smooth);
        }

        nav a:hover::after, nav a.active::after { width: 100%; }

        .btn-download {
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 10px 20px rgba(79, 70, 229, 0.15);
            transition: var(--transition-bounce);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-download:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 25px rgba(79, 70, 229, 0.3);
            background: #4338ca;
        }

        /* ==========================================
           🚀 HERO SECTION & SMARTPHONE SLIDER
           ========================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 8% 80px;
            gap: 80px;
        }

        .hero-content {
            flex: 1.2;
            opacity: 0;
            transform: translateX(-40px);
            animation: fadeInReveal 1s forwards cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
        }

        @keyframes fadeInReveal {
            to { opacity: 1; transform: translateX(0); }
        }

        .hero h1 {
            font-size: 3.8rem;
            line-height: 1.15;
            color: var(--text-dark);
            margin-bottom: 25px;
        }

        .hero h1 span { color: var(--primary); }

        .hero p {
            color: var(--text-muted);
            font-size: 1.2rem;
            margin-bottom: 40px;
            font-weight: 400;
            max-width: 600px;
        }

        /* Premium Smartphone Frame (iOS Style) */
        .hero-mockup {
            flex: 0.8;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            opacity: 0;
            transform: scale(0.9);
            animation: mockupEntrance 1s forwards cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
        }

        @keyframes mockupEntrance {
            to { opacity: 1; transform: scale(1); }
        }

        .phone-frame {
            width: 320px;
            height: 660px;
            background: #0f172a;
            border: 12px solid #0f172a;
            border-radius: 48px;
            box-shadow: 0 40px 80px rgba(15, 23, 42, 0.25);
            position: relative;
            overflow: hidden;
            transition: var(--transition-bounce);
        }

        .phone-frame:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 50px 90px rgba(15, 23, 42, 0.35);
        }

        .dynamic-island {
            width: 110px; height: 30px;
            background: #000000;
            position: absolute;
            top: 10px; left: 50%;
            transform: translateX(-50%);
            border-radius: 20px;
            z-index: 10;
            transition: var(--transition-smooth);
        }

        /* Carousel System for 6 Screenshots */
        .phone-slider {
            display: flex;
            width: 600%;
            height: 100%;
            transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
        }

        .phone-slide {
            width: 16.666%;
            height: 100%;
            background-size: cover;
            background-position: center;
            border-radius: 36px;
        }

        /* Screenshot Background Bindings */
        .slide-1 { background-image: url('Screenshot_1774528025.png'); }
        .slide-2 { background-image: url('Screenshot_1779358876.png'); }
        .slide-3 { background-image: url('Screenshot_1779219988.png'); }
        .slide-4 { background-image: url('Screenshot_1779220013.png'); }
        .slide-5 { background-image: url('Screenshot_1779358910.png'); }
        .slide-6 { background-image: url('Screenshot_1779360865.png'); }

        /* Slider Indicators */
        .slider-dots {
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 10px; height: 10px;
            background: #cbd5e1;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .dot.active {
            background: var(--primary);
            width: 24px;
            border-radius: 10px;
        }

        /* ==========================================
           🛠️ FEATURES SECTION
           ========================================== */
        .features {
            padding: 100px 8%;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.6rem;
            margin-bottom: 60px;
            color: var(--text-dark);
        }

        .section-title span { color: var(--primary); }

        .grid-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
        }

        .feature-card {
            background: var(--bg-main);
            padding: 35px 25px;
            border-radius: 24px;
            transition: var(--transition-bounce);
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, 0.01);
        }

        .feature-card:hover {
            transform: translateY(-12px);
            background: white;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
            border-color: var(--primary-light);
        }

        .icon-box {
            width: 65px; height: 65px;
            background: white;
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            transition: var(--transition-smooth);
        }

        .feature-card:hover .icon-box {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        .feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* ==========================================
           📲 LIVE EXPERIENCE SIMULATOR
           ========================================== */
        .demo-experience-container {
            display: flex;
            background: #ffffff;
            border-radius: 32px;
            padding: 50px;
            gap: 50px;
            max-width: 1100px;
            margin: 80px auto 20px;
            box-shadow: 0 30px 70px rgba(15, 23, 42, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.02);
            align-items: center;
            font-family: 'Montserrat', sans-serif;
        }

        /* Left Side Controls */
        .demo-controls { flex: 1.2; text-align: left; }
        .demo-badge {
            background: var(--primary-light, #e0e7ff);
            color: var(--primary, #4f46e5);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 20px;
        }
        .demo-controls h2 { font-size: 2.4rem; color: #1e293b; margin-bottom: 15px; font-weight: 800; }
        .demo-controls h2 span { color: var(--primary, #4f46e5); }
        .demo-controls p { color: #64748b; font-size: 1rem; margin-bottom: 35px; }

        /* Vertical Navigation Stack */
        .demo-menu { display: flex; flex-direction: column; gap: 12px; }
        .demo-menu-btn {
            display: flex;
            align-items: center;
            gap: 20px;
            background: #f8f9fa;
            border: 1px solid transparent;
            padding: 14px 22px;
            border-radius: 20px;
            cursor: pointer;
            text-align: left;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            font-family: 'Montserrat', sans-serif;
        }
        .demo-menu-btn:hover {
            background: #f1f5f9;
            transform: translateX(5px);
        }
        .demo-menu-btn.active {
            background: #ffffff;
            border-color: var(--primary-light, #e0e7ff);
            box-shadow: 0 15px 35px rgba(79, 70, 229, 0.08);
        }
        .menu-icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            background: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #64748b;
            font-size: 1.1rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }
        .demo-menu-btn.active .menu-icon {
            background: var(--primary, #4f46e5);
            color: white;
        }
        .menu-text h4 { font-size: 1rem; color: #1e293b; margin-bottom: 2px; font-weight: 700; }
        .menu-text p { font-size: 0.85rem; color: #64748b; margin-bottom: 0; }

        /* Right Side Phone Shell Simulator */
        .demo-simulator { flex: 0.8; display: flex; justify-content: center; }
        .sim-phone-shell {
            width: 290px; height: 580px;
            background: #0f172a;
            border: 10px solid #0f172a;
            border-radius: 40px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }
        .sim-island {
            width: 100px; height: 24px;
            background: #000000;
            position: absolute;
            top: 8px; left: 50%;
            transform: translateX(-50%);
            border-radius: 20px;
            z-index: 15;
        }
        
        /* Screen Image Display Container */
        .sim-screen-stack {
            width: 100%;
            height: 100%;
            position: relative;
            background: #000000;
        }
        .sim-screenshot-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transform: scale(0.96) translateY(8px);
            transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
            border-radius: 30px;
        }
        .sim-screenshot-image.active {
            opacity: 1;
            transform: scale(1) translateY(0);
            pointer-events: auto;
        }

        /* ==========================================
           FOOTER
           ========================================== */
        footer {
            padding: 60px 8% 40px;
            background: white;
            border-top: 1px solid rgba(0,0,0,0.04);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        footer p { color: var(--text-muted); font-size: 0.95rem; }
        .studio-tag span { color: var(--primary); font-weight: 700; }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero { flex-direction: column; text-align: center; padding-top: 120px; gap: 50px; }
            .hero p { margin: 0 auto 40px; }
            header nav { display: none; }
            .demo-experience-container { flex-direction: column; padding: 30px; gap: 35px; }
            .demo-controls { text-align: center; }
        }

        /* ==========================================
           🎨 THEME & CORE VARIABLES (Identique au reste du site)
           ========================================== */
        :root {
            --bg-main: #f8f9fa;
            --bg-card: #ffffff;
            --primary: #4f46e5;       
            --primary-light: #e0e7ff; 
            --text-dark: #1e293b;     
            --text-muted: #64748b;
            --transition-smooth: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 110px;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-main);
            color: var(--text-dark);
            line-height: 1.7;
        }

        /* Background Shapes */
        .bg-shapes {
            position: fixed;
            width: 100%; height: 100%;
            top: 0; left: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }
        .shape {
            position: absolute;
            background: linear-gradient(135deg, var(--primary-light), rgba(224, 231, 255, 0.2));
            border-radius: 50%;
            filter: blur(90px);
        }
        .shape-1 { width: 400px; height: 400px; top: -100px; right: -50px; }
        .shape-2 { width: 500px; height: 500px; bottom: -150px; left: -150px; }

        /* ==========================================
           🧭 HEADER
           ========================================== */
        header {
            position: fixed;
            top: 0; width: 100%;
            padding: 20px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-dark);
            text-decoration: none;
        }
        .logo span { color: var(--primary); }

        .btn-back {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .btn-back:hover { color: var(--primary); }

        /* ==========================================
           🏁 HERO MINI SECTION
           ========================================== */
        .legal-hero {
            padding: 160px 8% 40px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .legal-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-dark);
        }
        .legal-hero h1 span { color: var(--primary); }
        .legal-hero p {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        /* ==========================================
           📦 LAYOUT STRUCTURE (Sidebar + Content)
           ========================================== */
        .legal-container {
            display: flex;
            max-width: 1200px;
            margin: 40px auto 100px;
            padding: 0 4%;
            gap: 50px;
            position: relative;
        }

        /* Sticky Sidebar Navigation */
        .legal-sidebar {
            flex: 0.8;
            position: sticky;
            top: 120px;
            height: fit-content;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .sidebar-link {
            display: block;
            padding: 12px 20px;
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border-left: 3px solid transparent;
            transition: var(--transition-smooth);
            border-radius: 0 8px 8px 0;
        }
        .sidebar-link:hover {
            color: var(--primary);
            background: rgba(79, 70, 229, 0.04);
        }
        .sidebar-link.active {
            color: var(--primary);
            background: var(--primary-light);
            border-left-color: var(--primary);
        }

        /* Core Text Content Area */
        .legal-content {
            flex: 2.2;
            background: var(--bg-card);
            padding: 50px;
            border-radius: 32px;
            box-shadow: 0 30px 70px rgba(15, 23, 42, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.02);
        }
        .legal-section {
            margin-bottom: 50px;
        }
        .legal-section:last-child {
            margin-bottom: 0;
        }
        .legal-section h2 {
            font-size: 1.6rem;
            color: var(--text-dark);
            margin-bottom: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .legal-section h2 i {
            color: var(--primary);
            font-size: 1.3rem;
        }
        .legal-section p {
            color: #475569;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        .legal-section ul {
            margin-left: 20px;
            margin-bottom: 25px;
            color: #475569;
        }
        .legal-section li {
            margin-bottom: 10px;
        }

        /* ==========================================
           FOOTER
           ========================================== */
        footer {
            padding: 40px 8%;
            background: white;
            border-top: 1px solid rgba(0,0,0,0.04);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        footer p { color: var(--text-muted); font-size: 0.95rem; }
        .studio-tag span { color: var(--primary); font-weight: 700; }

        @media (max-width: 992px) {
            .legal-container { flex-direction: column; }
            .legal-sidebar { display: none; }
            .legal-hero h1 { font-size: 2.3rem; }
            .legal-content { padding: 30px; }
        }
    
     
        /* ==========================================
           🎨 THEME & CORE VARIABLES
           ========================================== */
        :root {
            --bg-main: #f8f9fa;
            --bg-card: #ffffff;
            --primary: #4f46e5;       
            --primary-light: #e0e7ff; 
            --text-dark: #1e293b;     
            --text-muted: #64748b;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 110px;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-main);
            color: var(--text-dark);
            line-height: 1.7;
        }

        /* Background Shapes */
        .bg-shapes {
            position: fixed;
            width: 100%; height: 100%;
            top: 0; left: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }
        .shape {
            position: absolute;
            background: linear-gradient(135deg, var(--primary-light), rgba(224, 231, 255, 0.2));
            border-radius: 50%;
            filter: blur(90px);
        }
        .shape-1 { width: 400px; height: 400px; top: -100px; right: -50px; }
        .shape-2 { width: 500px; height: 500px; bottom: -150px; left: -150px; }

        /* ==========================================
           🧭 HEADER
           ========================================== */
        header {
            position: fixed;
            top: 0; width: 100%;
            padding: 20px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-dark);
            text-decoration: none;
        }
        .logo span { color: var(--primary); }

        .btn-back {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .btn-back:hover { color: var(--primary); }

        /* ==========================================
           🏁 HERO MINI SECTION
           ========================================== */
        .legal-hero {
            padding: 160px 8% 40px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .legal-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-dark);
        }
        .legal-hero h1 span { color: var(--primary); }
        .legal-hero p {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        /* ==========================================
           📦 LAYOUT STRUCTURE (Sidebar + Content)
           ========================================== */
        .legal-container {
            display: flex;
            max-width: 1200px;
            margin: 40px auto 100px;
            padding: 0 4%;
            gap: 50px;
            position: relative;
        }

        /* Sticky Sidebar Navigation */
        .legal-sidebar {
            flex: 0.8;
            position: sticky;
            top: 120px;
            height: fit-content;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .sidebar-link {
            display: block;
            padding: 12px 20px;
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border-left: 3px solid transparent;
            transition: var(--transition-smooth);
            border-radius: 0 8px 8px 0;
        }
        .sidebar-link:hover {
            color: var(--primary);
            background: rgba(79, 70, 229, 0.04);
        }
        .sidebar-link.active {
            color: var(--primary);
            background: var(--primary-light);
            border-left-color: var(--primary);
        }

        /* Core FAQ Content Area */
        .legal-content {
            flex: 2.2;
        }
        
        .faq-category-section {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 32px;
            box-shadow: 0 30px 70px rgba(15, 23, 42, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.02);
            margin-bottom: 40px;
        }
        .faq-category-section h2 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 2px solid var(--bg-main);
            padding-bottom: 15px;
        }
        .faq-category-section h2 i {
            color: var(--primary);
        }

        /* ==========================================
           🧩 ACCORDION STYLES (FAQ Items)
           ========================================== */
        .faq-item {
            border-bottom: 1px solid #f1f5f9;
            padding: 18px 0;
        }
        .faq-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .faq-item:first-child {
            padding-top: 0;
        }

        .faq-trigger {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            padding: 5px 0;
            gap: 15px;
        }
        .faq-trigger:hover {
            color: var(--primary);
        }

        .faq-icon {
            font-size: 0.9rem;
            color: var(--text-muted);
            transition: var(--transition-smooth);
            background: var(--bg-main);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .faq-item.open .faq-icon {
            transform: rotate(180deg);
            background: var(--primary-light);
            color: var(--primary);
        }

        .faq-panel {
            max-height: 0;
            overflow: hidden;
            transition: var(--transition-smooth);
        }
        .faq-panel p {
            color: #475569;
            font-size: 0.95rem;
            padding-top: 15px;
            padding-bottom: 5px;
        }

        /* ==========================================
           FOOTER
           ========================================== */
        footer {
            padding: 40px 8%;
            background: white;
            border-top: 1px solid rgba(0,0,0,0.04);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        footer p { color: var(--text-muted); font-size: 0.95rem; }
        .studio-tag span { color: var(--primary); font-weight: 700; }

        @media (max-width: 992px) {
            .legal-container { flex-direction: column; }
            .legal-sidebar { display: none; }
            .legal-hero h1 { font-size: 2.3rem; }
            .faq-category-section { padding: 30px; }
        }
    
        
        /* ==========================================
           🎨 THEME & VARIABLES APPLICATIVES
           ========================================== */
        :root {
            --bg-main: #f8f9fa;
            --bg-card: #ffffff;
            --primary: #4f46e5;       /* Indigo Premium */
            --primary-light: #e0e7ff; 
            --secondary: #10b981;     /* Émeraude pour la réassurance */
            --text-dark: #1e293b;     
            --text-muted: #64748b;
            --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --transition-smooth: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-main);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Formes Lumineuses en Arrière-plan */
        .bg-shapes {
            position: fixed;
            width: 100%; height: 100%;
            top: 0; left: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }
        .shape {
            position: absolute;
            background: linear-gradient(135deg, var(--primary-light), rgba(224, 231, 255, 0.2));
            border-radius: 50%;
            filter: blur(100px);
        }
        .shape-1 { width: 500px; height: 500px; top: -150px; right: -50px; }
        .shape-2 { width: 600px; height: 600px; bottom: -200px; left: -150px; }

        /* ==========================================
           🧭 EN-TÊTE NAVIGATION
           ========================================== */
        header {
            position: fixed;
            top: 0; width: 100%;
            padding: 20px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-dark);
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        .logo span { color: var(--primary); }

        .btn-back-home {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .btn-back-home:hover { color: var(--primary); }

        /* ==========================================
           🚀 SECTION INTRO / HERO
           ========================================== */
        .hero-section {
            padding: 160px 8% 40px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            letter-spacing: -1px;
            color: var(--text-dark);
        }
        .hero-section h1 span { color: var(--primary); }
        .hero-section p {
            color: var(--text-muted);
            font-size: 1.15rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* ==========================================
           🎛️ SELECTEUR D'ONGLETS INTERACTIF
           ========================================== */
        .tab-container {
            display: flex;
            justify-content: center;
            margin: 30px 0 50px;
            gap: 15px;
        }
        .tab-btn {
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(0,0,0,0.05);
            padding: 12px 30px;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-muted);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition-smooth);
            backdrop-filter: blur(10px);
        }
        .tab-btn:hover {
            color: var(--text-dark);
            background: #ffffff;
        }
        .tab-btn.active {
            background: var(--text-dark);
            color: #ffffff;
            border-color: var(--text-dark);
            box-shadow: 0 10px 25px rgba(30, 41, 59, 0.15);
        }

        /* ==========================================
           📦 CARTES DE TÉLÉCHARGEMENT
           ========================================== */
        .download-wrapper {
            max-width: 1100px;
            margin: 0 auto 80px;
            padding: 0 4%;
        }

        /* Système Grid pour l'affichage de base */
        .platform-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 40px;
        }

        .platform-card {
            background: var(--bg-card);
            border-radius: 40px;
            padding: 60px 45px;
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.02);
            box-shadow: 0 30px 60px rgba(15, 23, 42, 0.04);
            transition: var(--transition-bounce);
        }
        .platform-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 45px 90px rgba(15, 23, 42, 0.1);
        }

        .platform-icon {
            font-size: 4.5rem;
            margin-bottom: 25px;
        }
        .apple-brand { color: #000000; }
        .android-brand { color: #3DDC84; }

        .platform-card h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .platform-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 40px;
        }

        /* Boutons Officiels Store en CSS */
        .store-badge {
            display: inline-flex;
            align-items: center;
            background: #000000;
            color: #ffffff;
            padding: 14px 28px;
            border-radius: 16px;
            text-decoration: none;
            transition: transform 0.3s ease, background-color 0.3s ease;
            gap: 14px;
            width: 100%;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        }
        .store-badge:hover {
            transform: scale(1.03);
            background: #1e293b;
        }
        .badge-text { text-align: left; line-height: 1.2; }
        .badge-text span { font-size: 0.7rem; display: block; opacity: 0.7; font-weight: 400; text-transform: uppercase; }
        .badge-text strong { font-size: 1.25rem; font-weight: 600; display: block; }

        /* Bloc QR Code interactif pour PC */
        .qr-section {
            margin-top: 45px;
            padding-top: 35px;
            border-top: 1px dashed #e2e8f0;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
        .qr-holder {
            width: 130px;
            height: 130px;
            background: #f1f5f9;
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid rgba(0,0,0,0.02);
        }
        .qr-holder i { font-size: 5.5rem; color: #cbd5e1; }
        .qr-section span { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.5px; }

        /* ==========================================
           🛡️ SECTION SPÉCIFICATIONS TECHNIQUES
           ========================================== */
        .spec-container {
            text-align: center;
            margin-bottom: 100px;
        }
        .spec-container h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
        .spec-list {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .spec-item { font-size: 0.95rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; font-weight: 500; }
        .spec-item i { color: var(--secondary); font-size: 1.1rem; }

        /* ==========================================
           FOOTER
           ========================================== */
        footer {
            padding: 40px 8%;
            background: #ffffff;
            border-top: 1px solid rgba(0,0,0,0.04);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        footer p { color: var(--text-muted); font-size: 0.95rem; }
        .studio-tag span { color: var(--primary); font-weight: 700; }

        /* Styles Responsives */
        @media (max-width: 768px) {
            .hero-section h1 { font-size: 2.5rem; }
            .platform-grid { grid-template-columns: 1fr; }
            .spec-list { flex-direction: column; gap: 15px; align-items: center; }
        }

        /* ==========================================
           🎨 THEME & CORE VARIABLES
           ========================================== */
        :root {
            --bg-main: #f8f9fa;
            --bg-card: #ffffff;
            --primary: #4f46e5;       
            --primary-light: #e0e7ff; 
            --text-dark: #1e293b;     
            --text-muted: #64748b;
            --transition-smooth: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 110px;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-main);
            color: var(--text-dark);
            line-height: 1.7;
        }

        /* Background Shapes */
        .bg-shapes {
            position: fixed;
            width: 100%; height: 100%;
            top: 0; left: 0;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }
        .shape {
            position: absolute;
            background: linear-gradient(135deg, var(--primary-light), rgba(224, 231, 255, 0.2));
            border-radius: 50%;
            filter: blur(90px);
        }
        .shape-1 { width: 400px; height: 400px; top: -100px; right: -50px; }
        .shape-2 { width: 500px; height: 500px; bottom: -150px; left: -150px; }

        /* ==========================================
           🧭 HEADER
           ========================================== */
        header {
            position: fixed;
            top: 0; width: 100%;
            padding: 20px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-dark);
            text-decoration: none;
        }
        .logo span { color: var(--primary); }

        .btn-back {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .btn-back:hover { color: var(--primary); }

        /* ==========================================
           🏁 HERO MINI SECTION
           ========================================== */
        .legal-hero {
            padding: 160px 8% 40px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .legal-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--text-dark);
        }
        .legal-hero h1 span { color: var(--primary); }
        .legal-hero p {
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        /* ==========================================
           📦 LAYOUT STRUCTURE (Sidebar + Content)
           ========================================== */
        .legal-container {
            display: flex;
            max-width: 1200px;
            margin: 40px auto 100px;
            padding: 0 4%;
            gap: 50px;
            position: relative;
        }

        /* Sticky Sidebar Navigation */
        .legal-sidebar {
            flex: 0.8;
            position: sticky;
            top: 120px;
            height: fit-content;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .sidebar-link {
            display: block;
            padding: 12px 20px;
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border-left: 3px solid transparent;
            transition: var(--transition-smooth);
            border-radius: 0 8px 8px 0;
        }
        .sidebar-link:hover {
            color: var(--primary);
            background: rgba(79, 70, 229, 0.04);
        }
        .sidebar-link.active {
            color: var(--primary);
            background: var(--primary-light);
            border-left-color: var(--primary);
        }

        /* Core Text Content Area */
        .legal-content {
            flex: 2.2;
            background: var(--bg-card);
            padding: 50px;
            border-radius: 32px;
            box-shadow: 0 30px 70px rgba(15, 23, 42, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.02);
        }
        .legal-section {
            margin-bottom: 50px;
        }
        .legal-section:last-child {
            margin-bottom: 0;
        }
        .legal-section h2 {
            font-size: 1.6rem;
            color: var(--text-dark);
            margin-bottom: 20px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .legal-section h2 i {
            color: var(--primary);
            font-size: 1.3rem;
        }
        .legal-section p {
            color: #475569;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        .legal-section ul {
            margin-left: 20px;
            margin-bottom: 25px;
            color: #475569;
        }
        .legal-section li {
            margin-bottom: 10px;
        }

        /* ==========================================
           FOOTER
           ========================================== */
        footer {
            padding: 40px 8%;
            background: white;
            border-top: 1px solid rgba(0,0,0,0.04);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        footer p { color: var(--text-muted); font-size: 0.95rem; }
        .studio-tag span { color: var(--primary); font-weight: 700; }

        @media (max-width: 992px) {
            .legal-container { flex-direction: column; }
            .legal-sidebar { display: none; }
            .legal-hero h1 { font-size: 2.3rem; }
            .legal-content { padding: 30px; }
        }
    
    