:root {
    --navy-900: #0b1f3f;
    --navy-800: #102a52;
    --navy-700: #16346a;
    --blue-600: #1e73e8;
    --blue-500: #2f86f5;
    --green-500: #22b14c;
    --text-dark: #14213d;
    --text-muted: #5b6b85;
    --pill-bg: rgba(255, 255, 255, .08);
    --pill-border: rgba(255, 255, 255, .16);
    --bg-soft: #eef1f6;
    --card-radius: 16px;
}

* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-soft);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
.font-display {
    font-family: 'Poppins', sans-serif;
}

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

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- HEADER ---------- */
header.site {
    background:
        linear-gradient(180deg, rgba(6, 15, 34, .85) 0%, rgba(8, 20, 46, .92) 100%),
        url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-main {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.2px;
    color: #ffffff;
}

.brand-sub {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #aebbd6;
    letter-spacing: 0;
}

.brand img {
    transition: transform 0.3s ease;
}

.brand:hover img {
    transform: rotate(-6deg) scale(1.05);
}

nav.main-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

nav.main-links a {
    font-size: 15px;
    font-weight: 500;
    color: #e7ecf7;
    position: relative;
    padding: 4px 0;
}

nav.main-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-500);
    transition: width 0.3s ease;
}

nav.main-links a:hover::after {
    width: 100%;
}

nav.main-links a:hover {
    color: var(--blue-500);
}

.btn-daftar-nav {
    background: var(--blue-600);
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    box-shadow: 0 4px 12px rgba(30, 115, 232, .2);
}

.btn-daftar-nav:hover {
    background: var(--blue-500);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 115, 232, .4);
}

/* ---------- BURGER / MOBILE NAV ---------- */
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 60;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: all .3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.btn-daftar-mobile {
    display: none;
}

@media (max-width: 860px) {
    .burger-btn {
        display: flex;
    }

    .btn-daftar-desktop {
        display: none;
    }

    nav.main-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: #0b1f3f;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px 24px 20px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, .3);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: all .3s ease;
    }

    nav.main-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    nav.main-links a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .btn-daftar-mobile {
        display: block;
        margin-top: 14px;
        text-align: center;
        width: 100%;
    }
}

/* ---------- ANIMATIONS ---------- */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        transform: scale(1.03);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

@keyframes pulseBlue {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
        background: rgba(30, 115, 232, 0.15);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.4) rotate(-25deg);
        opacity: 0;
    }

    70% {
        transform: scale(1.15) rotate(4deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

/* ---------- SCROLL REVEAL STRUCT ---------- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-rotate {
    opacity: 0;
    transition: opacity .8s cubic-bezier(0.215, 0.610, 0.355, 1), transform .8s cubic-bezier(0.215, 0.610, 0.355, 1);
    will-change: transform, opacity;
}

.reveal {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-scale {
    transform: scale(0.82) translateY(20px);
}

.reveal-rotate {
    transform: translateY(30px) rotate(-4deg) scale(0.94);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible,
.reveal-rotate.is-visible {
    opacity: 1 !important;
    transform: none !important;
}

.reveal-delay-1 {
    transition-delay: .15s;
}

.reveal-delay-2 {
    transition-delay: .3s;
}

.reveal-delay-3 {
    transition-delay: .45s;
}

/* staggered pop for list items once parent card is revealed */
.list-col .list-row {
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity .5s ease, transform .5s ease;
}

.card-white.is-visible .list-col .list-row {
    opacity: 1;
    transform: translateX(0);
}

.card-white.is-visible .list-col .list-row:nth-child(1) {
    transition-delay: .15s;
}

.card-white.is-visible .list-col .list-row:nth-child(2) {
    transition-delay: .25s;
}

.card-white.is-visible .list-col .list-row:nth-child(3) {
    transition-delay: .35s;
}

.card-white.is-visible .list-col .list-row:nth-child(4) {
    transition-delay: .45s;
}

.card-white.is-visible .list-col .list-row:nth-child(5) {
    transition-delay: .55s;
}

.card-white.is-visible .list-col .list-row:nth-child(6) {
    transition-delay: .65s;
}

.card-white.is-visible .list-col .list-row:nth-child(7) {
    transition-delay: .75s;
}

/* pop for step-numbers once the proses card is revealed */
.proses-num {
    animation: none;
}

.proses-card.is-visible .proses-num {
    animation: popIn .6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: .35s;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ---------- HERO ---------- */
.hero-outer {
    background:
        linear-gradient(180deg, rgba(6, 15, 34, .75) 0%, rgba(8, 20, 46, .92) 55%, rgba(9, 22, 48, 1) 100%),
        url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    padding: 56px 0 0 0;
    position: relative;
    overflow: hidden;
}

.hero-card {
    max-width: 1180px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0f2a56 0%, #0a1d3d 100%);
    border-radius: 28px;
    padding: 64px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5);
    position: relative;
    animation: fadeIn 1s ease both;
}

.hero-left {
    max-width: 600px;
    animation: fadeUp .8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

.hero-left h1 {
    color: #fff;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.hero-left p {
    color: #aebbd6;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 28px 0;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--pill-bg);
    border: 1px solid var(--pill-border);
    color: #e7ecf7;
    font-size: 13.5px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 999px;
    transition: all .3s ease;
}

.pill:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .14);
    border-color: var(--blue-500);
    box-shadow: 0 4px 12px rgba(30, 115, 232, 0.2);
}

.pill i {
    color: #7fa8ff;
    font-size: 13px;
    transition: transform 0.3s ease;
}

.pill:hover i {
    transform: scale(1.2);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue-600);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 26px;
    border-radius: 999px;
    margin-top: 18px;
    border: none;
    cursor: pointer;
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(30, 115, 232, .3);
}

.btn-primary:hover {
    background: var(--blue-500);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -8px rgba(30, 115, 232, .6);
}

.btn-primary i {
    transition: transform .25s ease;
}

.btn-primary:hover i {
    transform: translateX(6px);
}

.hero-right {
    flex-shrink: 0;
    width: 420px;
    display: flex;
    justify-content: center;
    animation: fadeUp .9s cubic-bezier(0.165, 0.84, 0.44, 1) .15s both;
}

.hero-right img.hero-car {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 15px 30px rgba(30, 115, 232, 0.3));
    animation: floatY 4.5s ease-in-out infinite;
}

.hero-bottom-fade {
    height: 60px;
}

/* ---------- SECTION GENERIC ---------- */
section {
    padding: 64px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--blue-600);
    margin-bottom: 36px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--blue-500);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.card-white {
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: 0 6px 24px rgba(20, 33, 61, .04);
    padding: 36px;
    transition: transform .4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow .4s ease;
}

.card-white:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(20, 33, 61, .15);
}

/* ---------- TWO COL: KEUNTUNGAN / PERSYARATAN ---------- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.two-col .card-white {
    display: flex;
    flex-direction: column;
}

.two-col .content-with-icon {
    flex: 1;
}

.card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--text-dark);
}

.card-head i {
    color: var(--blue-600);
    transition: transform 0.3s ease;
}

.card-white:hover .card-head i {
    transform: scale(1.15) rotate(5deg);
}

.list-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}

.list-row:hover {
    transform: translateX(6px);
}

.content-with-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.list-col {
    flex: 1;
}

.check-badge {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green-500);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    transition: transform .25s ease;
}

.list-row:hover .check-badge {
    transform: scale(1.2) rotate(360deg);
}

.check-badge.blue {
    background: var(--blue-600);
}

.list-row span {
    font-size: 14.5px;
    color: #333d55;
}

.side-icon-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #e8f0fe;
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.card-white:hover .side-icon-circle {
    background: var(--blue-600);
    color: #fff;
    transform: scale(1.05) rotate(-5deg);
}

/* ---------- GALLERY 3-COL ---------- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gallery-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16.5px;
    margin: 0 0 10px 0;
}

.gallery-card h3 i {
    color: var(--blue-600);
}

.gallery-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    min-height: 58px;
}

.img-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #dbe6fb, #c4d7fb);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.img-track {
    display: flex;
    height: 100%;
    transition: transform .6s cubic-bezier(0.25, 1, 0.5, 1);
}

.img-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.img-frame:hover .img-track img {
    transform: scale(1.04);
}

.img-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 5;
}

.img-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    transition: all .25s ease;
    cursor: pointer;
}

.img-dots span.active {
    background: #fff;
    transform: scale(1.4);
    width: 14px;
    border-radius: 4px;
}

.img-frame .arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    cursor: pointer;
    transition: all .25s ease;
    opacity: 0;
    z-index: 2;
}

.img-frame:hover .arrow-btn {
    opacity: 1;
}

.img-frame .arrow-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    color: var(--blue-600);
}

.img-frame .arrow-left {
    left: 12px;
}

.img-frame .arrow-right {
    right: 12px;
}

/* ---------- PROSES PENDAFTARAN ---------- */
.section-subtitle {
    text-align: center;
    font-size: 14.5px;
    color: var(--text-muted);
    max-width: 520px;
    margin: -24px auto 40px auto;
    line-height: 1.6;
}

.proses-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
    /* penting: biar tinggi tiap card independen */
}

.proses-card {
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(20, 33, 61, .04);
    transition: all .35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    padding: 20px 20px 24px;
}

.proses-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px -10px rgba(20, 33, 61, .15);
}

.proses-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #dbe6fb, #c4d7fb);
    border-radius: 12px;
}

.proses-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.proses-card:hover .proses-img img {
    transform: scale(1.08) rotate(1deg);
}

.proses-num {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--blue-600);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(30, 115, 232, .3);
    transition: transform 0.3s ease;
}

.proses-card:hover .proses-num {
    transform: scale(1.15);
    background: var(--blue-500);
}

.proses-card h4 {
    margin: 0;
    padding: 18px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    transition: color 0.3s ease;
}

.proses-card:hover h4 {
    color: var(--blue-600);
}

/* ===== Judul (Toggle) ===== */
.proses-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    user-select: none;
}

.proses-chevron {
    font-size: 13px;
    color: #1d4ed8;
    transition: transform .25s ease;
}

.proses-card.active .proses-chevron {
    transform: rotate(180deg);
}

/* ===== Deskripsi (Collapsible) ===== */
.proses-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    padding: 0 6px;
    text-align: center;
    transition: max-height .3s ease, opacity .25s ease, margin-top .3s ease;
}

.proses-desc p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748b;
}

.proses-card.active .proses-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
    padding-bottom: 4px;
}

@media (max-width:992px) {
    .proses-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:576px) {
    .proses-cards {
        grid-template-columns: 1fr;
    }
}

/* ---------- LOKASI ---------- */
.lokasi-card {
    max-width: 1180px;
    margin: 0 auto;
}

.lokasi-head {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.lokasi-head i {
    color: #e04242;
    animation: floatY 3s ease-in-out infinite;
}

.lokasi-addr {
    color: var(--text-muted);
    font-size: 14.5px;
    margin-bottom: 20px;
}

.map-frame {
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    height: 380px;
    border: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
    max-width: 1180px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(20, 33, 61, .06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 44px;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--blue-600);
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-left i.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e8f0fe;
    color: var(--blue-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    animation: pulseBlue 2s infinite ease-in-out;
}

.cta-left h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
}

.cta-left p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

/* ---------- FOOTER ---------- */
footer.site {
    background: #0b1f3f;
    color: #c9d3ea;
    padding: 52px 0 0 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-col h5 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 16px 0;
    font-family: 'Poppins', sans-serif;
}

.footer-logo {
    color: #fff;
    margin-bottom: 14px;
}

.footer-logo .brand-main {
    color: #fff;
}

.footer-logo .brand-sub {
    color: #aebbd6;
}

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #9fb0d1;
    margin: 0;
    max-width: 340px;
}

.footer-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #c9d3ea;
    margin-bottom: 12px;
    line-height: 1.6;
    transition: transform 0.2s ease;
}

.footer-row:hover {
    transform: translateX(4px);
    color: #fff;
}

.footer-row i {
    color: #7fa8ff;
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: #8fa0c4;
}

@media (max-width:860px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* Floating WA */
.wa-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    background: #25D366;
    color: #fff;
    padding: 14px 22px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .3);
    z-index: 60;
    animation: pulseGlow 2s infinite;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.wa-float:hover {
    transform: translateY(-5px);
    background: #20ba56;
}

.tiktok-float {
    background: #000 !important;
}

.tiktok-float:hover {
    background: #1a1a1a !important;
}

/* ===== Scroll Row Fasilitas ===== */
.scroll-row-wrap {
    position: relative;
}

.scroll-row {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 4px 12px;
    scrollbar-width: thin;
}

.scroll-row .card-white {
    flex: 0 0 calc((100% - 24px * 2) / 3);
    scroll-snap-align: start;
}

.scroll-row::-webkit-scrollbar {
    height: 8px;
}

.scroll-row::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.scroll-row::-webkit-scrollbar-track {
    background: transparent;
}

.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    color: #1d4ed8;
    transition: background .2s;
}

.scroll-arrow:hover {
    background: #f1f5f9;
}

.scroll-arrow-left {
    left: -8px;
}

.scroll-arrow-right {
    right: -8px;
}

/* ---------- RESPONSIVE (≤960px) — HANYA di sini rules ini berlaku ---------- */
@media (max-width:960px) {
    .hero-card {
        flex-direction: column;
        padding: 40px 26px;
    }

    .hero-right {
        width: 100%;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .scroll-row {
        padding-left: 6%;
        padding-right: 6%;
        scroll-padding-left: 6%;
    }

    .scroll-row .card-white {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }

    .scroll-arrow {
        display: none;
    }
}