body.landing-page {
    background: #f8f9fd;
}
.hero-section {
    padding: 100px 0;
}
.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(62, 95, 255, 0.1);
    color: #3e5fff;
    font-weight: 600;
    margin-bottom: 20px;
}
.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(62, 95, 255, 0.1);
    color: #3e5fff;
    font-size: 24px;
}
footer {
    border-top: 1px solid #eee;
    padding: 30px 0;
    margin-top: 80px;
}
/* ===== BACKGROUND GRADIENT ===== */
body.landing-page {
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        #eaf1ff,
        #f3ecff,
        #fef1f6
    );
}

/* ===== NAV MENU ===== */
.landing-nav {
    gap: 28px;
}

.landing-nav .nav-link {
    font-weight: 600;
    color: #334155;
    position: relative;
    padding: 6px 0;
    transition: color .3s ease;
}

.landing-nav .nav-link:hover {
    color: #2563eb;
}

/* underline animasi */
.landing-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 2px;
    transition: width .35s ease;
}

.landing-nav .nav-link:hover::after {
    width: 100%;
}


/* ===== NAVBAR ===== */
.landing-navbar-wrapper {
    position: sticky;
    top: 16px;
    z-index: 9999;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* saat disembunyikan */
.landing-navbar-wrapper.nav-hide {
    transform: translateY(-120%);
    opacity: 0;
}

.landing-navbar {
    pointer-events: auto; /* klik tetap jalan */
    max-width: 1200px;
    margin: auto;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(12px);
    padding: 14px 24px;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

/* ===== LOGO ===== */
.navbar-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.navbar-brand-text {
    font-size: 18px;
    color: #0f172a;
    letter-spacing: .5px;
}

/* ===== BUTTON ===== */
.landing-navbar .btn {
    border-radius: 12px;
    font-weight: 600;
}


/* ===== HERO ===== */
.hero-modern {
    padding: 120px 20px 140px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(37,99,235,.3);
}

.hero-title {
    margin-top: 24px;
    font-size: 48px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.hero-subtitle {
    max-width: 720px;
    margin: 20px auto 0;
    font-size: 18px;
    color: #64748b;
}

/* ===== FEATURE CARD ===== */
.feature-card {
    border-radius: 16px;
    transition: all .3s ease;
    padding-bottom: 4px;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* ===== ICON BOX ===== */
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

/* ===== COLOR VARIANTS ===== */
.bg-blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.bg-purple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.bg-cyan {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
}

.bg-green {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

.bg-orange {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.bg-indigo {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

/* ===== BENEFIT ITEM ===== */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all .35s ease;
    cursor: default;
}

/* ===== HOVER EFFECT ===== */
.benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

/* ===== ICON ===== */
.benefit-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all .35s ease;
}

/* ===== ICON HOVER ===== */
.benefit-item:hover .benefit-icon {
    transform: scale(1.15) rotate(-3deg);
    box-shadow: 0 0 0 8px rgba(255,255,255,.35);
}

/* ===== SOFT BACKGROUND ===== */
.bg-blue-soft {
    background: linear-gradient(135deg, #e0ecff, #f5f9ff);
}

.bg-purple-soft {
    background: linear-gradient(135deg, #f3e8ff, #faf5ff);
}

.bg-cyan-soft {
    background: linear-gradient(135deg, #e0f7fa, #f0fcff);
}

.bg-green-soft {
    background: linear-gradient(135deg, #e8fdf5, #f0fdf9);
}

/* ===== ICON COLORS ===== */
.bg-blue {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.bg-purple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.bg-cyan {
    background: linear-gradient(135deg, #06b6d4, #0ea5e9);
}

.bg-green {
    background: linear-gradient(135deg, #22c55e, #10b981);
}

/* ===== TEXT HOVER (HALUS) ===== */
.benefit-item:hover h6 {
    color: #0f172a;
}

.benefit-item:hover p {
    color: #475569;
}

/* ===== STATS CARD ===== */
.stats-card {
    min-height: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
}

/* Desktop only – samakan dengan kolom kiri */
@media (min-width: 992px) {
    .stats-card {
        min-height: 100%;
    }
}

/* ===== STATS BOX ===== */
.stats-box {
    padding: 22px 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    transition: all .35s ease;
}

/* Hover effect */
.stats-box:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

/* Text styling */
.stats-box h3 {
    font-size: 32px;
    letter-spacing: .5px;
}

.stats-box p {
    opacity: .9;
}

/* ===== CONTAINER ===== */
.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

/* ===== LOGO ===== */
.nav-logo {
    text-decoration: none;
    color: #0f172a;
    font-size: 18px;
}

/* ===== MENU ===== */
.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #1e293b;
    position: relative;
    padding: 6px 0;
    transition: all .3s ease;
}

/* underline */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: -6px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    transition: .3s;
}
.nav-link:hover::after {
    width: 100%;
}

/* ===== ACTION ===== */
.nav-action-desktop {
    display: block;
}
.nav-action-mobile {
    display: none;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    cursor: pointer;
}
.bar {
    display: block;
    width: 24px;
    height: 3px;
    margin: 5px auto;
    background: #0f172a;
    transition: all .3s ease;
    border-radius: 3px;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        flex-direction: column;
        background: #fff;
        width: 100%;
        padding: 24px;
        gap: 20px;
        transition: .3s;
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
        border-radius: 0 0 20px 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: block;
    }

    .nav-action-desktop {
        display: none;
    }

    .nav-action-mobile {
        display: block;
        margin-top: 16px;
    }
}