.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 FULL ═══ */
        @media (max-width: 992px) {
            .instancia-tables-grid {
                grid-template-columns: 1fr !important;
            }
        }

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

        .pricing-tabs {
            display: inline-flex;
            gap: 4px;
            background: var(--bg-card);
            border-radius: 50px;
            padding: 4px;
            border: 1px solid var(--border-subtle);
            margin-top: 40px;
            margin-bottom: 40px;
        }

        .pricing-tab {
            padding: 10px 28px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-secondary);
            cursor: pointer;
            border: none;
            background: none;
            font-family: 'Corbel', sans-serif;
            transition: all 0.3s ease;
        }

        .pricing-tab.active {
            background: var(--accent-orange);
            color: #0f0f14;
        }

        .pricing-tab:hover:not(.active) {
            color: var(--text-primary);
        }

        .pricing-panel {
            display: none;
        }

        .pricing-panel.active {
            display: block;
        }

        .pricing-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;
            text-align: left;
        }

        .pricing-table th,
        .pricing-table td {
            padding: 14px 20px;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 14px;
        }

        .pricing-table thead th {
            background: rgba(249, 174, 0, 0.05);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-secondary);
            font-size: 12px;
        }

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

        .pricing-table tbody tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .pricing-table tbody td:first-child {
            font-weight: 600;
            color: var(--accent-orange);
        }

        .pricing-table tbody td {
            color: var(--text-secondary);
        }

        .pricing-cat-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
            text-align: left;
        }

        .pricing-cat-desc {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            text-align: left;
        }

        .pricing-table-block {
            margin-bottom: 48px;
        }

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

        /* ═══ CALCULATOR ═══ */
        .calc-box {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 40px;
            text-align: left;
            margin-top: 48px;
        }

        .calc-box h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .calc-box .calc-desc {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 28px;
        }

        .calc-row {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 16px;
            align-items: center;
            margin-bottom: 16px;
        }

        .calc-row label {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .calc-row select,
        .calc-row input[type="number"],
        .calc-row input[type="number"] {
            width: 100%;
            padding: 10px 14px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-subtle);
            background: var(--bg-secondary);
            color: var(--text-primary);
            font-family: 'Corbel', sans-serif;
            font-size: 14px;
            outline: none;
        }

        .calc-row select:focus,
        .calc-row input:focus {
            border-color: var(--accent-orange);
        }

        .calc-result {
            margin-top: 28px;
            padding: 24px;
            background: var(--bg-secondary);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .calc-result-item {
            text-align: center;
        }

        .calc-result-label {
            font-size: 12px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .calc-result-value {
            font-size: 28px;
            font-weight: 800;
            color: var(--accent-orange);
        }

        .calc-result-value.secondary {
            color: var(--text-primary);
            font-size: 22px;
        }

        @media (max-width: 768px) {
            .calc-row {
                grid-template-columns: 1fr;
            }

            .calc-result {
                flex-direction: column;
            }
        }

        /* ═══ 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);
        }



        /* ═══ ENHANCED HOSTING CARDS ═══ */
        .p-card-host {
            background: #222222;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px 30px;
            width: 100%;
            max-width: 360px;
            margin: 0 auto;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .p-card-host:hover {
            transform: translateY(-12px);
            background: #282828;
            border-color: rgba(249, 174, 0, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .p-card-host.featured {
            border: 1px solid var(--accent-orange);
            background: #252525;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
        }

        .p-card-host.featured::before {
            content: 'POPULAR';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent-orange);
            color: #111;
            padding: 4px 15px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1px;
        }

        .p-card-host-name {
            font-size: 18px;
            color: #8f9bb3;
            margin-bottom: 25px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .p-card-host-price {
            font-size: 42px;
            font-weight: 900;
            color: white;
            margin-bottom: 30px;
            line-height: 1;
        }

        .p-card-host-price span {
            font-size: 14px;
            color: #5a6580;
            margin-right: 5px;
            font-weight: 600;
        }

        .p-card-host-price .period {
            font-size: 12px;
            color: #5a6580;
            font-weight: 500;
            margin-top: 5px;
        }

        .p-card-host-features {
            list-style: none;
            padding: 0;
            margin: 0 0 40px 0;
            text-align: left;
            flex-grow: 1;
        }

        .p-card-host-features li {
            padding: 10px 0;
            color: #8f9bb3;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .p-card-host-features li::before {
            content: '✓';
            color: var(--accent-orange);
            font-weight: 900;
        }

        .p-card-host-features li b {
            color: white;
        }

        .btn-host {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 30px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: white;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-host:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: scale(1.02);
        }

        .btn-host.primary {
            background: var(--accent-orange);
            color: #111;
            border: none;
            box-shadow: 0 10px 30px rgba(249, 174, 0, 0.2);
        }

        .btn-host.primary:hover {
            background: #ffc233;
            box-shadow: 0 15px 40px rgba(249, 174, 0, 0.4);
            transform: scale(1.05);
        }


        @media (max-width: 992px) {
            .office-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        @media (max-width: 600px) {

            .office-grid,
            .hosting-grid {
                grid-template-columns: 1fr !important;
            }

            .p-card-host {
                width: 100% !important;
            }
        }

        
        @media (max-width: 600px) {
            .calc-row { grid-template-columns: 1fr; gap: 8px; }
            .calc-result { flex-direction: column; gap: 20px; }
            .calc-box { padding: 30px 20px; }
        }

        /* ═══ 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;
            }

            .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);
        }
    

        .p-card {
            background: #252525;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 24px;
            width: 280px;
            text-align: left;
            transition: all 0.3s ease;
            position: relative;
        }

        .p-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-orange);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }

        .p-card.featured {
            border: 2px solid var(--accent-orange);
            background: #2a2a2a;
        }

        .p-card-header {
            font-size: 14px;
            color: #8f9bb3;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .p-card-price {
            font-size: 26px;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }

        .p-card-price span {
            font-size: 14px;
            color: #5a6580;
            font-weight: 400;
        }

        .p-card-btn {
            width: 100%;
            height: 50px;
            border-radius: 25px !important;
        }

        /* ═══ PRICING MOBILE FIXES ═══ */
        @media (max-width: 600px) {
            .pricing-tabs {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                border-radius: var(--radius-md);
                margin-top: 24px;
                margin-bottom: 24px;
            }
            .pricing-tab {
                padding: 8px 16px;
                font-size: 13px;
            }
            .p-card {
                width: 100%;
                max-width: 100%;
            }
            .calc-box {
                padding: 24px 16px;
            }
            .pricing-table th,
            .pricing-table td {
                padding: 10px 12px;
                font-size: 13px;
            }
            .compare-tabs-top {
                gap: 8px;
            }
            .plan-tab {
                padding: 8px 14px;
                font-size: 13px;
            }
        }