/* assets/css/style.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f8fafc;
    color:#0f172a;
    overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    background:rgba(255,255,255,0.88);
    backdrop-filter:blur(12px);
    border-bottom:1px solid #e2e8f0;
}

.nav-container{
    max-width:1200px;
    margin:auto;
    padding:18px 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
}

.logo{
    font-size:24px;
    font-weight:800;
    color:#2563eb;
}

.menu{
    display:flex;
    gap:28px;
    align-items:center;
}

.menu a{
    text-decoration:none;
    color:#334155;
    font-weight:600;
    transition:0.25s;
}

.menu a:hover{
    color:#2563eb;
}

.btn-nav{
    background:#2563eb;
    color:#fff !important;
    padding:12px 20px;
    border-radius:14px;
}

.hamburger{
    display:none;
    width:44px;
    height:44px;
    border-radius:14px;
    align-items:center;
    justify-content:center;
    background:#eff6ff;
    color:#2563eb;
    cursor:pointer;
    font-size:20px;
}

/* =========================
   HERO
========================= */

.hero{
    max-width:1200px;
    margin:auto;
    padding:160px 24px 110px;
    text-align:center;
}

.badge{
    display:inline-block;
    background:#dbeafe;
    color:#2563eb;
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:24px;
}

.hero h1{
    font-size:72px;
    line-height:1.05;
    font-weight:800;
    margin-bottom:24px;
}

.hero h1 span{
    color:#2563eb;
}

.hero p{
    max-width:760px;
    margin:auto;
    color:#64748b;
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
}

.btn{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    padding:18px 34px;
    border-radius:18px;
    font-weight:700;
    font-size:16px;
    transition:0.25s;
    box-shadow:0 10px 30px rgba(37,99,235,0.2);
}

.btn:hover{
    transform:translateY(-3px);
}

.checklist{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.checklist span{
    background:#fff;
    border:1px solid #e2e8f0;
    padding:12px 18px;
    border-radius:14px;
    font-size:14px;
    font-weight:600;
}

/* =========================
   STEPS
========================= */

.steps{
    max-width:1200px;
    margin:auto;
    padding:40px 24px 100px;
}

.section-title{
    text-align:center;
    font-size:44px;
    margin-bottom:60px;
    font-weight:800;
}

.section-title span{
    color:#2563eb;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.step-card{
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    border:1px solid #e2e8f0;
    transition:0.25s;
}

.step-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.05);
}

.step-number{
    width:60px;
    height:60px;
    border-radius:18px;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:22px;
    margin-bottom:24px;
}

.step-card h3{
    font-size:24px;
    margin-bottom:14px;
}

.step-card p{
    color:#64748b;
    line-height:1.7;
}

/* =========================
   FOOTER
========================= */

.footer{
    margin-top:80px;
    background:#0f172a;
    color:#fff;
    padding:70px 24px 30px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.footer h2{
    font-size:28px;
    margin-bottom:16px;
}

.footer p{
    color:#cbd5e1;
    line-height:1.8;
}

.footer-bottom{
    margin-top:50px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    color:#94a3b8;
}

/* =========================
   WEBESKPOR SCROLL EFFECT
========================= */

.webeskpor{
    opacity:0;
    transform:translateY(90px) scale(.96);
    transition:
    opacity 1s ease,
    transform 1s cubic-bezier(.16,1,.3,1);
}

.webeskpor.muncul{
    opacity:1;
    transform:translateY(0) scale(1);
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .hero h1{
        font-size:48px;
    }

    .hero p{
        font-size:17px;
    }

    .steps-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .hamburger{
        display:flex;
    }

    .menu{
        position:absolute;
        top:82px;
        left:0;
        width:100%;
        background:#fff;
        border-bottom:1px solid #e2e8f0;

        flex-direction:column;
        align-items:flex-start;

        padding:28px 24px;
        gap:24px;

        opacity:0;
        visibility:hidden;
        transform:translateY(-10px);

        transition:0.25s;
    }

    .menu.active{
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .menu a{
        width:100%;
    }

    .btn-nav{
        width:100%;
        text-align:center;
    }

}

@media(max-width:600px){

    .hero{
        padding-top:130px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:16px;
    }

    .section-title{
        font-size:32px;
    }

    .btn{
        width:100%;
    }

    .checklist{
        flex-direction:column;
    }

}

/* =========================
   JELAJAHI TOKO
========================= */

.explore-header{
    padding:150px 24px 70px;
    text-align:center;
}

.explore-container{
    max-width:900px;
    margin:auto;
}

.explore-badge{
    display:inline-block;
    background:#dbeafe;
    color:#2563eb;
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:24px;
}

.explore-header h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:24px;
    font-weight:800;
}

.explore-header h1 span{
    color:#2563eb;
}

.explore-header p{
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}

.explore-section{
    padding:0 24px 100px;
}

.explore-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

.shop-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:28px;
    overflow:hidden;
    text-decoration:none;
    transition:0.25s;
}

.shop-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.shop-cover{
    width:100%;
    height:220px;
    background:#eff6ff;
    overflow:hidden;
}

.shop-cover img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.shop-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:64px;
}

.shop-content{
    padding:28px;
}

.shop-content h3{
    font-size:24px;
    margin-bottom:14px;
    color:#0f172a;
}

.shop-content p{
    color:#64748b;
    margin-bottom:24px;
    line-height:1.7;
}

.shop-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#2563eb;
    color:#fff;
    padding:14px 20px;
    border-radius:14px;
    font-weight:700;
}

/* MOBILE */

@media(max-width:600px){

    .explore-header{
        padding-top:130px;
    }

    .explore-header h1{
        font-size:38px;
    }

    .explore-header p{
        font-size:16px;
    }

}

/* =========================================
   STYLE BARU JEMBATAN STORE
========================================= */

:root{
    --biru:#2563eb;
    --biru-soft:#dbeafe;
    --gelap:#0f172a;
    --abu:#64748b;
    --putih:#ffffff;
    --bg:#f8fafc;
}

body{
    background:var(--bg);
}

/* HERO */

.hero{
    max-width:1200px;
    margin:auto;
    padding:170px 24px 120px;
    text-align:center;
}

.badge-solusi{
    display:inline-block;
    background:var(--biru-soft);
    color:var(--biru);
    padding:12px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:26px;
}

.hero h1{
    font-size:68px;
    line-height:1.08;
    font-weight:800;
    margin-bottom:24px;
    color:var(--gelap);
}

.biru-highlight{
    color:var(--biru);
}

.hero p{
    max-width:820px;
    margin:auto;
    color:var(--abu);
    line-height:1.9;
    font-size:20px;
    margin-bottom:40px;
}

.btn-utama{
    display:inline-block;
    background:var(--biru);
    color:#fff;
    text-decoration:none;
    padding:18px 34px;
    border-radius:18px;
    font-weight:700;
    transition:.25s;
    box-shadow:0 14px 40px rgba(37,99,235,.22);
}

.btn-utama:hover{
    transform:translateY(-4px);
}

.btn-outline{
    display:inline-block;
    border:2px solid #dbeafe;
    color:var(--biru);
    text-decoration:none;
    padding:16px 28px;
    border-radius:18px;
    font-weight:700;
    transition:.25s;
}

.btn-outline:hover{
    background:var(--biru);
    color:#fff;
}

.ceklist-group{
    margin-top:34px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.ceklist-group span{
    background:#fff;
    border:1px solid #e2e8f0;
    padding:12px 18px;
    border-radius:14px;
    font-weight:600;
    font-size:14px;
}

/* SECTION */

.container-kecil{
    max-width:1100px;
    margin:auto;
    padding:0 24px;
}

.judul-section{
    text-align:center;
    font-size:48px;
    font-weight:800;
    margin-bottom:18px;
}

.sub-judul-section{
    text-align:center;
    color:var(--abu);
    line-height:1.8;
    max-width:780px;
    margin:auto auto 60px;
}

/* CARA KERJA */

.cara-kerja{
    padding:40px 0 110px;
}

.grid-langkah{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.kartu-langkah{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:28px;
    padding:38px;
    transition:.3s;
    position:relative;
}

.kartu-langkah:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.06);
}

.nomor{
    width:58px;
    height:58px;
    border-radius:18px;
    background:var(--biru);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    margin-bottom:24px;
}

.ikon-langkah{
    font-size:34px;
    color:var(--biru);
    margin-bottom:22px;
}

.kartu-langkah h3{
    font-size:26px;
    margin-bottom:14px;
}

.kartu-langkah p{
    color:var(--abu);
    line-height:1.8;
}

/* TABEL */

.perbandingan-section{
    padding:40px 24px 110px;
}

.tabel-modern-wrapper{
    overflow:auto;
    background:#fff;
    border-radius:28px;
    border:1px solid #e2e8f0;
}

.tabel-modern{
    width:100%;
    border-collapse:collapse;
}

.tabel-modern th{
    background:#eff6ff;
    padding:24px;
    font-size:16px;
    text-align:left;
}

.tabel-modern td{
    padding:22px 24px;
    border-top:1px solid #e2e8f0;
}

.best-choice{
    color:var(--biru);
    font-weight:700;
}

.col-special{
    color:var(--biru);
}

.pencairan-note{
    text-align:center;
    margin-top:20px;
    color:#94a3b8;
    font-size:14px;
}

/* PRICING */

.pricing-container{
    max-width:1300px;
    margin:auto;
    padding:40px 24px 120px;
}

.judul-pricing{
    text-align:center;
    font-size:52px;
    font-weight:800;
    margin-bottom:18px;
}

.sub-judul-pricing{
    text-align:center;
    max-width:760px;
    margin:auto auto 60px;
    color:var(--abu);
    line-height:1.8;
}

.teks-biru{
    color:var(--biru);
}

.grid-pricing-four{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.kartu-pricing{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:30px;
    padding:34px;
    position:relative;
    transition:.3s;
}

.kartu-pricing:hover{
    transform:translateY(-8px);
}

.populer{
    border:2px solid var(--biru);
}

.badge-populer{
    position:absolute;
    top:-14px;
    right:24px;
    background:var(--biru);
    color:#fff;
    padding:8px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
}

.price-header h3{
    font-size:28px;
    margin-bottom:12px;
}

.price{
    font-size:48px;
    font-weight:800;
    color:var(--gelap);
}

.price span{
    font-size:15px;
    color:var(--abu);
}

.fitur-list{
    list-style:none;
    margin:34px 0;
}

.fitur-list li{
    margin-bottom:18px;
    color:#334155;
}

.fitur-list i{
    color:var(--biru);
    margin-right:10px;
}

.disabled{
    opacity:.45;
}

/* FAQ */

.faq-section{
    padding:20px 24px 120px;
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.faq-item{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:24px;
    padding:30px;
}

.faq-item h4{
    font-size:20px;
    margin-bottom:18px;
    line-height:1.5;
}

.faq-item p{
    color:var(--abu);
    line-height:1.9;
}

/* FOOTER */

.footer-utama{
    background:#0f172a;
    color:#fff;
    padding:80px 24px 30px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.logo-footer{
    margin-bottom:18px;
}

.footer-utama p,
.footer-utama li{
    color:#cbd5e1;
    line-height:1.8;
}

.footer-utama ul{
    list-style:none;
}

.footer-utama a{
    color:#93c5fd;
    text-decoration:none;
}

.sosmed-icons{
    display:flex;
    gap:14px;
    margin-top:20px;
}

.sosmed-icons a{
    width:44px;
    height:44px;
    border-radius:14px;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
}

.footer-bottom{
    max-width:1200px;
    margin:50px auto 0;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
}

/* ANIMASI */

.reveal{
    opacity:0;
    transform:translateY(70px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVE */

@media(max-width:1100px){

    .grid-pricing-four{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:900px){

    .hero h1{
        font-size:48px;
    }

    .grid-langkah,
    .faq-grid,
    .footer-container{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .judul-section,
    .judul-pricing{
        font-size:36px;
    }

}

@media(max-width:600px){

    .hero{
        padding-top:140px;
    }

    .hero h1{
        font-size:36px;
    }

    .hero p{
        font-size:16px;
    }

    .grid-pricing-four{
        grid-template-columns:1fr;
    }

    .btn-utama,
    .btn-outline{
        width:100%;
        text-align:center;
    }

}