/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    background: #f0f6ff;
    color: #1a2a4a;
    line-height: 1.6;
    padding-top: 80px;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(26, 115, 232, 0.3);
    text-decoration: none;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(26, 115, 232, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid #1a73e8;
    color: #1a73e8;
    padding: 10px 28px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}
.btn-outline:hover {
    background: #1a73e8;
    color: #fff;
}

.btn-qris {
    background: linear-gradient(135deg, #0d47a1, #1a73e8);
    color: #fff;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(26, 115, 232, 0.3);
    font-size: 1rem;
    text-decoration: none;
}
.btn-qris:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(26, 115, 232, 0.4);
}

.btn-success {
    background: linear-gradient(135deg, #00a86b, #00c853);
    color: #fff;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 168, 107, 0.3);
    font-size: 1rem;
    text-decoration: none;
}
.btn-success:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 168, 107, 0.4);
}

/* ===== HEADER ===== */
header {
    padding: 18px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 115, 232, 0.08);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 800;
    color: #0d47a1;
}
.logo .icon-wifi {
    font-size: 1.8rem;
    color: #1a73e8;
}
.logo span {
    color: #1a73e8;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    font-weight: 500;
    font-size: 0.95rem;
}
.nav-links a {
    color: #2a4a6a;
    transition: 0.3s;
}
.nav-links a:hover {
    color: #1a73e8;
}
.nav-links a.active {
    color: #1a73e8;
    font-weight: 700;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-dots {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #1a73e8;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 12px;
}
.menu-dots:hover {
    background: rgba(26, 115, 232, 0.06);
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 50px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(26, 115, 232, 0.06);
    padding: 12px 0;
    min-width: 200px;
    z-index: 1001;
}
.dropdown-menu.active {
    display: block;
    animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: #2a4a6a;
    font-weight: 500;
    transition: 0.2s;
    font-size: 0.95rem;
    text-decoration: none;
}
.dropdown-menu a:hover {
    background: #f0f6ff;
    color: #1a73e8;
}
.dropdown-menu a i {
    margin-right: 10px;
    width: 20px;
    color: #1a73e8;
}
.dropdown-menu .menu-divider {
    border-top: 1px solid rgba(26, 115, 232, 0.06);
    margin: 6px 0;
}

/* ===== SECTION ===== */
section {
    padding: 60px 0;
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a73e8;
    margin-bottom: 12px;
}
.section-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #0d2b5a;
}
.section-title .gradient {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-desc {
    color: #5a7a9a;
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.8;
}
.text-center {
    text-align: center;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ===== HERO ===== */
.hero {
    padding: 40px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e3edfc 0%, #f0f6ff 50%, #ffffff 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 115, 232, 0.08);
    border: 1px solid rgba(26, 115, 232, 0.12);
    padding: 8px 20px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a73e8;
    margin-bottom: 24px;
}
.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #0d2b5a;
}
.hero-text h1 .gradient {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-text .subtitle {
    font-size: 1.1rem;
    color: #4a6a8a;
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.8;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}
.hero-stats .stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #0d47a1;
}
.hero-stats .stat p {
    color: #6a8aaa;
    font-size: 0.9rem;
}
.hero-visual img {
    max-width: 100%;
    width: 400px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(26, 115, 232, 0.12);
}

/* ===== BENEFIT ===== */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.benefit-card {
    background: #ffffff;
    border: 1px solid rgba(26, 115, 232, 0.06);
    border-radius: 24px;
    padding: 28px 24px;
    transition: 0.4s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
}
.benefit-card:hover {
    transform: translateY(-6px);
    border-color: rgba(26, 115, 232, 0.15);
}
.benefit-card .icon {
    font-size: 2.4rem;
    color: #1a73e8;
    margin-bottom: 12px;
}
.benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #0d2b5a;
}
.benefit-card p {
    color: #5a7a9a;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== PAKET ===== */
.paket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.paket-card {
    background: #ffffff;
    border: 1px solid rgba(26, 115, 232, 0.06);
    border-radius: 28px;
    padding: 32px 28px;
    transition: 0.4s;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.paket-card:hover {
    transform: translateY(-8px);
    border-color: rgba(26, 115, 232, 0.15);
    box-shadow: 0 20px 60px rgba(26, 115, 232, 0.08);
}
.paket-card .popular {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, #0d47a1, #1a73e8);
    color: #fff;
    padding: 4px 16px;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.paket-card .speed {
    font-size: 2.6rem;
    font-weight: 800;
    margin: 8px 0 4px;
    color: #0d2b5a;
}
.paket-card .speed small {
    font-size: 1rem;
    font-weight: 400;
    color: #7a9abb;
}
.paket-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a73e8;
    margin: 12px 0 4px;
}
.paket-card .price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: #7a9abb;
}
.paket-card .price-note {
    font-size: 0.8rem;
    color: #8aaac0;
    margin-bottom: 20px;
}
.paket-card ul {
    list-style: none;
    margin: 20px 0 28px;
}
.paket-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(26, 115, 232, 0.04);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #2a4a6a;
}
.paket-card ul li i {
    color: #1a73e8;
    font-size: 0.8rem;
}
.paket-card .btn-qris {
    width: 100%;
    justify-content: center;
}

/* ===== FAQ ===== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}
.faq-item {
    background: #ffffff;
    border: 1px solid rgba(26, 115, 232, 0.06);
    border-radius: 16px;
    padding: 20px 24px;
    transition: 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
}
.faq-item:hover {
    border-color: rgba(26, 115, 232, 0.12);
}
.faq-item h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: #0d2b5a;
    display: flex;
    align-items: center;
    gap: 10px;
}
.faq-item h4 i {
    color: #1a73e8;
}
.faq-item p {
    color: #5a7a9a;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, #e3edfc, #f0f6ff);
    border: 1px solid rgba(26, 115, 232, 0.06);
    border-radius: 40px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 20px;
}
.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0d2b5a;
}
.cta-section h2 span {
    color: #1a73e8;
}
.cta-section p {
    color: #4a6a8a;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 28px;
}

/* ===== FOOTER ===== */
footer {
    padding: 50px 0 30px;
    border-top: 1px solid rgba(26, 115, 232, 0.06);
    margin-top: 40px;
    background: #ffffff;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}
.footer-grid h4 {
    font-size: 1rem;
    margin-bottom: 14px;
    color: #0d2b5a;
}
.footer-grid p, .footer-grid li {
    color: #5a7a9a;
    font-size: 0.9rem;
    line-height: 1.8;
}
.footer-grid ul {
    list-style: none;
}
.footer-grid ul li a:hover {
    color: #1a73e8;
}
.footer-bottom {
    border-top: 1px solid rgba(26, 115, 232, 0.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: #7a9abb;
}
.footer-bottom .socials {
    display: flex;
    gap: 16px;
}
.footer-bottom .socials a {
    color: #7a9abb;
    transition: 0.3s;
}
.footer-bottom .socials a:hover {
    color: #1a73e8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text .subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual img {
        width: 300px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    body {
        padding-top: 70px;
    }
    .logo {
        font-size: 1.3rem;
    }
    .logo .icon-wifi {
        font-size: 1.4rem;
    }
    .nav-links {
        display: none;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-stats .stat h3 {
        font-size: 1.5rem;
    }
    .hero-visual img {
        width: 220px;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .paket-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cta-section {
        padding: 30px 20px;
    }
    .cta-section h2 {
        font-size: 1.6rem;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
}