        :root {
            --primary-dark: #140c3a;
            --secondary-gold: #f9bd06;
            --accent-blue: #445375;
        }

        @media(min-width:700px) {
            .side-menu__item { color: #fff !important; }
        }

        /* ========== PREMIUM HOSTING HERO ========== */
        .hosting-hero {
            min-height: auto;
            padding: 100px 0 80px;
            background: linear-gradient(160deg, #0f0828 0%, #140c3a 35%, #1e1450 65%, #0d0820 100%);
            position: relative;
            overflow: hidden;
        }

        /* Background Effects */
        .hero-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .bg-grid {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(249, 189, 6, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(249, 189, 6, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black, transparent);
        }

        .bg-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
        }

        .glow-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(249, 189, 6, 0.12), transparent 70%);
            top: -10%;
            right: 0;
            animation: glowFloat 15s ease-in-out infinite;
        }

        .glow-2 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(68, 83, 117, 0.2), transparent 70%);
            bottom: -10%;
            left: -5%;
            animation: glowFloat 20s ease-in-out infinite reverse;
        }

        @keyframes glowFloat {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, -20px); }
        }

        /* Content */
        .hero-content {
            position: relative;
            z-index: 10;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(249, 189, 6, 0.1);
            border: 1px solid rgba(249, 189, 6, 0.25);
            padding: 10px 22px;
            border-radius: 50px;
            margin-bottom: 24px;
        }

        .hero-badge i {
            color: #f9bd06;
        }

        .hero-badge span {
            color: #f9bd06;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, #f9bd06, #fcd34d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.75);
            max-width: 520px;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        /* Spec Cards */
        .spec-cards {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
            flex-wrap: wrap;
        }

        .spec-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 14px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .spec-card:hover {
            background: rgba(249, 189, 6, 0.08);
            border-color: rgba(249, 189, 6, 0.2);
            transform: translateY(-3px);
        }

        .spec-card i {
            width: 40px;
            height: 40px;
            background: rgba(249, 189, 6, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f9bd06;
            font-size: 1rem;
        }

        .spec-card-text strong {
            display: block;
            color: #fff;
            font-size: 14px;
            font-weight: 600;
        }

        .spec-card-text span {
            color: rgba(255,255,255,0.5);
            font-size: 12px;
        }

        .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #f9bd06;
            color: #140c3a;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(249, 189, 6, 0.25);
        }

        .hero-cta:hover {
            background: #fff;
            color: #140c3a;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(249, 189, 6, 0.35);
        }

        /* Hero Visual */
        .hero-visual {
            position: relative;
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .visual-wrapper {
            position: relative;
            width: 400px;
            height: 400px;
        }

        /* Server Visualization */
        .server-visual {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            background: linear-gradient(145deg, rgba(249, 189, 6, 0.1), rgba(249, 189, 6, 0.02));
            border: 2px solid rgba(249, 189, 6, 0.2);
            border-radius: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 10;
            animation: serverPulse 4s ease-in-out infinite;
        }

        .server-visual i {
            font-size: 4rem;
            color: #f9bd06;
            margin-bottom: 12px;
            filter: drop-shadow(0 0 20px rgba(249, 189, 6, 0.4));
        }

        .server-visual span {
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
        }

        @keyframes serverPulse {
            0%, 100% { box-shadow: 0 0 40px rgba(249, 189, 6, 0.15); }
            50% { box-shadow: 0 0 60px rgba(249, 189, 6, 0.25); }
        }

        /* Orbit Lines */
        .orbit-line {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border: 1px dashed rgba(249, 189, 6, 0.15);
        }

        .orbit-1 { width: 280px; height: 280px; animation: orbitRotate 25s linear infinite; }
        .orbit-2 { width: 350px; height: 350px; animation: orbitRotate 35s linear infinite reverse; }
        .orbit-3 { width: 390px; height: 390px; border-style: dotted; animation: orbitRotate 45s linear infinite; }

        @keyframes orbitRotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* Floating Tech Icons */
        .tech-icon {
            position: absolute;
            width: 50px;
            height: 50px;
            background: rgba(20, 12, 58, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(249, 189, 6, 0.2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: techFloat 5s ease-in-out infinite;
            z-index: 15;
        }

        .tech-icon i {
            font-size: 1.2rem;
            color: #f9bd06;
        }

        .tech-1 { top: 5%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
        .tech-2 { top: 25%; right: 5%; animation-delay: -1s; }
        .tech-3 { bottom: 25%; right: 5%; animation-delay: -2s; }
        .tech-4 { bottom: 5%; left: 50%; transform: translateX(-50%); animation-delay: -3s; }
        .tech-5 { bottom: 25%; left: 5%; animation-delay: -4s; }
        .tech-6 { top: 25%; left: 5%; animation-delay: -5s; }

        @keyframes techFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .tech-1, .tech-4 {
            animation: techFloatCenter 5s ease-in-out infinite;
        }

        @keyframes techFloatCenter {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

        /* ========== PACKAGES SECTION ========== */
        .packages-section {
            padding: 80px 0;
            background: #fff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(249, 189, 6, 0.1);
            padding: 8px 18px;
            border-radius: 50px;
            margin-bottom: 16px;
        }

        .section-badge i {
            color: #f9bd06;
        }

        .section-badge span {
            font-size: 11px;
            font-weight: 600;
            color: #140c3a;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #140c3a;
            margin-bottom: 12px;
        }

        .section-desc {
            font-size: 1rem;
            color: #64748b;
            max-width: 550px;
            margin: 0 auto;
        }

        /* Package Cards */
        .package-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        @media (max-width: 1200px) {
            .package-grid { grid-template-columns: repeat(2, 1fr); }
        }

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

        .package-card {
            background: linear-gradient(145deg, #f8fafc, #fff);
            border-radius: 24px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            box-shadow: 0 4px 20px rgba(20, 12, 58, 0.04);
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(20, 12, 58, 0.12);
        }

        .package-card.featured {
            background: linear-gradient(145deg, #140c3a, #1a1050);
            border: 2px solid rgba(249, 189, 6, 0.3);
        }

        .package-card.featured .package-name,
        .package-card.featured .package-price,
        .package-card.featured .package-spec {
            color: #fff;
        }

        .package-card.featured .package-spec-value {
            color: rgba(255,255,255,0.7);
        }

        .featured-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #f9bd06;
            color: #140c3a;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .package-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(249, 189, 6, 0.15), rgba(249, 189, 6, 0.05));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .package-icon i {
            font-size: 1.8rem;
            color: #f9bd06;
        }

        .package-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #140c3a;
            margin-bottom: 8px;
        }

        .package-desc {
            font-size: 13px;
            color: #64748b;
            margin-bottom: 20px;
        }

        .package-card.featured .package-desc {
            color: rgba(255,255,255,0.6);
        }

        .package-price {
            font-size: 2.2rem;
            font-weight: 800;
            color: #140c3a;
            margin-bottom: 4px;
        }

        .package-price .currency {
            font-size: 1rem;
            color: #f9bd06;
        }

        .package-period {
            font-size: 13px;
            color: #64748b;
            margin-bottom: 20px;
        }

        .package-card.featured .package-period {
            color: rgba(255,255,255,0.5);
        }

        .package-specs {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
            text-align: left;
        }

        .package-specs li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(20, 12, 58, 0.06);
            font-size: 13px;
        }

        .package-card.featured .package-specs li {
            border-color: rgba(255,255,255,0.08);
        }

        .package-specs li:last-child {
            border: none;
        }

        .package-specs li i {
            color: #f9bd06;
            font-size: 14px;
        }

        .package-spec {
            color: #140c3a;
            font-weight: 500;
        }

        .package-spec-value {
            color: #64748b;
            margin-left: auto;
        }

        .package-btn {
            display: block;
            width: 100%;
            padding: 14px;
            background: #140c3a;
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .package-btn:hover {
            background: #f9bd06;
            color: #140c3a;
        }

        .package-card.featured .package-btn {
            background: #f9bd06;
            color: #140c3a;
        }

        .package-card.featured .package-btn:hover {
            background: #fff;
        }

        /* ========== FEATURES SECTION ========== */
        .features-section {
            padding: 80px 0;
            background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        @media (max-width: 1200px) {
            .feature-grid { grid-template-columns: repeat(2, 1fr); }
        }

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

        .feature-card {
            background: #fff;
            border-radius: 20px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(20, 12, 58, 0.04);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(20, 12, 58, 0.1);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, #140c3a, #1e1555);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon i {
            font-size: 1.5rem;
            color: #140c3a;
        }

        .feature-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #140c3a;
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 13px;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }

        /* ========== INCLUDED INFO SECTION ========== */
        .included-section {
            padding: 60px 0;
            background: #140c3a;
        }

        .included-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

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

        .included-card {
            display: flex;
            align-items: center;
            gap: 20px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 16px;
            padding: 24px;
        }

        .included-icon {
            width: 60px;
            height: 60px;
            background: rgba(249, 189, 6, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .included-icon i {
            font-size: 1.5rem;
            color: #f9bd06;
        }

        .included-text h5 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 6px;
        }

        .included-text p {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            margin: 0;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #140c3a, #1a1050);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(circle at right, rgba(249, 189, 6, 0.08), transparent 60%);
        }

        .cta-content {
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .cta-content h2 {
            color: #fff;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .cta-content p {
            color: rgba(255,255,255,0.7);
            font-size: 1rem;
            margin-bottom: 32px;
            max-width: 550px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #f9bd06;
            color: #140c3a;
            padding: 16px 36px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background: #fff;
            color: #140c3a;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(249, 189, 6, 0.3);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hosting-hero { padding: 80px 0 60px; }
            .hero-title { font-size: 2.4rem; }
            .hero-visual { margin-top: 50px; }
            .visual-wrapper { width: 320px; height: 320px; }
            .server-visual { width: 150px; height: 150px; }
            .server-visual i { font-size: 3rem; }
            .orbit-1 { width: 220px; height: 220px; }
            .orbit-2 { width: 280px; height: 280px; }
            .orbit-3 { width: 310px; height: 310px; }
            .tech-icon { width: 42px; height: 42px; }
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 2rem; }
            .spec-cards { justify-content: center; }
            .hero-visual { display: none; }
            .section-title { font-size: 1.8rem; }
        }
