﻿        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            overflow-x: hidden;
            max-width: 100%;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: #0F1923;
            color: #E5E7EB;
            overflow-x: hidden;
        }

        /* Background Pattern */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 152, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
            z-index: -1;
        }

        .bg-glow{position:fixed;border-radius:50%;filter:blur(50px);opacity:.35;pointer-events:none;will-change:transform;transform:translateZ(0);animation:bgFloat 12s ease-in-out infinite}
        .bg-glow.g1{width:480px;height:480px;background:radial-gradient(circle,#FF9800,transparent);top:-120px;left:-120px;animation-delay:0s}
        .bg-glow.g2{width:380px;height:380px;background:radial-gradient(circle,#F57C00,transparent);bottom:-100px;right:-100px;animation-delay:3s}
        .bg-glow.g3{display:none}
        @keyframes bgFloat{0%,100%{transform:translate3d(0,0,0) scale(1)}50%{transform:translate3d(20px,-15px,0) scale(1.05)}}
        @media (max-width: 768px){.bg-glow{filter:blur(35px);opacity:.25;animation:none}}
        @media (prefers-reduced-motion: reduce){.bg-glow{animation:none}}
        .bg-grid{position:fixed;inset:0;background-image:linear-gradient(rgba(255,255,255,.015) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.015) 1px,transparent 1px);background-size:50px 50px;z-index:0;pointer-events:none;will-change:transform}

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 6%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(15, 25, 35, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 152, 0, 0.1);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .logo {
            font-size: 26px;
            font-weight: 900;
            background: linear-gradient(135deg, #F97316, #FB923C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo i {
            background: linear-gradient(135deg, #F97316, #FB923C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-menu a {
            color: rgba(255,255,255,.8);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #F97316, #FB923C);
            transition: width 0.3s;
        }

        .nav-menu a:hover {
            color: #FF9800;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-btn {
            padding: 12px 28px;
            background: linear-gradient(135deg, #F97316, #EA580C);
            border: none;
            border-radius: 8px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
        }

        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
        }

        /* Hero */
        .hero {
            padding: 140px 6% 100px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            position: relative;
            min-height: 100vh;
            background: transparent;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            padding: 10px 24px;
            background: linear-gradient(135deg, rgba(255, 152, 0, 0.15), rgba(255, 152, 0, 0.08));
            border: 1px solid rgba(255, 152, 0, 0.3);
            border-radius: 50px;
            color: #FF9800;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 28px;
        }

        .hero h1 {
            font-size: 68px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -2px;
            color: #fff;
        }

        .hero h1 span {
            background: linear-gradient(135deg, #F97316, #FB923C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 19px;
            color: rgba(255,255,255,.6);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* LED Screen Mockup */
        .hero-screen {
            flex: 1;
            position: relative;
            z-index: 1;
            max-width: 650px;
        }

        .led-frame {
            position: relative;
            background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
            border-radius: 24px;
            padding: 20px;
            box-shadow: 
                0 0 0 1px rgba(255, 152, 0, 0.2),
                0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 100px rgba(255, 152, 0, 0.08);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .led-frame::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, #F97316, #FB923C, #F97316);
            background-size: 200% 200%;
            border-radius: 24px;
            z-index: -1;
            animation: gradientRotate 3s ease infinite;
            opacity: 0.3;
        }

        @keyframes gradientRotate {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .led-screen {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            background: #000;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: inset 0 0 50px rgba(249, 115, 22, 0.2);
        }

        .led-screen::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    0deg,
                    rgba(0, 0, 0, 0.05) 0px,
                    transparent 1px,
                    transparent 2px,
                    rgba(0, 0, 0, 0.05) 3px
                );
            pointer-events: none;
            z-index: 2;
        }

        .led-screen video {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #000;
        }

        .screen-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
            animation: pulse 3s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
        }

        .led-controls {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 20px;
        }

        .led-dot {
            width: 10px;
            height: 10px;
            background: rgba(249, 115, 22, 0.2);
            border-radius: 50%;
            transition: all 0.3s;
        }

        .led-dot.active {
            background: linear-gradient(135deg, #F97316, #FB923C);
            box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
        }

        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(251, 146, 60, 0.95));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 3;
            opacity: 0;
        }

        .led-screen:hover .play-overlay,
        .play-overlay.visible {
            opacity: 1;
        }

        .fullscreen-btn {
            position: absolute;
            bottom: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            background: rgba(0,0,0,.6);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 4;
            opacity: 0;
            transition: all 0.3s;
            color: #fff;
            font-size: 14px;
        }
        .led-screen:hover .fullscreen-btn { opacity: 1; }
        .fullscreen-btn:hover { background: rgba(249,115,22,.85); transform: scale(1.1); }

        .video-fs-overlay {
            display: none;
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,.95);
            z-index: 99999;
            align-items: center;
            justify-content: center;
        }
        .video-fs-overlay.active { display: flex; }
        .video-fs-overlay video {
            max-width: 95vw;
            max-height: 90vh;
            border-radius: 12px;
            box-shadow: 0 0 60px rgba(249,115,22,.3);
        }
        .video-fs-close {
            position: absolute;
            top: 20px; right: 30px;
            width: 44px; height: 44px;
            background: rgba(255,255,255,.1);
            border: none; border-radius: 50%;
            color: #fff; font-size: 20px;
            cursor: pointer; transition: all .3s;
            display: flex; align-items: center; justify-content: center;
        }
        .video-fs-close:hover { background: rgba(249,115,22,.8); transform: scale(1.1); }

        .play-overlay:hover {
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 0 30px rgba(249, 115, 22, 0.6);
        }

        .play-overlay i {
            font-size: 32px;
            color: #fff;
            margin-left: 4px;
        }

        .btn-primary {
            padding: 16px 36px;
            background: linear-gradient(135deg, #F97316, #EA580C);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
        }

        .btn-secondary {
            padding: 16px 36px;
            background: transparent;
            border: 2px solid rgba(255, 152, 0, 0.3);
            border-radius: 10px;
            color: #FF9800;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            border-color: #FF9800;
            background: rgba(255, 152, 0, 0.15);
            transform: translateY(-3px);
        }

        /* Platforms */
        .platforms {
            padding: 60px 6%;
            text-align: center;
            background: transparent;
            border-top: 1px solid rgba(255, 152, 0, 0.08);
        }

        .platforms h3 {
            font-size: 14px;
            color: rgba(255,255,255,.45);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 40px;
            font-weight: 600;
        }

        .platform-icons {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }

        .platform-item {
            text-align: center;
            transition: all 0.3s;
        }

        .platform-item:hover {
            transform: translateY(-5px);
        }

        .platform-item i {
            font-size: 44px;
            background: linear-gradient(135deg, #F97316, #FB923C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 12px;
        }

        .platform-item p {
            font-size: 14px;
            color: rgba(255,255,255,.6);
            font-weight: 500;
        }

        .platform-item .coming-soon-tag {
            display: inline-block;
            margin-top: 8px;
            padding: 3px 10px;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #38bdf8;
            background: rgba(56, 189, 248, 0.1);
            border: 1px solid rgba(56, 189, 248, 0.2);
            border-radius: 50px;
            animation: csGlow 2s ease-in-out infinite alternate;
        }
        @keyframes csGlow {
            0% { box-shadow: 0 0 0 rgba(56,189,248,0); }
            100% { box-shadow: 0 0 12px rgba(56,189,248,.15); }
        }

        .platform-item .available-now-tag {
            display: inline-block;
            margin-top: 8px;
            padding: 3px 10px;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #4ade80;
            background: rgba(74, 222, 128, 0.1);
            border: 1px solid rgba(74, 222, 128, 0.25);
            border-radius: 50px;
        }

        /* Features */
        .features {
            padding: 100px 6%;
            background: transparent;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-header h2 {
            font-size: 52px;
            font-weight: 900;
            margin-bottom: 16px;
            letter-spacing: -1px;
            color: #fff;
        }

        .section-header h2 span {
            background: linear-gradient(135deg, #F97316, #FB923C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-header p {
            font-size: 18px;
            color: rgba(255,255,255,.5);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 16px;
            padding: 40px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(12px);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.06), transparent);
            transition: left 0.6s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            background: rgba(255,255,255,.08);
            border-color: rgba(255, 152, 0, 0.3);
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(255, 152, 0, 0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(255, 152, 0, 0.15), rgba(255, 152, 0, 0.08));
            border: 1px solid rgba(255, 152, 0, 0.25);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: all 0.4s;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, rgba(255, 152, 0, 0.25), rgba(255, 152, 0, 0.15));
            border-color: rgba(255, 152, 0, 0.4);
        }

        .feature-icon i {
            font-size: 32px;
            background: linear-gradient(135deg, #F97316, #FB923C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 12px;
            font-weight: 700;
            color: #fff;
        }

        .feature-card p {
            color: rgba(255,255,255,.5);
            line-height: 1.7;
            font-size: 15px;
        }

        /* Disclaimer */
        .disclaimer {
            padding: 80px 6%;
            background: transparent;
            text-align: center;
            border-top: 1px solid rgba(255, 152, 0, 0.08);
            border-bottom: 1px solid rgba(255, 152, 0, 0.08);
        }

        .disclaimer-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(255, 152, 0, 0.1));
            border: 1px solid rgba(255, 152, 0, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .disclaimer-icon i {
            font-size: 40px;
            background: linear-gradient(135deg, #3B82F6, #F97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .disclaimer h2 {
            font-size: 36px;
            margin-bottom: 16px;
            font-weight: 800;
            color: #fff;
        }

        .disclaimer p {
            font-size: 16px;
            color: rgba(255,255,255,.6);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .disclaimer p strong {
            color: #60A5FA;
            font-weight: 700;
        }

        /* Pricing */
        .pricing {
            padding: 80px 6% 60px;
            background: transparent;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            max-width: 550px;
            margin: 0 auto 30px;
        }

        .pricing-card {
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 16px;
            padding: 20px 18px;
            text-align: center;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(12px);
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #F97316, #FB923C);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .pricing-card:hover::before {
            transform: scaleX(1);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 152, 0, 0.3);
            box-shadow: 0 15px 40px rgba(255, 152, 0, 0.1);
        }

        .pricing-card.featured {
            background: rgba(255, 152, 0, 0.06);
            border: 2px solid #FF9800;
            transform: scale(1.03);
            box-shadow: 0 8px 30px rgba(255, 152, 0, 0.15);
        }

        .pricing-card.featured:hover {
            transform: scale(1.03) translateY(-8px);
            box-shadow: 0 20px 50px rgba(255, 152, 0, 0.15);
        }

        .pricing-badge {
            display: inline-block;
            padding: 5px 14px;
            background: linear-gradient(135deg, rgba(255, 152, 0, 0.12), rgba(255, 152, 0, 0.06));
            border: 1px solid rgba(255, 152, 0, 0.25);
            border-radius: 50px;
            color: #FF9800;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .pricing-badge.popular {
            background: linear-gradient(135deg, #F97316, #FB923C);
            color: #fff;
            border: none;
        }

        .pricing-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, rgba(255, 152, 0, 0.15), rgba(255, 152, 0, 0.08));
            border: 1px solid rgba(255, 152, 0, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            transition: all 0.4s;
        }

        .pricing-card:hover .pricing-icon {
            transform: scale(1.1) rotate(10deg);
            background: linear-gradient(135deg, rgba(255, 152, 0, 0.25), rgba(255, 152, 0, 0.15));
        }

        .pricing-icon i {
            font-size: 22px;
            background: linear-gradient(135deg, #F97316, #FB923C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .pricing-card h3 {
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
        }

        .pricing-price {
            margin-bottom: 16px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 2px;
        }

        .pricing-price .currency {
            font-size: 16px;
            font-weight: 700;
            color: #F97316;
            margin-top: 5px;
        }

        .pricing-price .amount {
            font-size: 38px;
            font-weight: 900;
            background: linear-gradient(135deg, #F97316, #FB923C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        .pricing-price .period {
            font-size: 12px;
            color: rgba(255,255,255,.4);
            margin-top: 20px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
            text-align: left;
        }

        .pricing-features li {
            padding: 12px 0;
            color: rgba(255,255,255,.6);
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pricing-features li i {
            color: #F97316;
            font-size: 14px;
            width: 20px;
        }

        .btn-pricing {
            width: 100%;
            padding: 12px 24px;
            background: linear-gradient(135deg, #F97316, #EA580C);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
        }

        .btn-pricing:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
        }

        .btn-pricing.featured {
            background: linear-gradient(135deg, #F97316, #FB923C);
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
        }

        .pricing-note {
            text-align: center;
            color: rgba(255,255,255,.5);
            font-size: 13px;
            max-width: 600px;
            margin: 0 auto;
            padding: 15px;
            background: rgba(255, 152, 0, 0.05);
            border-radius: 10px;
            border: 1px solid rgba(255, 152, 0, 0.1);
        }

        .pricing-note i {
            color: #F97316;
            margin-right: 6px;
        }

        /* Reseller Section */
        .reseller {
            padding: 100px 6%;
            background: transparent;
        }

        .reseller-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .reseller-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .reseller-card {
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 16px;
            padding: 30px 25px;
            text-align: center;
            transition: all 0.4s;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(12px);
        }

        .reseller-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 152, 0, 0.3);
            box-shadow: 0 15px 40px rgba(255, 152, 0, 0.1);
        }

        .reseller-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(255, 152, 0, 0.15), rgba(255, 152, 0, 0.08));
            border: 1px solid rgba(255, 152, 0, 0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.4s;
        }

        .reseller-card:hover .reseller-icon {
            transform: scale(1.1) rotate(10deg);
            background: linear-gradient(135deg, rgba(255, 152, 0, 0.25), rgba(255, 152, 0, 0.15));
        }

        .reseller-icon i {
            font-size: 32px;
            background: linear-gradient(135deg, #F97316, #FB923C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .reseller-card h3 {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
        }

        .reseller-card p {
            color: rgba(255,255,255,.5);
            line-height: 1.7;
            font-size: 15px;
        }

        .reseller-cta {
            text-align: center;
            padding: 50px 30px;
            background: rgba(255, 152, 0, 0.05);
            border: 1px solid rgba(255, 152, 0, 0.15);
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        .reseller-cta h3 {
            font-size: 32px;
            font-weight: 900;
            color: #fff;
            margin-bottom: 12px;
        }

        .reseller-cta p {
            font-size: 18px;
            color: rgba(255,255,255,.5);
            margin-bottom: 30px;
        }

        /* Reseller Packages Modal */
        .packages-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 3000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            opacity: 0;
            visibility: hidden;
            transition: opacity .35s ease, visibility .35s ease;
        }
        .packages-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .packages-modal-content {
            background: linear-gradient(160deg, #111d2b, #0c1620);
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 24px;
            max-width: 960px;
            width: 100%;
            max-height: 88vh;
            position: relative;
            box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 80px rgba(255,152,0,.06);
            display: flex;
            flex-direction: column;
            transform: translateY(30px) scale(.97);
            transition: transform .35s cubic-bezier(.22,1,.36,1);
            overflow: hidden;
        }
        .packages-modal.active .packages-modal-content {
            transform: translateY(0) scale(1);
        }

        .packages-modal-header {
            padding: 22px 28px;
            border-bottom: 1px solid rgba(255,152,0,.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }
        .packages-modal-header h2 {
            font-size: 22px;
            font-weight: 900;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .packages-modal-header h2 i {
            font-size: 20px;
            background: linear-gradient(135deg, #FF9800, #FB923C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .packages-modal-header h2 span {
            background: linear-gradient(135deg, #FF9800, #FB923C);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .packages-close-btn {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.1);
            color: rgba(255,255,255,.6);
            font-size: 18px;
            cursor: pointer;
            border-radius: 10px;
            transition: all 0.3s;
            flex-shrink: 0;
        }
        .packages-close-btn:hover {
            background: rgba(255,60,60,.15);
            border-color: rgba(255,60,60,.3);
            color: #ff6b6b;
            transform: rotate(90deg);
        }

        .packages-modal-body {
            padding: 24px 28px 28px;
            overflow-y: auto;
            flex: 1;
            scrollbar-width: thin;
            scrollbar-color: rgba(255,152,0,.2) transparent;
        }
        .packages-modal-body::-webkit-scrollbar { width: 5px; }
        .packages-modal-body::-webkit-scrollbar-track { background: transparent; }
        .packages-modal-body::-webkit-scrollbar-thumb { background: rgba(255,152,0,.2); border-radius: 10px; }

        .packages-intro {
            text-align: center;
            color: rgba(255,255,255,.5);
            margin-bottom: 24px;
            font-size: 14px;
            line-height: 1.6;
        }
        .packages-intro strong {
            color: #FF9800;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
        }

        .package-card {
            background: rgba(255,255,255,.03);
            border: 1px solid rgba(255,255,255,.07);
            border-radius: 16px;
            padding: 22px 18px 18px;
            text-align: center;
            transition: all 0.35s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }
        .package-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(255,152,0,.3), transparent);
            opacity: 0;
            transition: opacity .3s;
        }
        .package-card:hover::before { opacity: 1; }
        .package-card:hover {
            transform: translateY(-6px);
            border-color: rgba(255,152,0,.25);
            box-shadow: 0 16px 40px rgba(0,0,0,.3), 0 0 30px rgba(255,152,0,.06);
            background: rgba(255,255,255,.05);
        }

        .package-card.featured {
            border: 1px solid rgba(255,152,0,.35);
            background: linear-gradient(160deg, rgba(255,152,0,.08), rgba(255,152,0,.02));
            box-shadow: 0 4px 20px rgba(255,152,0,.1);
        }
        .package-card.featured:hover {
            border-color: rgba(255,152,0,.5);
            box-shadow: 0 16px 40px rgba(0,0,0,.3), 0 0 40px rgba(255,152,0,.1);
        }

        .package-badge {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(255,152,0,.08);
            border: 1px solid rgba(255,152,0,.2);
            border-radius: 50px;
            color: #FF9800;
            font-size: 9px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 14px;
            align-self: center;
        }
        .package-badge.popular {
            background: linear-gradient(135deg, #FF9800, #F57C00);
            color: #fff;
            border: none;
            box-shadow: 0 3px 12px rgba(255,152,0,.3);
        }

        .package-card h3 {
            font-size: 16px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
        }

        .package-price {
            margin-bottom: 6px;
        }
        .package-price .amount {
            font-size: 32px;
            font-weight: 900;
            background: linear-gradient(135deg, #FF9800, #FFB74D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.1;
            display: block;
        }
        .package-price .currency {
            font-size: 14px;
            font-weight: 700;
            color: #FF9800;
        }

        .package-price-secondary {
            font-size: 12px;
            color: rgba(255,255,255,.4);
            margin-bottom: 8px;
        }

        .package-per-credit {
            font-size: 11px;
            color: rgba(255,255,255,.35);
            margin-bottom: 16px;
            padding: 5px 10px;
            background: rgba(255,152,0,.05);
            border: 1px solid rgba(255,152,0,.08);
            border-radius: 8px;
            display: inline-block;
            align-self: center;
        }

        .package-savings {
            font-size: 10px;
            font-weight: 700;
            color: #4ade80;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }
        .package-savings i { font-size: 10px; }

        .package-features { display: none; }
        .package-features li { display: none; }
        .package-features li i { display: none; }

        .btn-package {
            width: 100%;
            padding: 10px 16px;
            background: linear-gradient(135deg, #FF9800, #F57C00);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-weight: 700;
            font-size: 12px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(255,152,0,.25);
            margin-top: auto;
            letter-spacing: 0.3px;
        }
        .btn-package:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255,152,0,.4);
        }
        .package-card.featured .btn-package {
            background: linear-gradient(135deg, #FF9800, #E65100);
            box-shadow: 0 4px 20px rgba(255,152,0,.35);
        }

        /* CTA */
        .cta {
            padding: 100px 6%;
            text-align: center;
            position: relative;
            background: transparent;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
            filter: blur(60px);
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: 52px;
            font-weight: 900;
            margin-bottom: 16px;
            letter-spacing: -1px;
            color: #fff;
        }

        .cta h2 span {
            background: linear-gradient(135deg, #3B82F6, #F97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cta p {
            font-size: 18px;
            color: rgba(255,255,255,.5);
            margin-bottom: 40px;
        }

        /* Footer */
        .footer {
            padding: 60px 6% 30px;
            background: transparent;
            border-top: 1px solid rgba(255, 152, 0, 0.08);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            background: linear-gradient(135deg, #3B82F6, #F97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 16px;
            font-size: 16px;
            font-weight: 700;
        }

        .footer-col p {
            color: rgba(255,255,255,.45);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: rgba(255,255,255,.45);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .footer-col ul li a:hover {
            color: #FF9800;
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 152, 0, 0.08);
            border: 1px solid rgba(255, 152, 0, 0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-links a i {
            background: linear-gradient(135deg, #3B82F6, #F97316);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, #FF9800, #F57C00);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(255, 152, 0, 0.3);
        }

        .social-links a:hover i {
            -webkit-text-fill-color: #fff;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,.06);
            color: rgba(255,255,255,.3);
            font-size: 14px;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: rgba(255, 152, 0, 0.1);
            border: 1px solid rgba(255, 152, 0, 0.25);
            color: #FF9800;
            font-size: 22px;
            cursor: pointer;
            padding: 10px 14px;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .mobile-menu-btn:hover {
            background: rgba(255, 152, 0, 0.2);
            border-color: #FF9800;
        }

        .mobile-sidebar {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: linear-gradient(180deg, #0F1923, #132030);
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
            border-left: 1px solid rgba(255,255,255,.06);
            z-index: 2000;
            transition: right 0.4s ease;
            overflow-y: auto;
        }

        .mobile-sidebar.active {
            right: 0;
        }

        .mobile-sidebar-header {
            padding: 20px;
            border-bottom: 1px solid rgba(255, 152, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-sidebar-header .logo {
            font-size: 22px;
        }

        .mobile-close-btn {
            background: none;
            border: none;
            color: rgba(255,255,255,.7);
            font-size: 28px;
            cursor: pointer;
            padding: 5px;
            transition: all 0.3s;
        }

        .mobile-close-btn:hover {
            color: #FF9800;
            transform: rotate(90deg);
        }

        .mobile-menu-items {
            padding: 20px;
        }

        .mobile-menu-items a {
            display: block;
            padding: 15px 20px;
            color: rgba(255,255,255,.8);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border-radius: 10px;
            margin-bottom: 10px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .mobile-menu-items a:hover {
            background: rgba(255, 152, 0, 0.08);
            border-color: rgba(255, 152, 0, 0.2);
            color: #FF9800;
            transform: translateX(5px);
        }

        .mobile-menu-items a i {
            margin-right: 12px;
            width: 20px;
            text-align: center;
        }

        .mobile-menu-cta {
            padding: 0 20px 20px;
        }

        .mobile-menu-cta .btn-primary {
            width: 100%;
            justify-content: center;
        }

        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile */
        @media (max-width: 768px) {
            body {
                overflow-x: hidden;
                width: 100%;
                position: relative;
            }

            * {
                max-width: 100%;
            }

            .nav-menu {
                display: none;
            }

            .nav-btn {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            #themeToggle {
                display: none;
            }

            .navbar {
                padding: 15px 5%;
                justify-content: space-between;
            }

            .logo {
                font-size: 20px;
                flex: 1;
            }

            .nav-btn {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }

            .hero {
                flex-direction: column;
                padding: 100px 5% 60px;
                text-align: center;
                min-height: auto;
                width: 100%;
                overflow: hidden;
            }

            .hero-content {
                max-width: 100%;
                width: 100%;
            }

            .hero-badge {
                font-size: 10px;
                padding: 8px 18px;
                margin-bottom: 20px;
                word-wrap: break-word;
            }

            .hero h1 {
                font-size: 36px;
                margin-bottom: 16px;
                word-wrap: break-word;
            }

            .hero p {
                font-size: 16px;
                margin-bottom: 30px;
                word-wrap: break-word;
            }

            .hero-buttons {
                justify-content: center;
                flex-direction: column;
                gap: 12px;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                padding: 14px 28px;
                font-size: 15px;
                justify-content: center;
            }

            .hero-screen {
                max-width: 100%;
                margin-top: 40px;
                width: 100%;
            }

            .led-frame {
                padding: 15px;
                width: 100%;
            }

            .led-screen {
                width: 100%;
            }

            .play-overlay {
                width: 60px;
                height: 60px;
            }

            .play-overlay i {
                font-size: 24px;
            }

            .platforms {
                padding: 40px 5%;
                width: 100%;
                overflow: hidden;
            }

            .platforms h3 {
                font-size: 12px;
                margin-bottom: 30px;
            }

            .platform-icons {
                gap: 40px;
                width: 100%;
            }

            .platform-item i {
                font-size: 36px;
            }

            .platform-item p {
                font-size: 13px;
            }

            .features {
                padding: 60px 5%;
                width: 100%;
                overflow: hidden;
            }

            .section-header h2 {
                font-size: 32px;
                margin-bottom: 12px;
                word-wrap: break-word;
            }

            .section-header p {
                font-size: 16px;
                word-wrap: break-word;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                width: 100%;
            }

            .feature-card {
                padding: 30px 25px;
                width: 100%;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
            }

            .feature-icon i {
                font-size: 28px;
            }

            .feature-card h3 {
                font-size: 20px;
            }

            .feature-card p {
                font-size: 14px;
            }

            .disclaimer {
                padding: 60px 5%;
                width: 100%;
                overflow: hidden;
            }

            .disclaimer-icon {
                width: 70px;
                height: 70px;
            }

            .disclaimer-icon i {
                font-size: 36px;
            }

            .disclaimer h2 {
                font-size: 28px;
            }

            .disclaimer p {
                font-size: 15px;
            }

            .pricing {
                padding: 60px 5% 50px;
                width: 100%;
                overflow: hidden;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 100%;
                width: 100%;
            }

            .pricing-card {
                padding: 25px 20px;
                width: 100%;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: scale(1) translateY(-8px);
            }

            .pricing-badge {
                font-size: 9px;
                padding: 5px 14px;
            }

            .pricing-icon {
                width: 50px;
                height: 50px;
            }

            .pricing-icon i {
                font-size: 24px;
            }

            .pricing-card h3 {
                font-size: 20px;
            }

            .pricing-price .amount {
                font-size: 42px;
            }

            .pricing-price .currency {
                font-size: 18px;
            }

            .pricing-price .period {
                font-size: 13px;
            }

            .btn-pricing {
                padding: 14px 28px;
                font-size: 15px;
            }

            .pricing-note {
                font-size: 13px;
                padding: 15px;
            }

            .reseller {
                padding: 60px 5%;
                width: 100%;
                overflow: hidden;
            }

            .reseller-benefits {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 40px;
            }

            .reseller-card {
                padding: 25px 20px;
                width: 100%;
            }

            .reseller-icon {
                width: 60px;
                height: 60px;
            }

            .reseller-icon i {
                font-size: 28px;
            }

            .reseller-card h3 {
                font-size: 20px;
            }

            .reseller-card p {
                font-size: 14px;
            }

            .reseller-cta {
                padding: 40px 20px;
            }

            .reseller-cta h3 {
                font-size: 26px;
            }

            .reseller-cta p {
                font-size: 16px;
                margin-bottom: 25px;
            }

            .cta {
                padding: 60px 5%;
                width: 100%;
                overflow: hidden;
            }

            .cta h2 {
                font-size: 32px;
                word-wrap: break-word;
            }

            .cta p {
                font-size: 16px;
                margin-bottom: 30px;
                word-wrap: break-word;
            }

            .footer {
                padding: 50px 5% 25px;
                width: 100%;
                overflow: hidden;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 30px;
            }

            .footer-col h4 {
                font-size: 15px;
            }

            .footer-col ul li a {
                font-size: 13px;
            }

            .footer-bottom {
                font-size: 13px;
            }

            /* Modal mobile */
            .packages-modal {
                padding: 0;
                align-items: flex-end;
            }
            .packages-modal-content {
                max-width: 100%;
                max-height: 92vh;
                border-radius: 24px 24px 0 0;
                transform: translateY(100%);
            }
            .packages-modal.active .packages-modal-content {
                transform: translateY(0);
            }
            .packages-modal-header {
                padding: 18px 20px;
            }
            .packages-modal-header h2 {
                font-size: 18px;
            }
            .packages-modal-body {
                padding: 16px 16px 24px;
            }
            .packages-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .package-card {
                padding: 16px 12px 14px;
                border-radius: 14px;
            }
            .package-badge {
                font-size: 8px;
                padding: 3px 10px;
                margin-bottom: 10px;
            }
            .package-card h3 {
                font-size: 13px;
                margin-bottom: 8px;
            }
            .package-price .amount {
                font-size: 26px;
            }
            .package-price .currency {
                font-size: 12px;
            }
            .package-price-secondary {
                font-size: 11px;
            }
            .package-per-credit {
                font-size: 10px;
                padding: 4px 8px;
                margin-bottom: 12px;
            }
            .package-savings {
                font-size: 9px;
                margin-bottom: 10px;
            }
            .btn-package {
                padding: 9px 12px;
                font-size: 11px;
                border-radius: 8px;
            }
            .packages-intro {
                font-size: 13px;
                margin-bottom: 16px;
            }
        }

        /* Tablet */
        @media (min-width: 769px) and (max-width: 1024px) {
            .hero {
                padding: 120px 5% 80px;
            }

            .hero h1 {
                font-size: 52px;
            }

            .hero p {
                font-size: 17px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 600px;
            }

            .section-header h2 {
                font-size: 42px;
            }

            .cta h2 {
                font-size: 42px;
            }
        }

        /* ===== LIGHT THEME ===== */
        body.light {
            background: #F5F7FA;
            color: #1a1a2e;
        }
        body.light::before {
            background:
                radial-gradient(circle at 20% 30%, rgba(255, 152, 0, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 152, 0, 0.04) 0%, transparent 50%);
        }
        body.light .bg-glow { opacity: .12; }
        body.light .bg-grid { background-image: linear-gradient(rgba(0,0,0,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,.04) 1px,transparent 1px); }
        body.light .navbar { background: rgba(255,255,255,.92); border-bottom-color: rgba(0,0,0,.08); box-shadow: 0 2px 20px rgba(0,0,0,.08); }
        body.light .nav-menu a { color: rgba(0,0,0,.65); }
        body.light .nav-menu a:hover { color: #E65100; }
        body.light .mobile-menu-btn { background: rgba(255,152,0,.08); border-color: rgba(255,152,0,.2); }
        body.light .hero h1 { color: #1a1a2e; }
        body.light .hero p { color: rgba(0,0,0,.55); }
        body.light .hero-badge { background: linear-gradient(135deg,rgba(255,152,0,.1),rgba(255,152,0,.05)); border-color: rgba(255,152,0,.25); }
        body.light .btn-secondary { border-color: rgba(255,152,0,.3); color: #E65100; }
        body.light .btn-secondary:hover { background: rgba(255,152,0,.08); border-color: #FF9800; }
        body.light .led-frame { background: linear-gradient(135deg,rgba(0,0,0,.04),rgba(0,0,0,.02)); box-shadow: 0 0 0 1px rgba(255,152,0,.15), 0 20px 60px rgba(0,0,0,.1), 0 0 100px rgba(255,152,0,.05); }
        body.light .platforms { border-top-color: rgba(0,0,0,.06); }
        body.light .platforms h3 { color: rgba(0,0,0,.4); }
        body.light .platform-item p { color: rgba(0,0,0,.55); }
        body.light .section-header h2 { color: #1a1a2e; }
        body.light .section-header p { color: rgba(0,0,0,.5); }
        body.light .feature-card { background: rgba(255,255,255,.7); border-color: rgba(0,0,0,.08); box-shadow: 0 4px 15px rgba(0,0,0,.06); backdrop-filter: blur(12px); }
        body.light .feature-card:hover { background: rgba(255,255,255,.9); border-color: rgba(255,152,0,.25); box-shadow: 0 20px 50px rgba(255,152,0,.08); }
        body.light .feature-card h3 { color: #1a1a2e; }
        body.light .feature-card p { color: rgba(0,0,0,.5); }
        body.light .disclaimer { border-top-color: rgba(0,0,0,.06); border-bottom-color: rgba(0,0,0,.06); }
        body.light .disclaimer h2 { color: #1a1a2e; }
        body.light .disclaimer p { color: rgba(0,0,0,.55); }
        body.light .pricing-card { background: rgba(255,255,255,.7); border-color: rgba(0,0,0,.08); box-shadow: 0 4px 20px rgba(0,0,0,.06); backdrop-filter: blur(12px); }
        body.light .pricing-card:hover { border-color: rgba(255,152,0,.25); box-shadow: 0 15px 40px rgba(255,152,0,.08); }
        body.light .pricing-card.featured { background: rgba(255,152,0,.04); border-color: #FF9800; }
        body.light .pricing-card h3 { color: #1a1a2e; }
        body.light .pricing-price .period { color: rgba(0,0,0,.4); }
        body.light .pricing-features li { color: rgba(0,0,0,.55); }
        body.light .pricing-note { background: rgba(255,152,0,.04); border-color: rgba(255,152,0,.12); color: rgba(0,0,0,.5); }
        body.light .reseller-card { background: rgba(255,255,255,.7); border-color: rgba(0,0,0,.08); box-shadow: 0 4px 20px rgba(0,0,0,.06); backdrop-filter: blur(12px); }
        body.light .reseller-card:hover { border-color: rgba(255,152,0,.25); box-shadow: 0 15px 40px rgba(255,152,0,.08); }
        body.light .reseller-card h3 { color: #1a1a2e; }
        body.light .reseller-card p { color: rgba(0,0,0,.5); }
        body.light .reseller-cta { background: rgba(255,152,0,.03); border-color: rgba(255,152,0,.12); }
        body.light .reseller-cta h3 { color: #1a1a2e; }
        body.light .reseller-cta p { color: rgba(0,0,0,.5); }
        body.light .cta h2 { color: #1a1a2e; }
        body.light .cta p { color: rgba(0,0,0,.5); }
        body.light .footer { border-top-color: rgba(0,0,0,.06); }
        body.light .footer-col p { color: rgba(0,0,0,.45); }
        body.light .footer-col ul li a { color: rgba(0,0,0,.45); }
        body.light .footer-col ul li a:hover { color: #E65100; }
        body.light .social-links a { background: rgba(255,152,0,.06); border-color: rgba(255,152,0,.12); }
        body.light .footer-bottom { color: rgba(0,0,0,.3); border-top-color: rgba(0,0,0,.06); }
        body.light .mobile-sidebar { background: linear-gradient(180deg,#fff,#f8f9fa); border-left-color: rgba(0,0,0,.08); box-shadow: -5px 0 25px rgba(0,0,0,.1); }
        body.light .mobile-sidebar-header { border-bottom-color: rgba(0,0,0,.06); }
        body.light .mobile-close-btn { color: rgba(0,0,0,.5); }
        body.light .mobile-close-btn:hover { color: #E65100; }
        body.light .mobile-menu-items a { color: rgba(0,0,0,.7); }
        body.light .mobile-menu-items a:hover { background: rgba(255,152,0,.06); border-color: rgba(255,152,0,.15); color: #E65100; }
        body.light .mobile-overlay { background: rgba(0,0,0,.25); }
        body.light .packages-modal-content { background: linear-gradient(160deg,#fff,#f8f9fa); border-color: rgba(0,0,0,.08); }
        body.light .packages-modal-header { border-bottom-color: rgba(0,0,0,.06); }
        body.light .packages-modal-header h2 { color: #1a1a2e; }
        body.light .packages-close-btn { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08); color: rgba(0,0,0,.5); }
        body.light .packages-intro { color: rgba(0,0,0,.5); }
        body.light .package-card { background: rgba(255,255,255,.8); border-color: rgba(0,0,0,.08); }
        body.light .package-card:hover { background: #fff; border-color: rgba(255,152,0,.25); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
        body.light .package-card h3 { color: #1a1a2e; }
        body.light .package-card.featured { background: rgba(255,152,0,.04); border-color: rgba(255,152,0,.3); }
        body.light .package-price-secondary { color: rgba(0,0,0,.4); }
        body.light .package-per-credit { color: rgba(0,0,0,.4); background: rgba(255,152,0,.04); border-color: rgba(255,152,0,.08); }

        /* Theme Toggle */
        .theme-toggle {
            width: 44px; height: 24px;
            background: rgba(255,255,255,.1);
            border: 1px solid rgba(255,255,255,.15);
            border-radius: 50px;
            cursor: pointer;
            position: relative;
            transition: all .3s;
            margin-right: 12px;
            flex-shrink: 0;
        }
        .theme-toggle::after {
            content: '';
            position: absolute;
            top: 2px; left: 2px;
            width: 18px; height: 18px;
            background: #FF9800;
            border-radius: 50%;
            transition: all .3s;
            box-shadow: 0 2px 6px rgba(255,152,0,.4);
        }
        .theme-toggle.light { background: rgba(0,0,0,.08); border-color: rgba(0,0,0,.12); }
        .theme-toggle.light::after { left: 22px; background: #F57C00; }
        .theme-toggle-icon {
            position: absolute;
            top: 50%; transform: translateY(-50%);
            font-size: 11px; z-index: 1;
        }
        .theme-toggle-icon.moon { right: 5px; color: rgba(255,255,255,.5); }
        .theme-toggle-icon.sun { left: 5px; color: rgba(0,0,0,.4); display: none; }
        .theme-toggle.light .theme-toggle-icon.moon { display: none; }
        .theme-toggle.light .theme-toggle-icon.sun { display: block; }

        /* Very small screens */
        @media (max-width: 400px) {
            .packages-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .package-card {
                padding: 18px 14px 16px;
            }
            .package-price .amount {
                font-size: 28px;
            }
        }
