* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
}

    .container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}


/* Navbar */
header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}


nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Hero */
.hero {
    background: linear-gradient(90deg, #0a2a66, #1e90ff);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
}

/* Features */
.features {
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
    gap: 20px;
}

.feature-box {
    background: white;
    padding: 25px;
    flex: 1;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* Pricing */
.pricing {
    text-align: center;
    padding: 50px 0;
    background: white;
}

.pricing h2 {
    margin-bottom: 30px;
}

.pricing-grid {
    display: flex;
    gap: 20px;
}
.area-info {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    margin-bottom: 25px;
}

.card {
    flex: 1;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.card h3 {
    margin-bottom: 10px;
}

.card h2 {
    color: #1e90ff;
    margin: 15px 0;
}



/* Promo */
.promo {
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.promo h2 {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #0a2a66;
    color: white;
    text-align: center;
    padding: 15px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.pricing-table th,
.pricing-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background: #1e90ff;
    color: white;
}

.pricing-table tr:hover {
    background: #f5f5f5;
}

.terms {
    margin-top: 40px;
    text-align: left;
    background: #f9f9f9;
    padding-left: 20px;
    border-radius: 10px;
    font-size: 14px;
    color: #555;
}



.terms h3 {
    text-align: left;
    margin-bottom: 10px;
}

.terms ul {
    padding-left: 20px;
}

.terms li {
    margin-bottom: 6px;
}

/* Header Enterprise: kiri judul, kanan logo */
.enterprise-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

/* Logo kanan */
.logo-megadata {
    height: 45px;
    width: auto;
}


/* Responsive */
@media(max-width: 768px) {
    .features,
    .pricing-grid {
        flex-direction: column;
    }
}

.wa-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.wa-button:hover {
    background: #1ebe5d;
}

/* Responsive */
@media (max-width: 768px) {

    /* Navbar jadi kolom */
    .nav {
        flex-direction: column;
        gap: 10px;
    }

    nav a {
        margin: 5px;
    }

    /* Hero lebih kecil */
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    /* Features jadi ke bawah */
    .features {
        flex-direction: column;
    }

    /* Paket jadi ke bawah */
    .pricing-grid {
        flex-direction: column;
    }

    /* Card full width */
    .feature-box,
    .card {
        width: 100%;
    }

    /* Tombol WA lebih kecil di HP */
    .wa-button {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .enterprise-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .logo-megadata {
        height: 35px;
    }
}
