
        /* CSS Variables untuk Tema Modern */
        :root {
            --primary: #4f46e5;
            --secondary: #7c3aed;
            --dark: #0f172a;
            --light: #f8fafc;
            --text-gray: #64748b;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--light);
            color: #333;
            overflow-x: hidden;
        }
        
        a { text-decoration: none; }
        
        
        /* =========================================
           NAVBAR (DESKTOP)
        ========================================= */
        .navbar-custom {
            background-color: #ffffff;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            padding: 15px 0;
            z-index: 1030;
        }
        .nav-link-custom {
            font-weight: 600;
            color: #475569;
            transition: color 0.3s;
        }
        .nav-link-custom:hover {
            color: var(--secondary);
        }
        
        /* Tombol Gradient Kekinian */
        .btn-custom {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            border: none;
            border-radius: 50px;
            padding: 10px 28px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
            color: white;
        }
        .btn-outline-custom {
            border: 2px solid var(--primary);
            color: var(--primary);
            border-radius: 50px;
            padding: 8px 25px;
            font-weight: 600;
            background: transparent;
            transition: all 0.3s ease;
        }
        .btn-outline-custom:hover {
            background: var(--primary);
            color: white;
        }

        /* --- Hero Section --- */
        .hero-section {
            background: var(--dark);
            background-image: radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.4) 0px, transparent 50%),
                              radial-gradient(at 100% 100%, rgba(124, 58, 237, 0.4) 0px, transparent 50%);
            color: white;
            padding: 160px 0 100px;
            position: relative;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .hero-subtitle {
            font-size: 1.1rem;
            color: #cbd5e1;
            margin-bottom: 40px;
        }

        /* Form Pencarian Domain */
        .domain-search {
            background: white;
            padding: 8px;
            border-radius: 50px;
            display: flex;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            max-width: 600px;
            margin: 0 auto;
        }
        .domain-search input {
            border: none;
            box-shadow: none;
            padding-left: 25px;
            flex-grow: 1;
            font-size: 1rem;
            border-radius: 50px 0 0 50px;
        }
        .domain-search input:focus {
            outline: none;
            box-shadow: none;
        }
        .domain-search select {
            border: none;
            background: #f1f5f9;
            font-weight: 600;
            padding: 0 15px;
            border-radius: 10px;
            margin-right: 10px;
            cursor: pointer;
        }

        /* --- Features/Layanan Section --- */
        .section-title {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            border: 1px solid rgba(0,0,0,0.03);
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
            border-color: rgba(79, 70, 229, 0.2);
        }
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
            color: var(--primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 25px;
            transform: rotate(-5deg);
        }
        .feature-card:hover .feature-icon {
            transform: rotate(0deg);
            transition: all 0.3s;
        }

        /* --- Pricing Section --- */
        .pricing-section {
            background-color: white;
            padding: 100px 0;
        }
        .pricing-card {
            background: var(--light);
            border-radius: 24px;
            padding: 40px;
            transition: all 0.3s;
            position: relative;
            border: 1px solid rgba(0,0,0,0.05);
            height: 100%;
        }
        .pricing-card.popular {
            background: var(--dark);
            color: white;
            transform: scale(1.05);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            z-index: 10;
        }
        .badge-popular {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #f59e0b, #ef4444);
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
        }
        .price {
            font-size: 3rem;
            font-weight: 700;
            margin: 20px 0;
        }
        .pricing-card.popular .price {
            color: white;
        }
        .price span {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 400;
        }
        ul.pricing-features {
            list-style: none;
            padding: 0;
            margin-top: 30px;
            margin-bottom: 30px;
        }
        ul.pricing-features li {
            margin-bottom: 15px;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        .pricing-card.popular ul.pricing-features li {
            color: #cbd5e1;
        }
        ul.pricing-features li i {
            color: #10b981;
            margin-right: 12px;
            font-size: 1.1rem;
        }

        /* --- Footer --- */
        footer {
            background: var(--dark);
            color: #cbd5e1;
            padding: 80px 0 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .footer-title {
            color: white;
            font-weight: 600;
            margin-bottom: 20px;
        }
        .footer-link {
            color: #cbd5e1;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .footer-link:hover {
            color: violet;
        }
        .social-icons a {
            color: white;
            background: rgba(255,255,255,0.1);
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
            text-decoration: none;
        }
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        /* Responsiveness adjustments */
        @media (max-width: 991px) {
            .hero-title { font-size: 2.5rem; }
            .pricing-card.popular { transform: scale(1); margin: 30px 0; }
        }