        /* --- Fix Efek Highlight (Stabilo) Global --- */
        .highlight {
            position: relative; /* Ini adalah 'jangkar' yang menahan garis agar tidak melebar */
            z-index: 1;
            display: inline-block;
            color: var(--text-dark);
        }

        .highlight::after {
            content: '';
            position: absolute;
            left: -5px;
            right: -5px;
            bottom: 5px;
            height: 12px;
            background-color: rgba(34, 197, 94, 0.3); /* Hijau transparan */
            z-index: -1;
            border-radius: 4px;
        }

        /* --- Blog & News Section --- */
        .blog-section {
            background-color: white;
            padding: 5rem 5%;
            text-align: center;
        }

        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-section h2 {
            font-size: 2.5rem;
            margin-bottom: 4rem;
        }

        .blog-section .highlight::after {
            content: '';
            position: absolute;
            left: -5px; right: -5px; bottom: 5px; height: 12px;
            background-color: rgba(34, 197, 94, 0.3); /* Hijau transparan */
            z-index: -1; border-radius: 4px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            text-align: left;
        }

        .blog-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
        }

        /* Variasi Card Pertama (Warna Terashost) */
        .blog-card.card-primary {
            background-color: var(--text-dark); /* Warna biru sangat gelap/navy */
            color: white;
            border: none;
        }

        .blog-card.card-primary p { color: #cbd5e1; }
        .blog-card.card-primary h3 { color: white; }

        .date-badge {
            display: inline-block;
            background-color: rgba(255,255,255,0.1);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            margin-bottom: 1.5rem;
            align-self: flex-start;
        }

        .badge-light {
            background-color: #fef08a; /* Kuning soft seperti referensi */
            color: var(--text-dark);
        }

        .blog-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .blog-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .author-info {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.85rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 1.5rem;
        }

        .card-primary .author-info {
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .author-avatar {
            width: 40px; height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* --- Support CTA & Contact Section --- */
        .support-contact-section {
            background-color: white;
            padding: 0 5% 5rem;
            text-align: center;
        }

        .support-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Kotak Dukungan */
        .support-cta-box {
            background-color: var(--primary-blue);
            color: white;
            padding: 3.5rem 2rem;
            border-radius: 20px;
            margin-bottom: 3rem;
            box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
        }

        .support-cta-box h2 {
            font-size: 2.2rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .support-cta-box p {
            font-size: 1.2rem;
            font-weight: 500;
        }

        /* Baris Kontak */
        .contact-links-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            padding-top: 3rem;
            border-top: 1px dashed #cbd5e1; /* Border putus-putus seperti referensi */
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            text-align: left;
            padding: 1rem;
            border-radius: 12px;
            transition: background-color 0.3s;
        }

        .contact-item:hover {
            background-color: var(--bg-light);
        }

        .contact-icon {
            font-size: 2.5rem;
        }

        .contact-text h4 {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 2px;
        }

        .contact-text p {
            font-size: 0.8rem;
            color: var(--text-gray);
        }
        /* --- FAQ & Guarantee Section --- */
        .faq-section {
            background-color: var(--bg-light);
            padding: 5rem 5%;
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: center;
        }

        /* Styling Bagian Kiri (Gambar & Badge) */
        .faq-image-wrapper {
            position: relative;
        }

        .faq-image {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .guarantee-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background-color: white;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(34, 197, 94, 0.15);
            display: flex;
            align-items: flex-start;
            gap: 15px;
            max-width: 320px;
            border-left: 5px solid var(--secondary-green);
        }

        .guarantee-icon i {
            font-size: 2rem;
            color: var(--secondary-green);
        }

        .guarantee-text h4 {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .guarantee-text p {
            font-size: 0.85rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        /* Styling Bagian Kanan (Accordion FAQ) */
        .faq-right h2 {
            font-size: 2.2rem;
            margin-bottom: 2rem;
        }

        .accordion {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .accordion-item {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item.active {
            border-color: var(--primary-blue);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.05);
        }

        .accordion-header {
            width: 100%;
            text-align: left;
            padding: 1.2rem 1.5rem;
            background: transparent;
            border: none;
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s ease;
        }

        .accordion-header:hover {
            color: var(--primary-blue);
        }

        .accordion-header .icon {
            font-size: 0.9rem;
            color: var(--primary-blue);
            transition: transform 0.3s ease;
        }

        /* Rotasi ikon saat accordion terbuka */
        .accordion-item.active .icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease;
            background-color: white;
        }

        .accordion-content p {
            padding: 0 1.5rem 1.2rem;
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        /* Responsif */
        @media (max-width: 992px) {
            .faq-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .faq-image-wrapper {
                max-width: 500px;
                margin: 0 auto;
            }
            .guarantee-badge {
                bottom: -15px;
                right: 0;
                left: 0;
                margin: 0 auto;
                width: 90%;
            }
        }
        /* --- Features Section --- */
        .features-section {
            background-color: var(--bg-light); /* Latar abu-abu sangat muda agar beda dengan section domain */
            padding: 5rem 5%;
            text-align: center;
        }

        .features-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-subtitle {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-gray);
            letter-spacing: 2px;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .features-section h2 {
            font-size: 2.5rem;
            margin-bottom: 4rem;
        }

        .features-section .highlight {
            position: relative;
            z-index: 1;
            color: var(--text-dark);
        }

        /* Efek garis stabilo kuning/hijau di bawah teks sesuai referensi */
        .features-section .highlight::after {
            content: '';
            position: absolute;
            left: -5px;
            right: -5px;
            bottom: 5px;
            height: 14px;
            background-color: rgba(250, 204, 21, 0.6); /* Kuning ala stabilo */
            z-index: -1;
            border-radius: 2px;
        }

        /* Grid Layout */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            text-align: left;
        }

        /* Item Fitur & Animasi Border */
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1.2rem;
            padding: 1.5rem;
            border: 1px solid transparent;
            border-radius: 8px;
            transition: all 0.3s ease;
            background-color: transparent;
        }

        /* Hover efek: memunculkan border tipis seperti di gambar referensi */
        .feature-item:hover {
            border-color: var(--text-dark);
            background-color: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            transform: translateY(-3px);
        }

        /* Ikon Default */
        .feature-icon {
            flex-shrink: 0; /* Agar ikon tidak mengecil */
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon i {
            font-size: 2.2rem;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }

        .feature-item:hover .feature-icon i {
            color: var(--primary-blue); /* Ikon berubah jadi biru saat di-hover */
        }

        /* Teks Fitur */
        .feature-text h4 {
            font-size: 1.15rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            line-height: 1.3;
        }

        .feature-text p {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Responsif untuk HP dan Tablet */
        @media (max-width: 992px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            .feature-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .feature-icon {
                margin-bottom: 0.5rem;
            }
        }
        /* --- Service Tabs --- */
        .service-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .tab-btn {
            background-color: transparent;
            border: 2px solid var(--border-color);
            color: var(--text-gray);
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-btn:hover {
            border-color: var(--primary-blue);
            color: var(--primary-blue);
        }

        .tab-btn.active {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            color: white;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
        }

        /* --- Billing Toggle --- */
        .billing-toggle-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .billing-label {
            font-weight: 600;
            color: var(--text-gray);
            transition: color 0.3s ease;
        }

        .billing-label.active-label {
            color: var(--text-dark);
        }

        .badge-hemat {
            background-color: #fef08a; /* Kuning soft */
            color: #854d0e;
            font-size: 0.75rem;
            padding: 0.2rem 0.6rem;
            border-radius: 20px;
            margin-left: 5px;
            font-weight: 700;
        }

        /* Tombol Switch (Toggle) */
        .switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }

        .switch input { 
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: var(--primary-blue);
            transition: .4s;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
        }

        input:checked + .slider {
            background-color: var(--secondary-green);
        }

        input:checked + .slider:before {
            transform: translateX(26px);
        }

        .slider.round {
            border-radius: 34px;
        }

        .slider.round:before {
            border-radius: 50%;
        }

        /* --- Tab Content Hiding --- */
        .service-content {
            display: none; /* Sembunyikan semua konten secara default */
            animation: fadeIn 0.5s;
        }

        .service-content.active-content {
            display: block; /* Tampilkan hanya yang aktif */
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- Pricing Card Styling --- */
        .pricing-card {
            align-items: flex-start;
            text-align: left;
            padding: 2.5rem 2rem;
        }

        .pricing-card.popular {
            border: 2px solid var(--primary-blue);
            transform: scale(1.05); /* Sedikit lebih besar */
        }

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .popular-badge {
            position: absolute;
            top: 0;
            right: 2rem;
            background-color: var(--primary-blue);
            color: white;
            padding: 0.4rem 1rem;
            font-size: 0.8rem;
            font-weight: 600;
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .plan-desc {
            font-size: 0.9rem;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            min-height: 40px;
        }

        .price-box {
            display: flex;
            align-items: baseline;
            margin-bottom: 2rem;
            color: var(--text-dark);
        }

        .price-box .currency {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .price-box .price-amount {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0 5px;
        }

        .price-box .price-period {
            color: var(--text-gray);
            font-weight: 500;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 2.5rem;
            width: 100%;
        }

        .feature-list li {
            margin-bottom: 1rem;
            font-size: 0.95rem;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-list li i {
            color: var(--secondary-green);
        }

        /* Fix layout untuk mobile agar card popular tidak off-screen */
        @media (max-width: 768px) {
            .pricing-card.popular {
                transform: scale(1);
            }
            .pricing-card.popular:hover {
                transform: translateY(-5px);
            }
            .service-tabs {
                flex-direction: column;
                align-items: stretch;
            }
        }
        /* --- Domain Search Section --- */
        .domain-search {
            background-color: white; 
            padding: 5rem 5%;
            text-align: center;
            border-top: 1px solid var(--border-color);
        }

        .domain-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .domain-subtitle {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--text-gray);
            letter-spacing: 2px;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .domain-search h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        /* Efek highlight kuning/hijau di belakang teks seperti di referensi */
        .domain-search .highlight {
            position: relative;
            z-index: 1;
            color: var(--text-dark);
        }

        .domain-search .highlight::after {
            content: '';
            position: absolute;
            left: -5px;
            right: -5px;
            bottom: 5px;
            height: 12px;
            background-color: rgba(34, 197, 94, 0.3); /* Hijau transparan */
            z-index: -1;
            border-radius: 4px;
        }

        /* Form Pencarian */
        .domain-form {
            display: flex;
            background: white;
            border-radius: 8px;
            padding: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            border: 1px solid var(--border-color);
            margin-bottom: 2rem;
            transition: box-shadow 0.3s ease;
        }

        .domain-form:focus-within {
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
            border-color: var(--primary-blue);
        }

        .domain-form input {
            flex: 1;
            border: none;
            padding: 1rem 1.5rem;
            font-size: 1.1rem;
            font-family: var(--font-body);
            outline: none;
            color: var(--text-dark);
            background: transparent;
        }

        .btn-search {
            background-color: var(--primary-blue);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 6px;
            font-size: 1rem;
            font-family: var(--font-heading);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-search:hover {
            background-color: var(--primary-hover);
        }

        /* Featured Domains */
        .featured-domains {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: white;
            overflow: hidden;
        }

        .domain-extension {
            padding: 1.5rem;
            border-right: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .domain-extension:last-child {
            border-right: none;
        }

        .ext {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        /* Memberikan warna berbeda untuk setiap TLD agar menarik seperti referensi */
        .ext-com { color: #ef4444; } /* Merah */
        .ext-coid { color: #d946ef; } /* Ungu */
        .ext-id { color: #f97316; } /* Oranye */
        .ext-myid { color: var(--primary-blue); } /* Biru */
        
        .price-label {
            font-size: 0.8rem;
            color: var(--text-gray);
            margin-bottom: 2px;
        }

        .price {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* Responsif untuk Domain Search */
        @media (max-width: 768px) {
            .domain-form {
                flex-direction: column;
                padding: 10px;
            }
            .domain-form input {
                padding: 1rem;
                text-align: center;
            }
            .btn-search {
                padding: 1rem;
                justify-content: center;
                width: 100%;
            }
            .featured-domains {
                grid-template-columns: repeat(2, 1fr);
            }
            .domain-extension:nth-child(2) { border-right: none; }
            .domain-extension:nth-child(1), .domain-extension:nth-child(2) {
                border-bottom: 1px solid var(--border-color);
            }
        }
        /* --- Footer --- */
        .site-footer {
            background-color: white;
            border-top: 1px solid var(--border-color);
            padding: 4rem 5% 2rem;
            margin-top: 4rem;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-column h4 {
            font-family: var(--font-heading);
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: var(--text-gray);
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-column ul li a:hover {
            color: var(--primary-blue);
        }

        /* Styling List Kontak */
        .contact-list li {
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
        }

        .contact-list i {
            color: var(--primary-blue);
            font-size: 1.1rem;
        }

        /* Styling Kolom Brand & Sosmed */
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
        }

        .logo-text-footer {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .brand-column p {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .social-icons {
            display: flex;
            gap: 12px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background-color: var(--bg-light);
            color: var(--primary-blue);
            border-radius: 50%;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icons a:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
        }

        /* Copyright Area */
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        /* Variabel Warna Utama sesuai permintaan */
        :root {
            --primary-blue: #2563EB;
            --primary-hover: #1d4ed8;
            --secondary-green: #22C55E;
            --secondary-hover: #16a34a;
            --bg-light: #f8fafc;
            --text-dark: #0f172a;
            --text-gray: #64748b;
            --border-color: #e2e8f0;
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-heading);
        }

        a {
            text-decoration: none;
        }

        /* --- Navbar --- */
        header {
            background-color: white;
            padding: 1.5rem 5%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            font-size: 2rem;
            color: var(--primary-blue);
        }

        .logo-text h1 {
            font-size: 1.5rem;
            color: var(--text-dark);
            line-height: 1.2;
        }

        .logo-text span {
            font-size: 0.8rem;
            color: var(--primary-blue);
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            font-weight: 500;
        }

        .nav-links a {
            color: var(--text-dark);
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }
        /* --- Update Layout Header Kanan --- */
        .header-right {
            display: flex;
            align-items: center;
            gap: 2rem; /* Jarak antara menu navigasi dan tombol login */
        }

        /* --- Styling Tombol Login Outline --- */
        .btn-login {
            background-color: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            padding: 0.5rem 1.2rem;
            border-radius: 8px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px; /* Jarak antara ikon dan teks Login */
        }

        .btn-login:hover {
            background-color: var(--primary-blue);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
        }

        .btn-login:active {
            transform: scale(0.95);
        }

        /* --- Hero Section --- */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 5rem 5%;
            background-color: white;
            gap: 2rem;
        }

        .hero-text {
            flex: 1;
        }

        .hero-text h2 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .hero-text p {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
            max-width: 90%;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        /* Placeholder untuk ilustrasi hero besar */
        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
        }

        /* --- Services/Products Section --- */
        .services {
            padding: 5rem 5%;
            text-align: center;
        }

        .services h2 {
            font-size: 2.2rem;
            margin-bottom: 3rem;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        /* --- Card Styling & Animations --- */
        .card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 2.5rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            position: relative;
        }

        .card-icon {
            font-size: 3.5rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        /* Hover Animation pada Card */
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
            border-color: var(--primary-blue);
        }

        /* Efek ikon membesar sedikit saat card di-hover */
        .card:hover .card-icon {
            transform: scale(1.1);
        }

        /* Click/Active Animation pada Card */
        .card:active {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
        }

        /* Variasi Card Domain (Border Hijau saat hover) */
        .card.domain-card:hover {
            border-color: var(--secondary-green);
            box-shadow: 0 15px 30px rgba(34, 197, 94, 0.1);
        }
        .card.domain-card .card-icon {
            color: var(--secondary-green);
        }

        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .card p {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        /* --- Buttons --- */
        .btn {
            width: 100%;
            padding: 0.8rem;
            border: none;
            border-radius: 8px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .btn-primary {
            background-color: var(--primary-blue);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--primary-hover);
        }

        .btn-secondary {
            background-color: var(--secondary-green);
            color: white;
        }

        .btn-secondary:hover {
            background-color: var(--secondary-hover);
        }

        /* Animasi Click pada Tombol */
        .btn:active {
            transform: scale(0.95);
        }

        /* Responsif untuk HP */
        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 3rem 5%;
            }
            .hero-text p {
                margin: 0 auto 2rem;
            }
            .nav-links {
                display: none; /* Menyembunyikan teks menu agar header tidak penuh di HP */
            }
            .header-right {
                gap: 1rem;
            }
            .btn-login {
                padding: 0.4rem 0.8rem;
                font-size: 0.85rem;
            }
        }
        /* =========================================
   HALAMAN SPESIFIK (HOSTING, SERVER, DLL)
   ========================================= */

/* Page Hero Background */
.page-hero {
    background: linear-gradient(to right, #f8fafc, #e0e7ff); /* Gradien biru sangat soft */
    padding: 6rem 5% 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Technical Specs Table */
.tech-specs-section {
    padding: 5rem 5%;
    background-color: white;
}

.tech-specs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.table-responsive {
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.specs-table th, .specs-table td {
    padding: 1.2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.specs-table th:first-child, .specs-table td:first-child {
    text-align: left;
    background-color: var(--bg-light);
}

.specs-table th {
    background-color: var(--text-dark);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
}

.specs-table th:first-child {
    background-color: #1e293b; /* Warna gelap sedikit beda untuk kolom header pertama */
}

.specs-table tbody tr:hover {
    background-color: #f8fafc;
}

.specs-table td {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.specs-table td strong {
    color: var(--text-dark);
}


/* =========================================
   PREMIUM FEATURES SECTION (Layout 4 Kolom)
   ========================================= */
.premium-features-section {
    padding: 6rem 5%;
    background-color: var(--bg-light); /* Latar belakang abu-abu sangat muda */
}

.premium-features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title-center {
    text-align: center;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle-center {
    text-align: center;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 3.5rem;
}

/* Grid 4 Kolom */
.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Desain Kartu (Mirip Screenshot) */
.premium-feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.premium-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--primary-blue);
}

/* Pembungkus Ikon Besar di Atas */
.premium-icon-wrapper {
    font-size: 4rem; /* Ukuran ikon diperbesar agar mirip ilustrasi SVG */
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Jika Anda mengganti ikon FontAwesome dengan gambar (.png/.svg) dari desainer Anda, atur lebarnya di sini */
.premium-icon-wrapper img {
    max-width: 100px;
    height: auto;
}

.premium-feature-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

/* Garis pembatas teks / Subtitle kecil (seperti tulisan "Inter" di screenshot Anda) */
.premium-feature-card .subtitle-divider {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.premium-feature-card .desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsif untuk Layar Tablet dan HP */
@media (max-width: 1024px) {
    .premium-features-grid {
        grid-template-columns: repeat(2, 1fr); /* Berubah jadi 2 kolom di tablet */
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .premium-features-grid {
        grid-template-columns: 1fr; /* Berubah jadi 1 kolom bertumpuk di HP */
    }
}


/* =========================================
   1. HEADER & NAVIGATION (TERMASUK DROPDOWN)
   ========================================= */
header {
    background-color: white;
    padding: 1.5rem 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary-blue);
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.8rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
}

.nav-links a {
    color: var(--text-dark);
    transition: color 0.3s;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* --- Dropdown Menu Styling --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-content {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 20px;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    margin-top: 15px;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

.dropbtn i {
    transition: transform 0.3s ease;
}

.dropdown-content a {
    padding: 12px 20px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.dropdown-content a:first-child { border-top-left-radius: 10px; border-top-right-radius: 10px; }
.dropdown-content a:last-child { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary-blue);
    padding-left: 25px; /* Teks bergeser halus saat disorot */
}

/* --- Styling Tombol Login --- */
.btn-login {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-login:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
}

.btn-login:active {
    transform: scale(0.95);
}

/* --- Responsif Header (HP) --- */
@media (max-width: 768px) {
    .nav-links { display: none; /* Sembunyikan menu desktop di HP */ }
    .header-right { gap: 1rem; }
    .btn-login { padding: 0.4rem 0.8rem; font-size: 0.85rem; }
}
        