        * {
            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:.3;pointer-events:none;will-change:auto}
        .bg-glow.g1{width:480px;height:480px;background:radial-gradient(circle,#FF9800,transparent);top:-120px;left:-120px}
        .bg-glow.g2{width:380px;height:380px;background:radial-gradient(circle,#F57C00,transparent);bottom:-100px;right:-100px}
        .bg-glow.g3{display:none}
        @media (max-width: 768px){.bg-glow{filter:blur(30px);opacity:.2}}
        .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.97);
            -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
            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;
            text-decoration: none;
            cursor: pointer;
        }

        .logo-img {
            height: 44px;
            width: auto;
            display: block;
            object-fit: contain;
            transition: transform .25s ease, filter .25s ease;
            filter: drop-shadow(0 2px 8px rgba(255, 152, 0, .25));
        }
        a.logo:hover .logo-img { transform: scale(1.04); }

        .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 22px;
            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: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 28px;
            white-space: nowrap;
            max-width: 100%;
        }

        .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;
        }

        /* Hero Screen Container (holds available-platforms card) */
        .hero-screen {
            flex: 1;
            position: relative;
            z-index: 1;
            max-width: 650px;
        }

        /* ============ Available Platforms Card (replaces LED screen) ============ */
        .available-platforms {
            width: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 24px;
            padding: 28px 24px;
            box-shadow: 0 0 0 1px rgba(255,152,0,.15), 0 20px 60px rgba(0,0,0,.5), 0 0 100px rgba(255,152,0,.08);
        }
        .ap-heading {
            text-align: center;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 4px;
            color: rgba(255,255,255,.7);
            margin: 0 0 22px 0;
            position: relative;
        }
        .ap-heading::before, .ap-heading::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 40px;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,152,0,.5), transparent);
        }
        .ap-heading::before { left: calc(50% - 110px); }
        .ap-heading::after  { right: calc(50% - 110px); }
        .ap-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }
        .ap-card {
            background: #fff;
            border-radius: 14px;
            padding: 18px 16px;
            min-height: 78px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .25s ease;
            box-shadow: 0 4px 14px rgba(0,0,0,.18);
            cursor: default;
        }
        .ap-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 24px rgba(255,152,0,.25), 0 0 0 1px rgba(255,152,0,.4);
        }
        .ap-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: -apple-system, "Segoe UI", Arial, sans-serif;
        }

        /* Samsung Smart TV */
        .ap-logo.samsung { flex-direction: column; gap: 2px; }
        .ap-logo.samsung .ap-brand {
            font-size: 12px; color: #1428a0; letter-spacing: 1px; font-weight: 600;
        }
        .ap-logo.samsung .ap-name {
            font-size: 22px; font-weight: 900; color: #000; letter-spacing: 1px;
        }

        /* LG webOS */
        .ap-logo.lg { gap: 10px; }
        .ap-logo.lg .lg-circle {
            width: 36px; height: 36px; border-radius: 50%;
            background: #a50034; color: #fff;
            display: inline-flex; align-items: center; justify-content: center;
            font-weight: 800; font-size: 13px; letter-spacing: -.5px;
        }
        .ap-logo.lg .ap-name { font-size: 22px; color: #000; font-weight: 700; }

        /* Android */
        .ap-logo.android .ap-name {
            font-size: 26px; color: #000; font-weight: 500;
            font-family: "Product Sans", "Roboto", sans-serif;
        }
        .ap-logo.android i { color: #3ddc84; font-size: 26px; }

        /* Fire TV Stick */
        .ap-logo.firetv { gap: 6px; }
        .ap-logo.firetv .ap-fire { font-size: 22px; font-weight: 700; color: #ff9900; letter-spacing: -.5px; }
        .ap-logo.firetv .ap-stick { font-size: 22px; font-weight: 500; color: #232f3e; }

        /* Microsoft Store */
        .ap-logo.microsoft { gap: 10px; }
        .ms-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 2px; width: 28px; height: 28px;
        }
        .ms-grid span:nth-child(1) { background: #f25022; }
        .ms-grid span:nth-child(2) { background: #7fba00; }
        .ms-grid span:nth-child(3) { background: #00a4ef; }
        .ms-grid span:nth-child(4) { background: #ffb900; }
        .ms-text { display: flex; flex-direction: column; line-height: 1.1; }
        .ms-text small { font-size: 10px; color: #555; font-weight: 500; }
        .ms-text .ap-name { font-size: 18px; color: #000; font-weight: 700; }

        /* Apple App Store */
        .ap-logo.appstore { gap: 10px; }
        .ap-logo.appstore i { font-size: 30px; color: #000; }
        .as-text { display: flex; flex-direction: column; line-height: 1.1; }
        .as-text small { font-size: 10px; color: #555; font-weight: 500; }
        .as-text .ap-name { font-size: 18px; color: #000; font-weight: 700; }

        .ap-note {
            text-align: center;
            margin: 18px 0 0 0;
            font-size: 12px;
            color: rgba(255,255,255,.5);
        }
        .ap-note i { color: #FFB74D; margin-right: 4px; }

        /* Light theme support */
        body.light .available-platforms {
            background: linear-gradient(135deg, rgba(0,0,0,.04), rgba(0,0,0,.02));
            border-color: rgba(0,0,0,.08);
            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 .ap-heading { color: rgba(0,0,0,.55); }
        body.light .ap-note { color: rgba(0,0,0,.45); }

        /* Reset for button cards (ap-card can be <a> or <button>) */
        a.ap-card, button.ap-card {
            text-decoration: none;
            border: none;
            font-family: inherit;
            cursor: pointer;
            outline: none;
        }
        button.ap-card:focus-visible,
        a.ap-card:focus-visible {
            box-shadow: 0 0 0 3px rgba(255,152,0,.5), 0 4px 14px rgba(0,0,0,.18);
        }
        /* "Coming Soon" hint badge on hover for unsupported platforms */
        .ap-card.ap-soon { position: relative; overflow: hidden; }
        .ap-card.ap-soon::before {
            content: "Coming Soon";
            position: absolute;
            top: 6px;
            right: -28px;
            transform: rotate(35deg);
            background: linear-gradient(135deg, #FF9800, #F57C00);
            color: #fff;
            font-size: 9px;
            font-weight: 700;
            padding: 3px 30px;
            letter-spacing: .5px;
            opacity: 0;
            transition: opacity .25s ease;
            pointer-events: none;
        }
        .ap-card.ap-soon:hover::before { opacity: 1; }

        /* ============ Coming Soon Modal ============ */
        .cs-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .85);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: csFadeIn .25s ease;
        }
        .cs-modal.active { display: flex; }
        @keyframes csFadeIn { from { opacity: 0; } to { opacity: 1; } }

        .cs-modal-content {
            background: linear-gradient(135deg, #1a2332, #0F1923);
            border: 1px solid rgba(255, 152, 0, .25);
            border-radius: 24px;
            padding: 40px 32px 32px;
            max-width: 460px;
            width: 100%;
            text-align: center;
            position: relative;
            box-shadow: 0 20px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 152, 0, .15), 0 0 120px rgba(255, 152, 0, .12);
            animation: csSlideUp .35s cubic-bezier(.34, 1.56, .64, 1);
        }
        @keyframes csSlideUp {
            from { opacity: 0; transform: translateY(30px) scale(.92); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }

        .cs-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, .08);
            color: rgba(255, 255, 255, .7);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: all .2s ease;
        }
        .cs-close:hover {
            background: rgba(255, 152, 0, .85);
            color: #fff;
            transform: rotate(90deg);
        }

        .cs-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 16px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF9800, #F57C00);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 34px;
            box-shadow: 0 0 40px rgba(255, 152, 0, .5), 0 8px 24px rgba(255, 152, 0, .3);
            animation: csIconPulse 2s ease-in-out infinite;
        }
        @keyframes csIconPulse {
            0%, 100% { transform: scale(1); }
            50%      { transform: scale(1.05); }
        }

        .cs-modal-content h2 {
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            margin: 0 0 6px;
            letter-spacing: -.5px;
        }
        .cs-modal-content h2 span {
            background: linear-gradient(135deg, #FF9800, #FFB74D);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cs-platform-name {
            font-size: 14px;
            color: #FFB74D;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin: 0 0 20px;
        }

        .cs-message {
            font-size: 15px;
            color: rgba(255, 255, 255, .75);
            line-height: 1.6;
            margin: 0 0 28px;
        }
        .cs-message strong { color: #FFB74D; }

        .cs-actions {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cs-actions .btn-primary,
        .cs-actions .btn-secondary {
            padding: 12px 22px;
            font-size: 14px;
        }

        body.light .cs-modal-content {
            background: linear-gradient(135deg, #ffffff, #faf5ee);
            border-color: rgba(255, 152, 0, .3);
        }
        body.light .cs-modal-content h2 { color: #1a1a1a; }
        body.light .cs-message { color: rgba(0, 0, 0, .65); }
        body.light .cs-close {
            background: rgba(0, 0, 0, .06);
            color: rgba(0, 0, 0, .6);
        }

        @media (max-width: 480px) {
            .cs-modal-content {
                padding: 32px 22px 24px;
            }
            .cs-modal-content h2 { font-size: 26px; }
            .cs-actions .btn-primary,
            .cs-actions .btn-secondary { width: 100%; }
        }

        /* ============ Fire TV Stick Install Dialog (clean & simple) ============ */
        .ftv-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .7);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: csFadeIn .2s ease;
        }
        .ftv-modal.active { display: flex; }

        .ftv-modal-content {
            background: #fff;
            color: #1a1a1a;
            border-radius: 18px;
            padding: 24px 26px;
            max-width: 440px;
            width: 100%;
            position: relative;
            box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
            animation: csSlideUp .3s cubic-bezier(.34, 1.56, .64, 1);
        }

        .ftv-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .ftv-head h3 {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0;
        }
        .ftv-x {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: none;
            background: #ececec;
            color: #555;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            transition: all .2s ease;
        }
        .ftv-x:hover { background: #ddd; color: #000; transform: rotate(90deg); }

        .ftv-option {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px 8px;
            border-radius: 12px;
            text-decoration: none;
            color: inherit;
            background: transparent;
            border: none;
            width: 100%;
            font-family: inherit;
            cursor: pointer;
            text-align: left;
            transition: background .15s ease;
        }
        .ftv-option + .ftv-option { margin-top: 4px; }
        .ftv-option:hover { background: rgba(255, 152, 0, .08); }

        .ftv-icon-tile {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: #fff;
            position: relative;
        }
        .ftv-icon-tile.direct {
            background: linear-gradient(135deg, #FFD54F, #FFA000);
        }
        .ftv-icon-tile.downloader {
            background: linear-gradient(135deg, #FF9800, #F57C00);
            font-weight: 800;
        }
        .ftv-icon-tile.downloader .dl-letter {
            font-size: 30px;
            font-weight: 900;
            color: #fff;
            line-height: 1;
        }
        .ftv-icon-tile.downloader .dl-arrow {
            position: absolute;
            bottom: 8px;
            right: 9px;
            background: #fff;
            color: #F57C00;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
        }

        .ftv-option-text { flex: 1; min-width: 0; }
        .ftv-option-text strong {
            display: block;
            font-size: 16px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 2px;
        }
        .ftv-option-text span {
            display: block;
            font-size: 13px;
            color: #666;
            word-break: break-all;
        }
        .ftv-option-text span em {
            font-style: normal;
            font-weight: 700;
            color: #1a1a1a;
        }

        .ftv-copy-hint {
            flex-shrink: 0;
            font-size: 12px;
            font-weight: 700;
            color: #FF9800;
            padding: 6px 12px;
            border-radius: 8px;
            background: rgba(255, 152, 0, .1);
            transition: all .2s ease;
        }
        .ftv-option.copied .ftv-copy-hint {
            background: #4caf50;
            color: #fff;
        }

        /* Light theme is default look; dark theme adjustments */
        body:not(.light) .ftv-modal-content {
            background: #1c2532;
            color: #fff;
        }
        body:not(.light) .ftv-head h3 { color: #fff; }
        body:not(.light) .ftv-x { background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
        body:not(.light) .ftv-x:hover { background: rgba(255,255,255,.2); color: #fff; }
        body:not(.light) .ftv-option:hover { background: rgba(255, 152, 0, .12); }
        body:not(.light) .ftv-option-text strong { color: #fff; }
        body:not(.light) .ftv-option-text span { color: rgba(255,255,255,.6); }
        body:not(.light) .ftv-option-text span em { color: #fff; }

        @media (max-width: 480px) {
            .ftv-modal-content { padding: 20px 18px; }
            .ftv-head h3 { font-size: 16px; }
            .ftv-icon-tile { width: 50px; height: 50px; }
            .ftv-icon-tile.downloader .dl-letter { font-size: 26px; }
            .ftv-option-text strong { font-size: 15px; }
            .ftv-option-text span { font-size: 12px; }
        }

        .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 removed for performance */
        }

        .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 removed for performance */
        }

        .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 removed for performance */
        }

        .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-sidebar-header .logo-img {
            height: 40px;
        }

        .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;
            }

            .logo-img {
                height: 36px;
            }

            .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 16px;
                margin-bottom: 20px;
                white-space: normal;
                line-height: 1.4;
                letter-spacing: 0.5px;
                text-align: center;
            }

            .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%;
            }

            .available-platforms {
                padding: 22px 16px;
            }
            .ap-heading::before { left: calc(50% - 95px); width: 30px; }
            .ap-heading::after  { right: calc(50% - 95px); width: 30px; }
            .ap-grid { gap: 10px; }
            .ap-card { min-height: 70px; padding: 14px 12px; }

            .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 removed for performance */ }
        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 removed for performance */ }
        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 removed for performance */ }
        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;
            }
        }
