﻿/* ============ LANDING PAGE PREMIUM ============ */
    .lp-hero {
        min-height: 100vh; display: flex; flex-direction: column; align-items: center;
        justify-content: center; text-align: center; padding: 80px 20px 60px;
        position: relative; overflow: hidden;
        background: #0a0a0a;
    }
    .lp-hero::before {
        content: ''; position: absolute; inset: 0;
        background: 
            radial-gradient(ellipse 80% 50% at 50% 0%, rgba(229,9,20,0.15) 0%, transparent 60%),
            radial-gradient(ellipse 60% 40% at 20% 80%, rgba(229,9,20,0.05) 0%, transparent 50%),
            radial-gradient(ellipse 60% 40% at 80% 80%, rgba(100,0,200,0.04) 0%, transparent 50%);
        pointer-events: none; animation: heroPulse 8s ease-in-out infinite alternate;
    }
    @keyframes heroPulse {
        0% { opacity: 0.7; } 100% { opacity: 1; }
    }
    .lp-hero::after {
        content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
        background: linear-gradient(to top, #0a0a0a, transparent); pointer-events: none;
    }
    /* Floating particles */
    .lp-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
    .lp-particles span {
        position: absolute; width: 3px; height: 3px; border-radius: 50%;
        background: rgba(229,9,20,0.3); animation: particleFloat linear infinite;
    }
    @keyframes particleFloat {
        0% { transform: translateY(100vh) scale(0); opacity: 0; }
        10% { opacity: 1; }
        90% { opacity: 1; }
        100% { transform: translateY(-10vh) scale(1); opacity: 0; }
    }

    .lp-badge {
        display: inline-flex; align-items: center; gap: 8px;
        background: rgba(229,9,20,0.1); border: 1px solid rgba(229,9,20,0.25);
        padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600;
        color: #e50914; margin-bottom: 28px; position: relative; z-index: 2;
        animation: fadeInUp 0.8s ease-out;
    }
    .lp-badge .pulse-dot {
        width: 8px; height: 8px; border-radius: 50%; background: #e50914;
        animation: pulseDot 2s ease-in-out infinite;
    }
    @keyframes pulseDot {
        0%, 100% { box-shadow: 0 0 0 0 rgba(229,9,20,0.5); }
        50% { box-shadow: 0 0 0 6px rgba(229,9,20,0); }
    }

    .lp-title {
        font-size: clamp(36px, 6vw, 72px); font-weight: 900; line-height: 1.05;
        margin-bottom: 20px; position: relative; z-index: 2;
        animation: fadeInUp 0.8s ease-out 0.1s both;
    }
    .lp-title .accent { color: #e50914; }
    .lp-title .glow {
        text-shadow: 0 0 40px rgba(229,9,20,0.3), 0 0 80px rgba(229,9,20,0.1);
    }
    .lp-subtitle {
        font-size: clamp(16px, 2.5vw, 22px); color: rgba(255,255,255,0.6);
        max-width: 600px; margin: 0 auto 36px; line-height: 1.6; font-weight: 400;
        position: relative; z-index: 2; animation: fadeInUp 0.8s ease-out 0.2s both;
    }
    .lp-cta-group {
        display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
        position: relative; z-index: 2; animation: fadeInUp 0.8s ease-out 0.3s both;
    }
    .lp-btn-primary {
        display: inline-flex; align-items: center; gap: 10px;
        padding: 16px 36px; background: #e50914; color: #fff;
        font-size: 17px; font-weight: 700; border-radius: 12px; border: none;
        cursor: pointer; text-decoration: none;
        transition: all 0.3s ease; position: relative; overflow: hidden;
    }
    .lp-btn-primary:hover { background: #ff1a2a; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(229,9,20,0.4); }
    .lp-btn-primary::after {
        content: ''; position: absolute; inset: 0;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
        transform: translateX(-100%); transition: transform 0.5s;
    }
    .lp-btn-primary:hover::after { transform: translateX(100%); }
    .lp-btn-secondary {
        display: inline-flex; align-items: center; gap: 10px;
        padding: 16px 36px; background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12); color: #fff;
        font-size: 17px; font-weight: 600; border-radius: 12px;
        cursor: pointer; text-decoration: none; transition: all 0.3s ease;
    }
    .lp-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }

    .lp-trust {
        display: flex; align-items: center; gap: 20px; margin-top: 32px;
        position: relative; z-index: 2; animation: fadeInUp 0.8s ease-out 0.4s both;
        flex-wrap: wrap; justify-content: center;
    }
    .lp-trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.45); }
    .lp-trust-item svg { width: 16px; height: 16px; fill: rgba(229,9,20,0.7); }

    /* Stats bar */
    .lp-stats {
        display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
        max-width: 900px; margin: 0 auto; padding: 0 4%;
        position: relative; z-index: 5;
        background: rgba(18,18,18,0.8); backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.06); border-radius: 20px;
        margin-top: -40px;
    }
    .lp-stat {
        padding: 30px 20px; text-align: center;
        border-right: 1px solid rgba(255,255,255,0.05);
    }
    .lp-stat:last-child { border-right: none; }
    .lp-stat-num { font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 4px; }
    .lp-stat-num .red { color: #e50914; }
    .lp-stat-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

    /* Features section */
    .lp-features {
        padding: 100px 4% 80px; position: relative;
    }
    .lp-section-header {
        text-align: center; margin-bottom: 60px;
    }
    .lp-section-tag {
        display: inline-block; font-size: 12px; font-weight: 700;
        text-transform: uppercase; letter-spacing: 2px; color: #e50914;
        margin-bottom: 16px;
    }
    .lp-section-title {
        font-size: clamp(24px, 4vw, 40px); font-weight: 800; margin-bottom: 14px;
    }
    .lp-section-desc {
        font-size: 16px; color: rgba(255,255,255,0.5); max-width: 550px; margin: 0 auto;
    }
    .lp-features-grid {
        display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px; max-width: 1100px; margin: 0 auto;
    }
    .lp-feature {
        background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
        border-radius: 16px; padding: 36px 28px; transition: all 0.4s ease;
        position: relative; overflow: hidden;
    }
    .lp-feature::before {
        content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
        background: linear-gradient(90deg, transparent, #e50914, transparent);
        opacity: 0; transition: opacity 0.4s;
    }
    .lp-feature:hover { transform: translateY(-8px); border-color: rgba(229,9,20,0.2); background: rgba(229,9,20,0.03); }
    .lp-feature:hover::before { opacity: 1; }
    .lp-feature-icon {
        width: 56px; height: 56px; border-radius: 14px;
        background: rgba(229,9,20,0.1); display: flex; align-items: center; justify-content: center;
        font-size: 28px; margin-bottom: 20px;
    }
    .lp-feature h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
    .lp-feature p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

    /* How it works */
    .lp-steps {
        padding: 80px 4%; background: rgba(229,9,20,0.02);
        border-top: 1px solid rgba(255,255,255,0.04);
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .lp-steps-grid {
        display: grid; grid-template-columns: repeat(3, 1fr);
        gap: 32px; max-width: 900px; margin: 0 auto;
    }
    .lp-step { text-align: center; padding: 24px 16px; }
    .lp-step-num {
        width: 56px; height: 56px; border-radius: 50%;
        background: linear-gradient(135deg, #e50914, #b20710);
        display: inline-flex; align-items: center; justify-content: center;
        font-size: 22px; font-weight: 900; margin-bottom: 20px;
        box-shadow: 0 4px 20px rgba(229,9,20,0.3);
    }
    .lp-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
    .lp-step p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }

    /* Devices */
    .lp-devices {
        padding: 80px 4%; text-align: center;
    }
    .lp-devices-row {
        display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
        max-width: 800px; margin: 0 auto;
    }
    .lp-device {
        display: flex; flex-direction: column; align-items: center; gap: 12px; 
        width: 120px; padding: 24px 16px;
        background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
        border-radius: 16px; transition: all 0.3s;
    }
    .lp-device:hover { border-color: rgba(229,9,20,0.25); transform: translateY(-4px); }
    .lp-device svg { width: 40px; height: 40px; fill: rgba(255,255,255,0.7); }
    .lp-device span { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 600; }

    /* Plan section */
    .lp-plan {
        padding: 80px 4%; text-align: center;
    }
    .lp-plan-card {
        max-width: 480px; margin: 0 auto; padding: 48px 36px;
        background: linear-gradient(145deg, rgba(229,9,20,0.08), rgba(20,20,20,0.95));
        border: 1px solid rgba(229,9,20,0.2); border-radius: 24px;
        position: relative; overflow: hidden;
    }
    .lp-plan-card::before {
        content: ''; position: absolute; top: -1px; left: -1px; right: -1px; height: 3px;
        background: linear-gradient(90deg, transparent, #e50914, #ff1a2a, #e50914, transparent);
    }
    .lp-plan-popular {
        display: inline-block; background: #e50914; color: #fff;
        padding: 4px 16px; border-radius: 20px; font-size: 11px; font-weight: 700;
        text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
    }
    .lp-plan-name { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
    .lp-plan-price {
        font-size: 52px; font-weight: 900; margin-bottom: 4px;
    }
    .lp-plan-price span { font-size: 18px; font-weight: 500; color: rgba(255,255,255,0.5); }
    .lp-plan-period { font-size: 14px; color: rgba(255,255,255,0.4); margin-bottom: 28px; }
    .lp-plan-features { list-style: none; padding: 0; margin: 0 0 32px; text-align: left; }
    .lp-plan-features li {
        padding: 10px 0; font-size: 15px; color: rgba(255,255,255,0.75);
        border-bottom: 1px solid rgba(255,255,255,0.05);
        display: flex; align-items: center; gap: 12px;
    }
    .lp-plan-features li:last-child { border-bottom: none; }
    .lp-plan-features li::before {
        content: 'âœ“'; display: inline-flex; align-items: center; justify-content: center;
        width: 22px; height: 22px; border-radius: 50%;
        background: rgba(229,9,20,0.15); color: #e50914; font-size: 12px; font-weight: 700;
        flex-shrink: 0;
    }

    /* FAQ */
    .lp-faq { padding: 80px 4%; }
    .lp-faq-list { max-width: 700px; margin: 0 auto; }
    .lp-faq-item {
        border: 1px solid rgba(255,255,255,0.06); border-radius: 12px;
        margin-bottom: 10px; overflow: hidden; transition: all 0.3s;
    }
    .lp-faq-item:hover { border-color: rgba(255,255,255,0.1); }
    .lp-faq-q {
        padding: 18px 22px; cursor: pointer; display: flex;
        justify-content: space-between; align-items: center;
        font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.85);
        background: rgba(255,255,255,0.02); transition: all 0.3s;
    }
    .lp-faq-q:hover { background: rgba(255,255,255,0.04); }
    .lp-faq-q .arrow { font-size: 18px; color: rgba(255,255,255,0.3); transition: transform 0.3s; }
    .lp-faq-item.open .lp-faq-q .arrow { transform: rotate(180deg); color: #e50914; }
    .lp-faq-a {
        max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    }
    .lp-faq-a-inner {
        padding: 0 22px 18px; font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7;
    }
    .lp-faq-item.open .lp-faq-a { max-height: 300px; }

    /* Final CTA */
    .lp-final-cta {
        padding: 80px 4%; text-align: center;
        background: radial-gradient(ellipse at center, rgba(229,9,20,0.08) 0%, transparent 60%);
    }
    .lp-final-cta h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 800; margin-bottom: 14px; }
    .lp-final-cta p { font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 32px; }

    /* Footer redesign */
    .lp-footer {
        padding: 60px 4% 30px; border-top: 1px solid rgba(255,255,255,0.06);
        background: rgba(0,0,0,0.3);
    }
    .lp-footer-inner { max-width: 1100px; margin: 0 auto; }
    .lp-footer-top {
        display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px; margin-bottom: 40px;
    }
    .lp-footer-brand .logo { font-size: 28px; font-weight: 900; margin-bottom: 12px; }
    .lp-footer-brand .logo span { color: #fff; }
    .lp-footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 280px; }
    .lp-footer-col h4 {
        font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
        color: rgba(255,255,255,0.6); margin-bottom: 16px;
    }
    .lp-footer-col a {
        display: block; font-size: 13px; color: rgba(255,255,255,0.35);
        padding: 5px 0; transition: color 0.2s; text-decoration: none;
    }
    .lp-footer-col a:hover { color: #e50914; }
    .lp-footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px;
        display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
    }
    .lp-footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
    .lp-footer-social { display: flex; gap: 12px; }
    .lp-footer-social a {
        width: 36px; height: 36px; border-radius: 50%;
        background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
        display: flex; align-items: center; justify-content: center;
        transition: all 0.3s; text-decoration: none;
    }
    .lp-footer-social a:hover { background: rgba(229,9,20,0.15); border-color: rgba(229,9,20,0.3); }
    .lp-footer-social a svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.5); }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* ---- Mobile responsive ---- */
    @media (max-width: 768px) {
        .lp-stats { grid-template-columns: repeat(2, 1fr); margin-top: -20px; border-radius: 14px; }
        .lp-stat { padding: 20px 12px; }
        .lp-stat-num { font-size: 24px; }
        .lp-stat-label { font-size: 10px; }
        .lp-steps-grid { grid-template-columns: 1fr; gap: 20px; }
        .lp-devices-row { gap: 16px; }
        .lp-device { width: 90px; padding: 16px 10px; }
        .lp-device svg { width: 30px; height: 30px; }
        .lp-device span { font-size: 11px; }
        .lp-footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
        .lp-plan-card { padding: 32px 24px; }
        .lp-plan-price { font-size: 42px; }
        .lp-btn-primary, .lp-btn-secondary { padding: 14px 28px; font-size: 15px; }
        .lp-footer-bottom { justify-content: center; text-align: center; }
    }
    @media (max-width: 480px) {
        .lp-footer-top { grid-template-columns: 1fr; gap: 20px; }
    }
