.mega-menu-col.mega-menu-img img {
            max-width: 100%;
            height: auto;
        }

        /* ═══ HERO ═══ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            display: none;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            border-radius: 50px;
            background: rgba(249, 174, 0, 0.08);
            border: 1px solid rgba(249, 174, 0, 0.2);
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-orange);
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease;
        }

        .hero-badge .pulse {
            width: 8px;
            height: 8px;
            background: var(--accent-orange);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(1.3);
            }
        }

        .hero h1 {
            font-size: clamp(40px, 7vw, 76px);
            font-weight: 900;
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease 0.1s both;
        }

        .hero p {
            font-size: clamp(16px, 2vw, 20px);
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0 auto 40px;
            line-height: 1.7;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 60px;
            animation: fadeInUp 0.8s ease 0.3s both;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-value {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent-orange);
        }

        .hero-stat-label {
            font-size: 13px;
            color: var(--text-muted);
            font-weight: 500;
            margin-top: 4px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



        /* ═══ WHY KUASAR ═══ */
        .why-section {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 60px;
        }



        .why-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-orange);
            opacity: 0;
            transition: opacity 0.4s ease;
        }







        .why-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .why-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* ═══ COMPARISON ═══ */
        .comparison-section {
            overflow: hidden;
        }

        .comparison-section .container {
            text-align: center;
        }

        .comparison-table-wrapper {
            margin-top: 60px;
            overflow-x: auto;
        }

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: var(--bg-card);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle);
            overflow: hidden;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 20px 28px;
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
        }

        .comparison-table thead th {
            background: rgba(249, 174, 0, 0.04);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-secondary);
        }

        .comparison-table thead th:first-child {
            border-radius: var(--radius-lg) 0 0 0;
        }

        .comparison-table thead th:last-child {
            border-radius: 0 var(--radius-lg) 0 0;
        }

        .comparison-table thead th.kuasar-col {
            color: var(--accent-orange);
            position: relative;
        }

        .comparison-table tbody tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tbody td:first-child {
            font-weight: 600;
            color: var(--text-primary);
        }

        .comparison-table tbody td {
            font-size: 15px;
            color: var(--text-secondary);
        }

        .comparison-table .check {
            color: var(--accent-orange);
            font-size: 20px;
            font-weight: bold;
        }

        .comparison-table .cross {
            color: var(--text-muted);
            font-size: 20px;
        }

        .comparison-table .kuasar-val {
            color: var(--accent-orange);
            font-weight: 600;
        }

        /* ═══ PRODUCTS ═══ */
        .products-section {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 60px;
        }

        .product-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-6px);
            border-color: rgba(51, 102, 255, 0.2);
            box-shadow: 0 12px 40px rgba(51, 102, 255, 0.1);
        }

        .product-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: rgba(51, 102, 255, 0.08);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            transition: all 0.4s ease;
        }

        .product-card:hover .product-icon {
            background: rgba(51, 102, 255, 0.15);
            transform: scale(1.1);
        }

        .product-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .product-card p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ═══ PRICING PREVIEW ═══ */
        .pricing-section .container {
            text-align: center;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .pricing-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            position: relative;
            transition: all 0.4s ease;
        }

        .pricing-card.featured {
            border-color: rgba(249, 174, 0, 0.3);
            box-shadow: 0 0 60px rgba(249, 174, 0, 0.08);
        }

        .pricing-card.featured::before {
            content: 'Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            padding: 4px 20px;
            background: var(--accent-orange);
            color: #0f0f14;
            font-size: 12px;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-card:hover {
            transform: translateY(-6px);
        }

        .pricing-card-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .pricing-card-specs {
            font-size: 15px;
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .pricing-card-price {
            margin-bottom: 28px;
        }

        .pricing-card-price .amount {
            font-size: 42px;
            font-weight: 800;
            color: var(--accent-orange);
        }

        .pricing-card-price .currency {
            font-size: 16px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .pricing-card-price .period {
            font-size: 14px;
            color: var(--text-muted);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 28px;
        }

        .pricing-features li {
            padding: 8px 0;
            font-size: 14px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--accent-orange);
            font-weight: 700;
            font-size: 14px;
        }

        .pricing-note {
            margin-top: 32px;
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ═══ TESTIMONIALS / VALUE PROPS ═══ */
        .values-section .container {
            text-align: center;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-top: 60px;
        }

        .value-item {
            padding: 32px 16px;
            border-radius: var(--radius-lg);
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            transition: all 0.3s ease;
        }

        .value-item:hover {
            border-color: rgba(249, 174, 0, 0.15);
            transform: translateY(-4px);
        }

        .value-icon {
            font-size: 36px;
            margin-bottom: 16px;
        }

        .value-item h4 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .value-item p {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ═══ CTA SECTION ═══ */
        .cta-section {
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(249, 174, 0, 0.06) 0%, transparent 60%);
        }

        .cta-box {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            padding: 80px 40px;
            background: var(--bg-card);
            border-radius: var(--radius-xl);
            border: 1px solid rgba(249, 174, 0, 0.15);
            box-shadow: 0 0 80px rgba(249, 174, 0, 0.05);
        }

        .cta-box h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            margin-bottom: 16px;
        }

        .cta-box p {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .cta-box .btn-primary {
            padding: 18px 48px;
            font-size: 16px;
        }

        

        /* ═══ ANIMATIONS ON SCROLL ═══ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }




        
        /* ═══ LOGO CAROUSEL ═══ */
        .logos-carousel-container {
            overflow: hidden;
            position: relative;
            width: 100%;
            mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
            padding: 20px 0;
        }
        .logos-track {
            display: flex;
            width: max-content;
            animation: scrollLogos 30s linear infinite;
            gap: 100px;
            align-items: center;
        }
        .logos-track img {
            height: 50px;
            width: auto;
            filter: brightness(0) invert(1) opacity(0.6);
            transition: all 0.3s ease;
        }
        .logos-track img:hover {
            filter: brightness(1) invert(0) opacity(1);
        }
        @keyframes scrollLogos {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }


            100% {
                transform: translateX(-50%);
            }
        }

        100% {
            transform: translateX(-50%);
        }
        }

        100% {
            transform: translateX(-50%);
        }
        }

        /* ═══ RESPONSIVE ═══ */
        @media (max-width: 1024px) {
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-cards {
                grid-template-columns: 1fr;
                max-width: 420px;
                margin-left: auto;
                margin-right: auto;
            }

            .values-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            

        }

        @media (max-width: 768px) {
            .section {
                padding: 70px 0;
            }



            .mobile-toggle {
                display: block;
            }



            .why-grid {
                grid-template-columns: 1fr !important;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-stats {
                flex-direction: column;
                gap: 24px;
            }

            

            

            .comparison-table th,
            .comparison-table td {
                padding: 14px 16px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .values-grid {
                grid-template-columns: 1fr;
            }

            .hero-actions {
                flex-direction: column;
            }

            .hero-actions .btn {
                width: 100%;
            }
        }

        .why-card {
            background: rgba(48, 48, 48, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-lg);
            padding: 36px;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(8px);
        }

        .why-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(249, 174, 0, 0.12) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .why-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(249, 174, 0, 0.4);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(249, 174, 0, 0.1);
            background: rgba(58, 58, 58, 0.6);
        }

        .why-card:hover::after {
            opacity: 1;
        }

        .why-card-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(249, 174, 0, 0.25), rgba(249, 174, 0, 0.05));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin-bottom: 24px;
            border: 1px solid rgba(249, 174, 0, 0.2);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 2;
            position: relative;
        }

        .why-card:hover .why-card-icon {
            transform: rotateY(15deg) rotateX(15deg) translateY(-5px);
            background: linear-gradient(135deg, rgba(249, 174, 0, 0.5), rgba(249, 174, 0, 0.1));
            box-shadow: 0 0 30px rgba(249, 174, 0, 0.4);
        }
    

        .hero-content-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            text-align: left !important;
        }

        .hero-text {
            flex: 1;
            max-width: 600px;
        }

        .hero-text p {
            margin: 0 0 40px 0;
            margin-left: 0 !important;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            max-height: 450px;
            object-fit: contain;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        @media (max-width: 991px) {
            .hero-content-wrapper {
                flex-direction: column;
                text-align: center !important;
            }

            .hero-text {
                margin: 0 auto;
            }

            .hero-text p {
                margin: 0 auto 40px auto !important;
            }

            .hero-image {
                margin-top: 40px;
            }

            .hero-stats {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        /* ═══ FEATURE CARDS — redesigned ═══ */
        .why-card {
            background: #1e1e1e;
            border: 1px solid rgba(255,255,255,0.07);
            border-radius: 12px;
            padding: 32px 28px;
            position: relative;
            overflow: hidden;
            backdrop-filter: none;
            transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .why-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-orange), transparent 60%);
            opacity: 0;
            transition: opacity 0.2s ease;
        }
        .why-card::after { display: none; }
        .why-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255,255,255,0.13);
            box-shadow: 0 12px 32px rgba(0,0,0,0.4);
            background: #1e1e1e;
        }
        .why-card:hover::before { opacity: 1; }
        .why-card-icon {
            width: 40px;
            height: 40px;
            background: rgba(249,174,0,0.08);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--accent-orange);
            font-size: 0;
            border: none;
            box-shadow: none;
            transition: background 0.2s ease;
            transform: none;
            z-index: auto;
            position: static;
        }
        .why-card-icon svg { width: 20px; height: 20px; flex-shrink: 0; }
        .why-card:hover .why-card-icon { background: rgba(249,174,0,0.13); transform: none; box-shadow: none; }
        .why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
        .why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

        /* ═══ COMPARE BOX ═══ */
        .compare-box { background: rgba(48, 48, 48, 0.4); border: 1px solid rgba(255, 255, 255, 0.05); padding: 50px; border-radius: 24px; backdrop-filter: blur(12px); margin-top: 50px; text-align: center; }
        .compare-tabs-top { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
        .plan-tab { background: #333; border: none; color: #888; padding: 10px 20px; border-radius: 30px; cursor: pointer; font-weight: 600; transition: 0.3s; font-size: 14px; }
        .plan-tab.active { background: var(--accent-orange); color: #000; box-shadow: 0 4px 15px rgba(249, 174, 0, 0.3); }
        .chart-row { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; }
        .chart-logo { width: 100px; display: flex; justify-content: flex-end; }
        .chart-logo img { max-height: 24px; filter: brightness(0) invert(1); opacity: 0.7; }
        .chart-logo .no-inv { filter: none; opacity: 1; }
        .chart-bar-wrap { flex: 1; height: 35px; background: rgba(255,255,255,0.05); border-radius: 20px; overflow: hidden; }
        .chart-bar { height: 100%; width: 0; transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1); border-radius: 20px; }
        .bar-kuasar { background: linear-gradient(90deg, #F9AE00, #FFD05C); box-shadow: 0 0 20px rgba(249, 174, 0, 0.2); }
        .bar-comp { background: rgba(255,255,255,0.15); }
        .chart-price { width: 140px; font-weight: 700; color: #fff; text-align: left; }
        .price-kuasar-val { color: var(--accent-orange); font-size: 18px; }
        @media (max-width: 600px) { .compare-box { padding: 30px 20px; } .chart-logo { width: 70px; } .chart-price { width: 100px; font-size: 13px; } }