/* ============================================================
   1. RESET & DASAR (Body & Font)
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #334155;
    background-color: #ffffff;
    line-height: 1.6;
}

/* ============================================================
   2. NAVBAR (NAVIGASI ATAS)
   ============================================================ */
.navbar {
    background-color: #ffffff;
    height: 75px;
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    position: sticky;
    top: 0;
    z-index: 9999; /* Agar selalu di paling depan */
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 24px;
    text-decoration: none;
    color: #1e293b;
}

.menu-desktop a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    margin-left: 20px;
}

.btn-daftar {
    background-color: #2563eb;
    color: #ffffff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
}

/* ============================================================
   3. MOBILE MENU & HAMBURGER
   ============================================================ */
#hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.garis-menu {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2563eb;
    margin: 5px 0;
}

#mobile-overlay {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    height: 0; /* Awalnya tertutup */
    background-color: #ffffff;
    z-index: 9998; /* Di bawah navbar sedikit */
    overflow: hidden;
    transition: 0.4s;
}

#mobile-overlay.aktif {
    height: 250px;
    border-bottom: 3px solid #2563eb;
}

.mobile-box {
    display: flex;
    flex-direction: column;
    padding: 30px;
    text-align: center;
}

.mobile-box a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 700;
    padding: 15px 0;
}

/* ============================================================
   4. HERO SECTION (BAGIAN ATAS)
   ============================================================ */
.hero {
    padding: 80px 5%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge-solusi {
    background-color: #f0fdf4;
    color: #16a34a;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    border: 1px solid #dcfce7;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.biru-highlight {
    color: #2563eb;
}

.hero p {
    color: #64748b;
    font-size: 18px;
    margin: 20px 0 30px 0;
}

.btn-utama {
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 18px;
    display: inline-block;
}

.ceklist-group {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #64748b;
}

/* ============================================================
   5. BAGIAN MASALAH (CARA LAMA)
   ============================================================ */
.masalah-container {
    background-color: #fff5f5; /* Warna pink/merah muda */
    padding: 80px 5%;
    text-align: center;
}

.judul-lama {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

.teks-merah {
    color: #e11d48;
}

.grid-masalah {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.kartu-masalah {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 15px;
    text-align: left;
    border-left: 6px solid #e11d48;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.kartu-masalah h3 {
    margin-bottom: 10px;
    color: #0f172a;
}

/* ============================================================
   6. ANIMASI REVEAL (SCROLL)
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s all ease;
}

.reveal.muncul {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   7. RESPONSIVE UNTUK HP
   ============================================================ */
@media (max-width: 768px) {
    .menu-desktop {
        display: none;
    }
    
    #hamburger-btn {
        display: block;
    }

    .hero h1 {
        font-size: 28px;
    }

    .ceklist-group {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- Kode untuk Awal atau landingpagenya ya--- */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

/* --- Section Solusi --- */
.solusi-container {
    padding: 80px 20px;
    background: #ffffff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tag-solusi {
    background: #ecfdf5;
    color: #059669;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.judul-solusi {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

.highlight {
    color: #2563eb;
}

.sub-judul {
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
    margin: 20px 0 40px;
}

.btn-utama {
    background: #2563eb;
    color: white;
    padding: 18px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
    transition: 0.3s;
}

.btn-utama:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.check-list {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.check-list span {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 600;
}

.check-list i {
    color: #22c55e;
    margin-right: 5px;
}

/* --- Section Pricing --- */
.pricing-container {
    padding: 100px 20px;
    background: #f8fafc;
    text-align: center;
}

.judul-pricing {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}

.teks-biru { color: #2563eb; }

.grid-pricing {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.kartu-pricing {
    background: white;
    padding: 40px;
    border-radius: 30px;
    width: 100%;
    max-width: 350px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: 0.3s;
}

.kartu-pricing.populer {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.badge-populer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
}

.price-header h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 30px;
}

.price span {
    font-size: 16px;
    color: #94a3b8;
}

.fitur-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
}

.fitur-list li {
    padding: 12px 0;
    color: #475569;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fitur-list i {
    color: #2563eb;
    width: 20px;
}

.btn-outline {
    border: 2px solid #e2e8f0;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 700;
    display: block;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #f1f5f9;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .judul-solusi { font-size: 28px; }
    .kartu-pricing.populer { transform: scale(1); }
    .grid-pricing { gap: 40px; }
}


/*  Kode Untuk Cara kerjanya ya*/
/* --- Section Cara Kerja --- */
.cara-kerja {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.container-kecil {
    max-width: 1100px;
    margin: 0 auto;
}

.grid-langkah {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.kartu-langkah {
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 30px;
    position: relative;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.kartu-langkah:hover {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
}

.nomor {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.ikon-langkah {
    font-size: 32px;
    color: #2563eb;
    margin-bottom: 20px;
}

.kartu-langkah h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.kartu-langkah p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

/* --- Dekorasi Tambahan (Garis Penghubung di Desktop) --- */
@media (min-width: 992px) {
    .grid-langkah {
        position: relative;
    }
    /* Garis putus-putus antar kartu */
    .kartu-langkah:not(:last-child)::after {
        content: '→';
        position: absolute;
        right: -25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 30px;
        color: #cbd5e1;
        font-weight: 300;
    }
}

@media (max-width: 768px) {
    .grid-langkah { gap: 50px; }
    .cara-kerja { padding: 60px 20px; }
}

/* --- Tambahan/Revisi di style-landing.css --- */

.price {
    font-size: 38px; /* Sedikit dikecilkan agar teks "100 transaksi" muat */
    font-weight: 800;
    color: #1e293b;
    margin: 20px 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price span {
    font-size: 16px;
    color: #94a3b8;
    font-weight: 500;
}

.sub-judul-pricing {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #64748b;
    line-height: 1.6;
}

/* Warna khusus untuk Paket Gratis agar tidak terlalu mencolok dibanding yang berbayar */
.btn-outline {
    border: 2px solid #e2e8f0;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 700;
    display: block;
    transition: 0.3s;
    text-align: center;
}

.btn-outline:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

/* --- Revisi CSS Pricing 4 Kolom --- */
.pricing-container {
    padding: 80px 20px;
    background: #f8fafc;
    text-align: center;
}

.grid-pricing-four {
    display: grid;
    /* Grid 4 kolom untuk desktop */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.kartu-pricing {
    background: white;
    padding: 30px 20px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
    position: relative;
}

.kartu-pricing:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.kartu-pricing.populer {
    border: 2px solid #2563eb;
    background: #ffffff;
}

/* Penyesuaian teks harga agar muat di kolom kecil */
.price {
    font-size: 28px;
    font-weight: 800;
    margin: 15px 0;
    color: #1e293b;
}

.price span {
    font-size: 14px;
    color: #94a3b8;
}

.fitur-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.fitur-list li {
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
}

.fitur-list li.disabled {
    color: #cbd5e1;
}

/* Responsif Tablet & Mobile */
@media (max-width: 1024px) {
    .grid-pricing-four {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom di tablet */
    }
}

@media (max-width: 640px) {
    .grid-pricing-four {
        grid-template-columns: 1fr; /* 1 kolom di HP */
    }
    .kartu-pricing {
        max-width: 350px;
        margin: 0 auto;
    }
}


.faq-section {
    padding: 80px 20px;
    background: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.faq-item {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid #2563eb;
}

.faq-item h4 {
    color: #1e293b;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 14px;
}

@media (max-width: 640px) {
    .faq-grid { grid-template-columns: 1fr; }
}

.footer-utama {
    background: #0f172a;
    color: #f8fafc;
    padding: 80px 20px 20px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 40px;
}

.footer-info p {
    color: #94a3b8;
    line-height: 1.6;
    margin-top: 15px;
    font-size: 14px;
}

.footer-kontak h4, .footer-alamat h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-kontak ul {
    list-style: none;
    padding: 0;
}

.footer-kontak li {
    margin-bottom: 15px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.footer-alamat p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 14px;
}

.link-maps {
    display: inline-block;
    margin-top: 10px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    color: #64748b;
    font-size: 12px;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
}

/* Hover Effect Sosmed */
.sosmed-icons a {
    color: #94a3b8;
    font-size: 20px;
    margin-right: 15px;
    transition: 0.3s;
}

.sosmed-icons a:hover {
    color: #2563eb;
}