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

        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            background: #0D0D0D;
            color: #FFFFFF;
            overflow-x: hidden;
        }

        /* ── NAVBAR ── */
        nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            background: rgba(13,13,13,0.97);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #1a1a1a;
            z-index: 100;
            padding: 0 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }
        .logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
        .logo-img { height: 34px; width: 34px; display: block; }
        .logo-word { font-size: 22px; font-weight: 900; color: #E50914; letter-spacing: 2px; line-height: 1; }
        .logo-word span { color: #fff; }
        nav a { color: #888; text-decoration: none; margin-left: 32px; font-size: 14px; transition: color .2s; }
        nav a:hover { color: #fff; }
        .nav-download {
            background: #E50914; color: #fff !important;
            padding: 8px 20px; border-radius: 4px;
            font-weight: 700; margin-left: 32px !important;
            transition: background .2s !important;
        }
        .nav-download:hover { background: #ff1a27 !important; }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 48px 60px;
            background: radial-gradient(ellipse at 70% 50%, #1a0406 0%, #0D0D0D 60%);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -200px; right: -200px;
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(229,9,20,0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-content {
            max-width: 560px;
            z-index: 1;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(229,9,20,0.15);
            border: 1px solid rgba(229,9,20,0.4);
            color: #E50914;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 24px;
            text-transform: uppercase;
        }
        .hero h1 {
            font-size: 56px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
        }
        .hero h1 .red { color: #E50914; }
        .hero p {
            font-size: 18px;
            color: #999;
            line-height: 1.7;
            margin-bottom: 36px;
            max-width: 480px;
        }
        .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
        .btn-primary {
            display: inline-flex; align-items: center; gap: 10px;
            background: #E50914; color: #fff;
            padding: 16px 32px; border-radius: 6px;
            font-size: 16px; font-weight: 700;
            text-decoration: none;
            transition: all .2s;
            box-shadow: 0 4px 24px rgba(229,9,20,0.3);
        }
        .btn-primary:hover { background: #ff1a27; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(229,9,20,0.4); }
        .btn-secondary {
            display: inline-flex; align-items: center; gap: 10px;
            background: transparent; color: #fff;
            padding: 16px 32px; border-radius: 6px;
            font-size: 16px; font-weight: 600;
            text-decoration: none;
            border: 1px solid #333;
            transition: all .2s;
        }
        .btn-secondary:hover { border-color: #555; background: #1a1a1a; }

        /* Mockup TV */
        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
            margin-left: 60px;
        }
        .tv-frame {
            width: 460px;
            background: #111;
            border-radius: 16px;
            border: 3px solid #222;
            box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 0 1px #333;
            overflow: hidden;
            position: relative;
        }
        .tv-screen {
            background: #0d0d0d;
            aspect-ratio: 16/9;
            position: relative;
            overflow: hidden;
        }
        .tv-ui {
            width: 100%;
            height: 100%;
            display: flex;
        }
        .tv-sidebar {
            width: 52px;
            background: #111;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 12px 0;
            gap: 12px;
        }
        .tv-logo-s {
            font-size: 14px;
            font-weight: 900;
            color: #E50914;
            margin-bottom: 6px;
        }
        .tv-nav-item {
            width: 36px; height: 36px;
            border-radius: 8px;
            display: flex; flex-direction: column;
            align-items: center; justify-content: center;
            font-size: 14px;
            color: #555;
            gap: 2px;
        }
        .tv-nav-item.active { background: rgba(229,9,20,0.15); color: #E50914; border-left: 2px solid #E50914; }
        .tv-nav-dot { width: 4px; height: 4px; background: currentColor; border-radius: 50%; }
        .tv-content { flex: 1; padding: 8px; }
        .tv-banner {
            background: linear-gradient(135deg, #1a0608, #0d0d0d);
            border-radius: 6px;
            height: 70px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            padding: 0 12px;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }
        .tv-banner::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(90deg, rgba(229,9,20,0.05) 0%, transparent 60%);
        }
        .tv-play-circle {
            width: 30px; height: 30px;
            background: #E50914;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 12px;
        }
        .tv-banner-text { flex: 1; }
        .tv-banner-title { font-size: 9px; font-weight: 700; color: #fff; margin-bottom: 2px; }
        .tv-banner-sub { font-size: 7px; color: #666; }
        .tv-row-title { font-size: 7px; color: #888; margin-bottom: 5px; font-weight: 600; letter-spacing: 1px; }
        .tv-cards { display: flex; gap: 5px; margin-bottom: 8px; }
        .tv-card {
            flex: 1; aspect-ratio: 2/3;
            border-radius: 4px;
            background: #1e1e1e;
            position: relative;
            overflow: hidden;
        }
        .tv-card:nth-child(1) { background: linear-gradient(135deg, #1a1a2e, #16213e); }
        .tv-card:nth-child(2) { background: linear-gradient(135deg, #1a0a0a, #2d1515); }
        .tv-card:nth-child(3) { background: linear-gradient(135deg, #0a1a0a, #152d15); }
        .tv-card:nth-child(4) { background: linear-gradient(135deg, #1a1500, #2d2510); }
        .tv-card.focused { border: 1px solid #E50914; box-shadow: 0 0 8px rgba(229,9,20,0.4); }
        .tv-card-badge {
            position: absolute; top: 3px; left: 3px;
            background: rgba(0,188,212,0.9);
            color: #fff; font-size: 5px; font-weight: 700;
            padding: 1px 3px; border-radius: 2px;
        }
        .tv-status-bar {
            position: absolute; bottom: 0; left: 0; right: 0;
            background: rgba(0,0,0,0.8);
            padding: 4px 8px;
            display: flex; justify-content: space-between; align-items: center;
            font-size: 6px; color: #666;
        }
        .tv-live-dot { color: #E50914; font-size: 7px; }
        .tv-stand {
            width: 100px; height: 8px;
            background: #1a1a1a;
            margin: 0 auto;
            border-radius: 0 0 4px 4px;
        }
        .tv-base {
            width: 160px; height: 5px;
            background: #181818;
            margin: 0 auto;
            border-radius: 3px;
        }

        /* ── STATS ── */
        .stats {
            padding: 48px;
            background: #111;
            border-top: 1px solid #1a1a1a;
            border-bottom: 1px solid #1a1a1a;
            display: flex;
            justify-content: center;
            gap: 80px;
            flex-wrap: wrap;
        }
        .stat { text-align: center; }
        .stat-num { font-size: 40px; font-weight: 900; color: #E50914; }
        .stat-label { font-size: 13px; color: #666; margin-top: 4px; }

        /* ── FEATURES ── */
        .section { padding: 80px 48px; max-width: 1100px; margin: 0 auto; }
        .section-label {
            font-size: 12px; font-weight: 700; letter-spacing: 3px;
            color: #E50914; text-transform: uppercase; margin-bottom: 12px;
        }
        .section-title { font-size: 38px; font-weight: 900; margin-bottom: 16px; }
        .section-sub { font-size: 16px; color: #666; margin-bottom: 52px; max-width: 520px; }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .feature-card {
            background: #111;
            border: 1px solid #1e1e1e;
            border-radius: 12px;
            padding: 28px 24px;
            transition: all .25s;
        }
        .feature-card:hover { border-color: #333; transform: translateY(-3px); background: #161616; }
        .feature-icon { font-size: 32px; margin-bottom: 16px; }
        .feature-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
        .feature-desc { font-size: 14px; color: #666; line-height: 1.6; }

        /* ── COMPAT ── */
        .compat { padding: 60px 48px; background: #0a0a0a; text-align: center; }
        .compat h2 { font-size: 30px; font-weight: 900; margin-bottom: 12px; }
        .compat p { color: #666; margin-bottom: 40px; }
        .compat-logos {
            display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
        }
        .compat-item {
            background: #111; border: 1px solid #1e1e1e;
            border-radius: 12px; padding: 20px 32px;
            display: flex; align-items: center; gap: 12px;
            font-size: 15px; font-weight: 600;
        }
        .compat-item span { font-size: 28px; }

        /* ── HOW ── */
        .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .step {
            text-align: center;
            padding: 32px 24px;
            position: relative;
        }
        .step-num {
            width: 48px; height: 48px;
            background: rgba(229,9,20,0.15);
            border: 2px solid rgba(229,9,20,0.4);
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 18px; font-weight: 900; color: #E50914;
            margin: 0 auto 20px;
        }
        .step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
        .step p { color: #666; font-size: 14px; line-height: 1.6; }
        .step-arrow {
            position: absolute; top: 44px; right: -12px;
            color: #333; font-size: 24px;
        }

        /* ── CTA ── */
        .cta {
            padding: 80px 48px;
            text-align: center;
            background: radial-gradient(ellipse at center, #1a0406 0%, #0D0D0D 65%);
            border-top: 1px solid #1a1a1a;
        }
        .cta h2 { font-size: 42px; font-weight: 900; margin-bottom: 16px; }
        .cta p { color: #888; font-size: 17px; margin-bottom: 36px; }
        .cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
        .download-info { margin-top: 16px; font-size: 12px; color: #aaa; }

        /* ── FOOTER ── */
        footer {
            padding: 32px 48px;
            border-top: 1px solid #1a1a1a;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        footer p { color: #444; font-size: 13px; }
        footer a { color: #555; text-decoration: none; margin-left: 20px; font-size: 13px; }
        footer a:hover { color: #888; }

        /* ── RESPONSIVE ── */

        /* Tablet landscape */
        @media (max-width: 1024px) {
            .hero { padding: 100px 32px 60px; }
            .hero-visual { margin-left: 30px; }
            .tv-frame { width: 380px; }
            .section { padding: 60px 32px; }
            .stats { padding: 40px 32px; gap: 40px; }
            .compat { padding: 50px 32px; }
            .cta { padding: 60px 32px; }
            .steps { grid-template-columns: repeat(2, 1fr); }
            .step-arrow { display: none; }
        }

        /* Tablet portrait */
        @media (max-width: 768px) {
            nav { padding: 0 20px; height: 56px; }
            nav .nav-right a:not(.nav-download) { display: none; }
            .nav-download { padding: 6px 14px; font-size: 12px; margin-left: 16px !important; }
            .logo-word { font-size: 18px; }
            .logo-img { height: 28px; width: 28px; }

            .hero { flex-direction: column; text-align: center; padding: 90px 24px 40px; min-height: auto; }
            .hero-visual { margin-left: 0; margin-top: 32px; }
            .hero h1 { font-size: 36px; }
            .hero p { font-size: 16px; margin: 0 auto 28px; }
            .hero-buttons { justify-content: center; }
            .hero-badge { font-size: 10px; padding: 5px 12px; }
            .btn-primary, .btn-secondary { padding: 14px 24px; font-size: 14px; }

            .tv-frame { width: 320px; }

            .stats { flex-direction: row; flex-wrap: wrap; gap: 24px; padding: 32px 24px; justify-content: center; }
            .stat { min-width: 120px; }
            .stat-num { font-size: 30px; }
            .stat-label { font-size: 11px; }

            .section { padding: 50px 24px; }
            .section-title { font-size: 28px; }
            .section-sub { font-size: 14px; }

            .features-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
            .feature-card { padding: 20px 18px; }
            .feature-icon { font-size: 26px; margin-bottom: 12px; }
            .feature-title { font-size: 15px; }
            .feature-desc { font-size: 13px; }

            .compat { padding: 40px 24px; }
            .compat h2 { font-size: 24px; }
            .compat-logos { gap: 16px; }
            .compat-item { padding: 14px 20px; font-size: 13px; }
            .compat-item span { font-size: 22px; }

            .steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .step { padding: 24px 16px; }
            .step-arrow { display: none; }
            .step-num { width: 40px; height: 40px; font-size: 16px; }
            .step h3 { font-size: 16px; }

            .cta { padding: 50px 24px; }
            .cta h2 { font-size: 30px; }
            .cta p { font-size: 15px; }

            footer { padding: 24px; flex-direction: column; text-align: center; gap: 12px; }
        }

        /* Mobile */
        @media (max-width: 480px) {
            nav { padding: 0 16px; height: 52px; }
            .logo-word { font-size: 16px; letter-spacing: 1px; }
            .logo-img { height: 26px; width: 26px; }
            .nav-download { padding: 5px 12px; font-size: 11px; }

            .hero { padding: 80px 16px 32px; }
            .hero h1 { font-size: 28px; }
            .hero p { font-size: 14px; line-height: 1.6; }
            .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
            .btn-primary, .btn-secondary { width: 100%; text-align: center; padding: 14px 20px; font-size: 14px; }

            .tv-frame { width: 280px; }
            .tv-sidebar { width: 40px; padding: 8px 0; gap: 8px; }
            .tv-nav-item { width: 28px; height: 28px; font-size: 11px; }
            .tv-logo-s { font-size: 11px; }
            .tv-banner { height: 55px; padding: 0 8px; }
            .tv-banner-title { font-size: 8px; }
            .tv-banner-sub { font-size: 6px; }
            .tv-play-circle { width: 24px; height: 24px; font-size: 10px; }
            .tv-row-title { font-size: 6px; }
            .tv-status-bar { font-size: 5px; padding: 3px 6px; }

            .stats { gap: 16px; padding: 24px 16px; }
            .stat { min-width: 100px; }
            .stat-num { font-size: 24px; }
            .stat-label { font-size: 10px; }

            .section { padding: 40px 16px; }
            .section-label { font-size: 11px; letter-spacing: 2px; }
            .section-title { font-size: 24px; line-height: 1.2; }
            .section-sub { font-size: 13px; margin-bottom: 32px; }

            .features-grid { grid-template-columns: 1fr; gap: 12px; }
            .feature-card { padding: 18px 16px; }
            .feature-icon { font-size: 24px; margin-bottom: 10px; }
            .feature-title { font-size: 15px; }
            .feature-desc { font-size: 12px; }

            .compat { padding: 32px 16px; }
            .compat h2 { font-size: 22px; }
            .compat p { font-size: 13px; }
            .compat-logos { flex-direction: column; gap: 10px; align-items: center; }
            .compat-item { width: 100%; max-width: 280px; justify-content: center; padding: 12px 16px; font-size: 13px; }

            .steps { grid-template-columns: 1fr; gap: 12px; }
            .step { padding: 20px 16px; }
            .step-num { width: 36px; height: 36px; font-size: 14px; margin-bottom: 14px; }
            .step h3 { font-size: 15px; }
            .step p { font-size: 12px; }

            .cta { padding: 40px 16px; }
            .cta h2 { font-size: 24px; }
            .cta p { font-size: 14px; }
            .download-info { font-size: 11px; }

            footer { padding: 20px 16px; }
            footer p { font-size: 11px; }
            footer a { font-size: 11px; margin-left: 12px; }
        }

        /* ── LANG SWITCHER ── */
        .nav-right { display: flex; align-items: center; }
        .lang-switcher { display: inline-flex; gap: 3px; margin-left: 28px; border: 1px solid #222; border-radius: 5px; padding: 2px; background: rgba(255,255,255,0.03); }
        .lang-btn {
            background: transparent; border: none; color: #555;
            padding: 3px 8px; border-radius: 3px; cursor: pointer;
            font-size: 11px; font-weight: 700; letter-spacing: 0.5px; transition: all .2s;
        }
        .lang-btn:hover { color: #fff; background: rgba(255,255,255,0.08); }
        .lang-btn.active {
            background: #E50914; color: #fff;
        }

        /* Pricing responsive */
        @media (max-width: 900px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }
        @media (max-width: 520px) {
            .pricing-grid {
                grid-template-columns: 1fr !important;
                gap: 14px !important;
            }
        }

/* Pages légales (Phase 5) */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 60px 24px 80px; color: #cfcfcf; line-height: 1.75; }
.legal-title { font-size: 34px; font-weight: 900; color: #fff; margin-bottom: 10px; }
.legal-updated { color: #777; font-size: 13px; margin: 0 0 4px; }
.legal-operator { color: #9a9a9a; font-size: 14px; margin: 0 0 28px; padding-bottom: 20px; border-bottom: 1px solid #1e1e1e; }
.legal-operator a, .legal-body a { color: #ff4d57; }
.legal-body h2 { color: #fff; font-size: 20px; font-weight: 800; margin: 32px 0 10px; }
.legal-body p { margin-bottom: 14px; }
.legal-body ul { margin: 0 0 14px 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: #ededed; }
.legal-back { margin-top: 44px; }
.legal-back a { color: #ff4d57; text-decoration: none; font-weight: 600; }
@media (max-width: 600px) { .legal-wrap { padding: 40px 18px 60px; } .legal-title { font-size: 27px; } }
