@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Playfair+Display:ital,wght@0,400;1,400&display=swap");
:root {
    --putih: #ffffff;
    --hitam: #000000;
    --blue: #1a56db;
    --blue-dark: #1341b0;
    --blue-light: #d5eeff94;
    --blue-soft: #f0f7ff;
    /* --biru: #385d8d; */
    /* --biru: #669dc1; */
    --biru: #035f9c;
    --biru-dark: #004b89;
    --biru-terang: #007bcd;
    /* --biru: #5692ba; */
    --green: #1f6d8c;
    --green-soft: #f0f7ff;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e2e8f0;
    --bg: #f0f6ff;
}

.konsultasi-section {
    padding: 100px 20px;
    background: linear-gradient(90deg, #eaf3ff 0%, #ffffff 100%);
}

.konsultasi-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* TEXT */
.konsultasi-content {
    flex: 1;
    min-width: 300px;
}

/* TITLE */
.title-main {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 42px;
    /* color: #1e3a8a; */
    /* color: #1f6d8cb1; */
    color: #035f9c;

    letter-spacing: 1px;
}

.title-accent {
    font-family: "Literature", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 36px;
    /* color: #1f6d8cb1; */
    color: #035f9c;

    /* color: #1e3a8a; */
}

.title-main-data {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 42px;
    /* color: #1e3a8a; */
    /* color: #1f6d8cb1; */
    color: #035f9c;

    letter-spacing: 1px;
}

.title-accent-data {
    font-family: "Literature", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 36px;
    /* color: #1f6d8cb1; */
    color: #035f9c;

    /* color: #1e3a8a; */
}

@media (max-width: 768px) {
    .title-main-data {
        font-size: 28px;
        text-align: center;
    }

    .title-accent-data {
        font-size: 24px;
        text-align: center;
    }
}
/* GARIS */
.divider {
    width: 100px;
    height: 3px;
    background: #93c5fd;
    margin: 16px 0 24px;
}

/* BUTTON */
.btn-konsultasi {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffff;
    color: var(--biru);
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-konsultasi:hover {
    background: var(--biru);
    color: #ffff;
    transform: translateY(-2px);
}

/* IMAGE */
/* .konsultasi-image img {
    width: 380px;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
} */

.konsultasi-image-grid {
    flex: 1.2;
}

.grid-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 100px 180px;
    gap: 15px;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.item-top-left {
    grid-column: 1;
    grid-row: 1 / span 1;
}

/* Foto 2: Kanan (Besar & Tinggi) */
.item-right {
    grid-column: 2;
    grid-row: 1 / span 2;
}

/* Foto 3: Kiri Bawah (Lebar) */
.item-bottom-left {
    grid-column: 1;
    grid-row: 2 / span 2;
}

/* Foto 4: Kanan Bawah */
.item-bottom-right {
    grid-column: 2;
    grid-row: 3;
}

/* Responsive */
@media (max-width: 992px) {
    .konsultasi-container {
        flex-direction: column;
        text-align: center;
    }
    .grid-bento {
        grid-template-rows: 150px 80px 150px;
        max-width: 500px;
        margin: 0 auto;
    }
    .divider {
        margin: 16px auto 24px;
    }
}

/* Container Image Grid */
.konsultasi-image {
    flex: 1;
    min-width: 400px;
}

.image-grid {
    display: grid;
    /* Membuat 2 kolom dengan perbandingan ukuran */
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px; /* Sudut melengkung halus */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.item-2 {
    grid-column: 2;
    grid-row: 1 / span 2;
}

/* Foto Kiri Atas (Kecil/Sedang) */
.item-1 {
    grid-column: 1;
    grid-row: 1;
}

/* Foto Kiri Bawah (Lebar) */
.item-3 {
    grid-column: 1;
    grid-row: 2;
}

.image-grid {
    grid-template-areas:
        "foto1 foto2"
        "foto3 foto2"
        "foto3 foto4";
}

.item-1 {
    grid-area: foto1;
    height: 180px;
}
.item-2 {
    grid-area: foto2;
    height: 350px;
}
.item-3 {
    grid-area: foto3;
    height: 200px;
}
.item-4 {
    grid-area: foto4;
    height: 160px;
}

/* Responsive untuk Mobile */
@media (max-width: 768px) {
    .konsultasi-image {
        min-width: 100%;
    }

    .image-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: none;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .grid-item {
        flex: 1 1 calc(50% - 10px);
    }

    .grid-item img {
        height: 150px;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .konsultasi-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .konsultasi-image img {
        width: 100%;
        height: 220px;
    }

    .title-main {
        font-size: 30px;
    }

    .title-accent {
        font-size: 26px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text);
    background: #fff;
}

/* ── NAVBAR DI HOME: transparan + semua teks putih ── */
/*body #main-nav {*/
/*    background: transparent !important;*/
/*    border-bottom-color: transparent !important;*/
/*    box-shadow: none !important;*/
/*}*/
/*body #main-nav.scrolled {*/
/*    background: rgb(255, 255, 255) !important;*/
/*    border-bottom-color: rgba(255, 255, 255, 0.08) !important;*/
/*    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25) !important;*/
/*    backdrop-filter: blur(16px) !important;*/
/*    -webkit-backdrop-filter: blur(16px) !important;*/
/*}*/
/* Link navbar putih di home */
/*body #main-nav .nav-links > a {*/
/*    color: #ffffff;*/
/*}*/
/*body #main-nav.scrolled .nav-links > a {*/
/*    color: #64748b;*/
/*}*/

/*body #main-nav .nav-links > a:hover,*/
/*body #main-nav .nav-links > a.active {*/
/*    color: var(--biru) !important;*/
/*}*/
/* Logo teks putih */
/*body #main-nav .nav-logo-title {*/
/*    color: #ffffff !important;*/
/*}*/

/*body #main-nav.scrolled .nav-logo-title {*/
/*    color: var(--biru) !important;*/
/*}*/
/* Btn outline putih */
/*body #main-nav .btn-nav {*/
/*    color: #ffffff !important;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/

/*    padding: 12px 28px;*/

/*    min-height: 48px;*/

/*    border: 1.5px solid rgba(255, 255, 255, 0.65) !important;*/

/*    border-radius: 999px;*/

/*    background: transparent !important;*/

/*    font-size: 15px;*/
/*    font-weight: 700;*/

/*    line-height: 1;*/

/*    transition: all 0.3s ease;*/
/*}*/


/*body #main-nav .btn-nav:hover {*/
/*    background: rgb(255, 255, 255) !important;*/
/*    border-color: #ffffff !important;*/
/*        color: var(--biru) !important;*/

/*} */

/* .btn-nav {
    background: var(--bg) !important;
    color: #ffffff !important;
    border: 1.5px solid var(--biru) !important;
    border-radius: 10px !important;
    padding: 9px 22px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
} */

/* body #main-nav.scrolled .btn-nav {
    background: #6096ba !important;
    border: 1.5px solid rgba(255, 255, 255, 0.65) !important;
    color: #ffffff !important;
}
body #main-nav .btn-nav:hover {
    background: rgb(255, 255, 255) !important;
    border-color: #ffffff !important;
} */

/* body #main-nav.scrolled .btn-nav:hover {
    background: #6096ba !important;
    border-color: #ffffff !important;
} */

/* ── HERO SLIDER ──────────────────────────────── */

nav {
    position: relative;
    z-index: 3;
}
.hero {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero-content {
    padding: 100px 80px;
}

.hero-wrapper {
    position: relative;
    margin-top: 0;
    padding-top: 0;
    background: #035f9c;
    line-height: 0;
}

.hero-bg {
    display: none;
}
.hero-overlay {
    display: none;
}

.slider-wrap {
    position: relative;
    overflow: hidden; /* WAJIB: sembunyikan slide di luar viewport */
    width: 100%;
    max-width: 100%;
    background: #035f9c;
    line-height: normal;
    /* Isolasi stacking context agar foto tidak bocor */
    isolation: isolate;
}

.slider-track {
    display: flex;
    flex-wrap: nowrap;

    transform: translate3d(0, 0, 0);
    will-change: transform;
}

/* ══════════════════════════════════════════════
   SLIDE FULLSCREEN
   ══════════════════════════════════════════════ */
.slide {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    isolation: isolate;
    /* Paksa GPU compositing layer tersendiri per slide
       agar backdrop-filter card tidak bocor ke slide lain */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* clip konten slide secara ketat */
    clip-path: inset(0);
}

.slide.slide-fs {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 72px; /* tinggi navbar */
    padding-bottom: 0;
    box-sizing: border-box;
}

/* ── Full-screen background photo ── */
.slide-fs-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide-fs-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center; /* default: ambil sisi kiri foto */
    display: block;
    transition: transform 8s ease;
    transform: scale(1.04);
}

/* Ken Burns effect saat slide aktif */
.slide-fs.is-active .slide-fs-bg img {
    transform: scale(1);
}

/* ── Overlay gradasi gelap ── */
.slide-fs-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Biru muda kalem kiri → coklat muda hangat kanan */
    background:
        linear-gradient(
            110deg,
            rgb(58, 100, 148) 0%,
            rgba(90, 138, 180, 0.057) 35%,
            rgba(180, 148, 110, 0.2) 68%,
            rgba(200, 165, 120, 0) 100%
        ),
        linear-gradient(to top, rgba(40, 68, 100, 0.5) 0%, transparent 48%);
}

.slide-fs-overlay--teal {
    background:
        linear-gradient(
            110deg,
            rgb(58, 100, 148) 0%,
            rgba(90, 138, 180, 0.203) 35%,
            rgba(180, 148, 110, 0.18) 68%,
            rgba(200, 165, 120, 0) 100%
        ),
        linear-gradient(to top, rgba(40, 68, 100, 0.5) 0%, transparent 48%);
}

/* ── GLASS CARD — biru muda + sentuhan coklat hangat ── */
.slide-glass-card {
    position: relative;
    z-index: 10;
    margin-left: 80px;
    margin-top: 0;
    max-width: 520px;

    /* Glass dengan tint biru muda kalem */
    /* background: rgba(210, 228, 245, 0.16); */
    background: rgba(210, 228, 245, 0.14);

    backdrop-filter: blur(28px) saturate(1.6) brightness(1.06);
    -webkit-backdrop-filter: blur(28px) saturate(1.6) brightness(1.06);
    border: 1px solid rgba(220, 235, 248, 0.32);
    border-radius: 28px;
    padding: 44px 48px 48px;
    box-shadow:
        0 4px 8px rgba(40, 68, 100, 0.08),
        0 16px 40px rgba(58, 100, 148, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        inset 0 -1px 0 rgba(180, 148, 110, 0.08);

    animation: glassCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes glassCardIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Garis aksen atas — gradient biru muda ke coklat muda */
.slide-glass-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #a8c8e8,
        #a8c8e8,
        transparent
    );
    border-radius: 999px;
}

/* ── Tag ── */
.slide-glass-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(168, 200, 232, 0.2);
    border: 1px solid rgba(168, 200, 232, 0.45);
    color: #daeef8;
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 14px 5px 10px;
    border-radius: 999px;
    margin-bottom: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.slide-glass-tag i {
    font-size: 13px;
}

/* ── Judul ── */
.slide-glass-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 52px;
    line-height: 1.06;
    color: #f0f7ff;
    margin: 0 0 18px;
    letter-spacing: -2px;
    text-shadow: 0 2px 16px rgba(40, 68, 100, 0.25);
}

/* em italic — warna coklat muda hangat */
.slide-glass-title em {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 400;
    color: #f0f7ff;
    display: inline-block;
    text-shadow: 0 0 24px rgba(212, 169, 106, 0.4);
}

/* ── Lead ── */
.slide-glass-lead {
    font-size: 15px;
    font-weight: 700;
    color: rgba(240, 247, 255, 0.96);
    margin: 0 0 8px;
    line-height: 1.5;
}

/* ── Desc ── */
.slide-glass-desc {
    font-size: 13.5px;
    color: #f0f7ff;
    line-height: 1.85;
    margin: 0 0 34px;
}

/* ── Tombol slide 1 — biru muda kalem ── */
.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4a86b8 0%, #7ab0d4 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    box-shadow:
        0 4px 24px rgba(74, 134, 184, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: all 0.25s ease;
    border: none;
}

.btn-glass:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(74, 134, 184, 0.6);
    background: linear-gradient(135deg, #3a74a8 0%, #68a0c8 100%);
}

/* ── Tombol slide 2 — coklat muda hangat ── */
.btn-glass--teal {
    background: linear-gradient(135deg, #b8865a 0%, #d4a878 100%);
    box-shadow:
        0 4px 24px rgba(184, 134, 90, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-glass--teal:hover {
    box-shadow: 0 10px 36px rgba(184, 134, 90, 0.58);
    background: linear-gradient(135deg, #a87848 0%, #c89868 100%);
}

.btn-glass-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 9px;
    font-size: 14px;
    flex-shrink: 0;
}

/* ── Stats row pojok kanan bawah ── */
.slide-stats-row {
    position: absolute;
    bottom: 88px;
    right: 72px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    /* Glass dengan tint biru muda + pinggir coklat tipis */
    background: rgba(210, 228, 245, 0.14);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(220, 235, 248, 0.3);
    border-radius: 18px;
    padding: 14px 22px;
    min-width: 84px;
    box-shadow:
        0 4px 16px rgba(40, 68, 100, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.stat-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(168, 200, 232, 0.32);
}

.stat-badge-num {
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: #f0f7ff;
    line-height: 1;
    text-shadow: 0 1px 6px rgba(40, 68, 100, 0.18);
}

.stat-badge-lbl {
    font-size: 10px;
    color: rgba(210, 228, 245, 0.7);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── DOT NAV ── */
.slider-dots.slider-dots--fs {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    background: rgba(210, 228, 245, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(220, 235, 248, 0.25);
    border-radius: 999px;
    padding: 7px 14px;
    margin: 0;
    white-space: nowrap;
}

.slider-dots--fs .dot {
    background: rgba(255, 255, 255, 0.35);
    border-color: transparent;
    width: 8px;
    height: 8px;
}

/* dot aktif — coklat muda hangat */
.slider-dots--fs .dot.active {
    background: #035f9c;
    width: 26px;
    border-radius: 4px;
}

.slider-dots--fs .slider-prev-dot,
.slider-dots--fs .slider-next-dot {
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: none;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    padding: 0 4px;
    transition: color 0.2s;
}

.slider-dots--fs .slider-prev-dot:hover,
.slider-dots--fs .slider-next-dot:hover {
    color: #035f9c;
}

/* ── RESPONSIVE TABLET ── */
@media (max-width: 1024px) {
    .slide-glass-card {
        margin-left: 48px;
        max-width: 460px;
        padding: 36px 40px 40px;
    }
    .slide-glass-title {
        font-size: 40px;
    }
    .slide-stats-row {
        right: 40px;
        bottom: 88px;
    }
}

/* ── RESPONSIVE MOBILE ──
   Kunci utama: slide tetap 100vw, tidak pernah terpotong
   ─────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    /* Slider wrap & track: pastikan tidak ada overflow yang salah */
    .slider-wrap {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }

    .slider-track {
        /* Setiap slide 100vw, total track = n × 100vw */
        /* JS harus pakai window.innerWidth untuk offset, bukan % */
        will-change: transform;
    }

    /* Slide: full lebar & tinggi layar */
    .slide,
    .slide.slide-fs {
        width: 100vw;
        min-width: 100vw;
        max-width: 100vw;
        height: 100dvh;
        min-height: 100svh;
        padding-top: 64px;
        padding-bottom: 56px;
        flex-direction: column;
        justify-content: center;
        /* KIRI — sama seperti desktop */
        align-items: flex-start;
        box-sizing: border-box;
    }

    /* Glass card: rata kiri, ada margin kiri-kanan */
    .slide-glass-card {
        flex: none;
        width: calc(100% - 40px); /* 20px margin kanan-kiri */
        max-width: 420px;
        margin: 0 20px; /* dorong dari kiri 20px */
        padding: 28px 22px 24px;
        border-radius: 22px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(210, 228, 245, 0.18);
        backdrop-filter: blur(24px) saturate(1.6);
        -webkit-backdrop-filter: blur(24px) saturate(1.6);
        border: 1px solid rgba(220, 235, 248, 0.3);
        box-shadow:
            0 4px 8px rgba(40, 68, 100, 0.08),
            0 12px 32px rgba(58, 100, 148, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }

    .slide-glass-card::before {
        left: 20px;
        right: 20px;
    }

    /* Tag: inline, TIDAK memanjang */
    .slide-glass-tag {
        display: inline-flex; /* biar hanya selebar konten */
        align-self: flex-start;
        font-size: 10px;
        padding: 4px 12px 4px 8px;
        margin-bottom: 14px;
    }

    .slide-glass-title {
        font-size: 34px;
        letter-spacing: -1px;
        margin-bottom: 12px;
    }
    .slide-glass-lead {
        font-size: 13.5px;
        margin-bottom: 6px;
    }
    .slide-glass-desc {
        font-size: 12.5px;
        line-height: 1.75;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Tombol: TIDAK full width, inline saja */
    .btn-glass,
    .btn-glass--teal {
        width: auto; /* hanya selebar kontennya */
        align-self: flex-start;
        padding: 12px 24px;
        border-radius: 12px;
        font-size: 13.5px;
    }

    /* Stats: di bawah card, rata kiri sejajar card */
    .slide-stats-row {
        position: relative;
        bottom: auto;
        right: auto;
        display: flex;
        justify-content: flex-start;
        gap: 8px;
        padding: 10px 0 0;
        flex-shrink: 0;
        width: calc(100% - 40px);
        max-width: 420px;
        margin-left: 20px; /* sejajar dengan card */
    }

    .stat-badge {
        flex: 1;
        max-width: 120px;
        min-width: 0;
        padding: 10px 8px;
        border-radius: 14px;
        gap: 3px;
    }
    .stat-badge-num {
        font-size: 17px;
    }
    .stat-badge-lbl {
        font-size: 8.5px;
    }

    /* Dots nav */
    .slider-dots.slider-dots--fs {
        bottom: 14px;
        padding: 6px 10px;
    }
    .slider-dots--fs .dot {
        width: 7px;
        height: 7px;
    }
    .slider-dots--fs .dot.active {
        width: 20px;
    }
    .slider-dots--fs .slider-prev-dot,
    .slider-dots--fs .slider-next-dot {
        font-size: 15px;
    }
}

/* ── SMALL PHONE ── */
@media (max-width: 390px) {
    .slide-glass-card {
        margin: 10px 12px 0;
        padding: 20px 16px 18px;
        border-radius: 18px;
    }
    .slide-glass-title {
        font-size: 28px;
    }
    .slide-glass-tag {
        font-size: 9.5px;
    }
    .slide-glass-lead {
        font-size: 13px;
    }
    .stat-badge-num {
        font-size: 15px;
    }
    .stat-badge {
        padding: 9px 6px;
    }
}

@media (max-width: 400px) {
    .slide-glass-title {
        font-size: 27px;
    }
    .slide-glass-card {
        padding: 22px 18px 26px;
        margin: 0 12px;
    }
}

/* full-bleed background image — blurred */
.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    top: -80px;
    height: calc(100% + 80px);
}
.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.22;
    filter: blur(3px) saturate(1.3);
}

/* ── TEXTURE LAYER (dot grid aesthetic) ────── */

/* .slide-texture {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;

    background-image: url("https://www.transparenttextures.com/patterns/kinda-jean.png");
    background-size: 300px; 

    opacity: 3.3;
    mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        transparent 75%
    );

    -webkit-mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        transparent 75%
    );
} */

/* ── DECO: lingkaran konsentrik sudut kiri ──── */
/* .slide-deco {
    position: absolute;
    left: -160px;
    top: 50%;
    transform: translateY(-50%);
    width: 640px;
    height: 640px;
    z-index: 3;
    pointer-events: none;
    border-radius: 50%;
    background-color: #aaaaaa;

    background-image: url("https://www.transparenttextures.com/patterns/cartographer.png");
    border: 1px solid rgba(147, 197, 253, 0.1);
    box-shadow:
        0 0 0 60px rgba(147, 197, 253, 0.05),
        0 0 0 120px rgba(147, 197, 253, 0.03),
        0 0 0 200px rgba(147, 197, 253, 0.015);
} */

/* glass card */
.slide-card {
    position: relative;
    z-index: 10;
    max-width: 520px;
    padding: 0 0 0 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.88);
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 20px;
    letter-spacing: 0.04em;
}

.slide-title {
    font-family: "Montserrat", sans-serif;

    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.slide-title em {
    font-family: "Lora", serif;
    font-style: italic;
    font-weight: 400;
    color: #ffffff;
}

.slide-lead {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.slide-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 98%;
}

@media (min-width: 768px) {
    .slide-desc {
        max-width: 500px;
    }
}

/* ── IMAGE (right) ────────────────────────────── */
.slide-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 58%; /* foto hanya di 58% kanan */
    z-index: 1;
    overflow: hidden;
}

.slide-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 60% center; /* focal point sedikit ke kanan tengah */
    /* Mask: foto fade-in dari kiri, kanan tetap tajam */
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.05) 8%,
        rgba(0, 0, 0, 0.4) 20%,
        rgba(0, 0, 0, 1) 42%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.05) 8%,
        rgba(0, 0, 0, 0.4) 20%,
        rgba(0, 0, 0, 1) 42%
    );
}

/* Blend foto ke biru solid — gradien perantara di tengah */
.slide-img::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        #6096ba 0%,
        rgba(96, 150, 186, 0.16) 6%,
        rgba(80, 130, 170, 0.13) 14%,
        rgba(60, 100, 150, 0) 24%,
        rgba(40, 75, 140, 0) 36%
            /* rgba(30, 58, 138, 0.28) 50%,
        rgba(30, 58, 138, 0.12) 65%,
        rgba(30, 58, 138, 0) 80% */
    );
}

/* ═══════════════════════════════════════════════
   SLIDE PARALLAX STACK CARD (slide-psc)
   ═══════════════════════════════════════════════ */

/* Slide PSC: flex row, kiri teks — kanan kartu, ada padding kanan */
.slide.slide-psc {
    justify-content: space-between;
    padding-right: 80px;
    gap: 40px;
    /* Gradasi biru tipis dari kiri ke kanan */
    background: linear-gradient(
        110deg,
        #eaf4ff 0%,
        #f5faff 35%,
        #ffffff 65%,
        #f0f8ff 100%
    );
}

/* Dot-grid overlay tipis agar ada tekstur halus */
.slide.slide-psc::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        circle,
        rgba(3, 95, 156, 0.055) 1px,
        transparent 1px
    );
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* slide-card harus di atas overlay */
.slide.slide-psc .slide-card {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    max-width: 440px;
}

/* Warna teks slide menjadi gelap (latar putih) */
.slide.slide-psc .slide-tag {
    border-color: rgba(3, 95, 156, 0.25);
    background: rgba(3, 95, 156, 0.07);
    color: #035f9c;
}

.slide.slide-psc .slide-title {
    color: #0d2137;
}

.slide.slide-psc .slide-title em {
    color: #035f9c;
}

.slide.slide-psc .slide-lead {
    color: #334155;
}

.slide.slide-psc .slide-desc {
    color: #64748b;
}

.slide.slide-psc .btn-hero {
    background: #035f9c;
    border-color: #035f9c;
    color: #ffffff;
}

.slide.slide-psc .btn-hero:hover {
    background: #024f83;
    border-color: #024f83;
}

/* ─────────────────────────────────────────────
   PSC SCENE — container perspektif 3D
   Posisi: flex item kanan, centered vertical
   ──────────────────────────────────────────── */
.psc-scene {
    /* ukuran tetap, jadi kolom kanan slide */
    flex-shrink: 0;
    width: 380px;
    height: 300px;
    position: relative;
    z-index: 2;
    align-self: center;

    /* perspektif rendah = sudut 3D lebih terasa "dalam ruangan" */
    perspective: 800px;
    /* origin dari kiri-atas → kartu terlihat miring ke kanan-bawah */
    perspective-origin: 15% 25%;
}

/* ── Semua kartu: posisi absolute dalam scene ── */
.psc-card {
    position: absolute;
    border-radius: 20px;
    background: #ffffff;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease;
    will-change: transform;
    overflow: hidden;
}

/* ══ Kartu paling belakang ══
   Tergeser kanan-bawah, miring paling banyak */
.psc-back {
    width: 300px;
    height: 232px;
    top: 42px;
    left: 68px;
    z-index: 1;
    background: #cce4f6;
    opacity: 0.55;
    box-shadow: 0 6px 20px rgba(3, 95, 156, 0.15);
    transform: rotateY(-18deg) rotateX(6deg) rotate(-5deg) translateZ(-50px)
        translate(-30px, 16px);
}

/* ══ Kartu tengah ══ */
.psc-mid {
    width: 315px;
    height: 248px;
    top: 22px;
    left: 36px;
    z-index: 2;
    background: #daeef9;
    opacity: 0.78;
    box-shadow: 0 10px 30px rgba(3, 95, 156, 0.18);
    transform: rotateY(-10deg) rotateX(3deg) rotate(-2.5deg) translateZ(-25px)
        translate(-15px, 8px);
}

/* ══ Kartu depan utama ══ */
.psc-front {
    width: 330px;
    height: 268px;
    top: 0;
    left: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.05),
        0 10px 28px rgba(3, 95, 156, 0.14),
        0 22px 52px rgba(3, 95, 156, 0.1);
    transform: rotateY(-4deg) rotateX(1deg) rotate(0deg) translateZ(0px);
}

/* Shadow "lantai" di bawah kartu depan */
.psc-front::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 14%;
    width: 70%;
    height: 16px;
    background: rgba(3, 95, 156, 0.22);
    filter: blur(14px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* ── Gambar di kartu depan ── */
.psc-front-img {
    flex: 1;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

.psc-front-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s ease;
}

.psc-scene:hover .psc-front-img img {
    transform: scale(1.05);
}

/* ── Statistik bawah kartu depan ── */
.psc-front-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 12px 16px;
    background: #ffffff;
    border-top: 1px solid #eef4fb;
    border-radius: 0 0 18px 18px;
}

.psc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.psc-num {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #0d2137;
    line-height: 1;
}

.psc-lbl {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.psc-divider {
    width: 1px;
    height: 26px;
    background: #dde8f5;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .slide.slide-psc {
        padding-right: 40px;
        gap: 24px;
    }
    .psc-scene {
        width: 320px;
        height: 260px;
    }
    .psc-front {
        width: 278px;
        height: 230px;
    }
    .psc-mid {
        width: 264px;
        height: 210px;
        top: 18px;
        left: 28px;
    }
    .psc-back {
        width: 250px;
        height: 194px;
        top: 34px;
        left: 56px;
    }
}

@media (max-width: 820px) {
    .psc-scene {
        display: none;
    }
    .slide.slide-psc {
        padding-right: 80px;
    }
}

/* ── SLIDER NAV BUTTONS ───────────────────────── */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1.5px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    color: var(--text);
    font-size: 15px;
}
.slider-btn:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}
.slider-btn.prev {
    left: 16px;
}
.slider-btn.next {
    right: 16px;
}

/* ── DOTS BAR ─────────────────────────────────── */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 80px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent; /* Hilangkan background solid */
    padding: 0;
}

.slider-prev-dot,
.slider-next-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    color: #fff;
    transition: all 0.2s;
}
.slider-prev-dot:hover,
.slider-next-dot:hover {
    border-color: #03346e;
    color: #03346e;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    padding: 0;
}
.dot.active {
    background: #ffffff;
    width: 28px;
    border-radius: 5px;
}

/* ── CTA BUTTON ───────────────────────────────── */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.22s;
    border: 2px solid rgba(255, 255, 255, 0.65);
    cursor: pointer;
    backdrop-filter: blur(4px);
}
.btn-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}
.btn-hero .btn-icon {
    width: 24px;
    height: 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* ═══════════════════════════════════════════════
   PUBLIKASI SECTION - Overlay Card on Image
   ═══════════════════════════════════════════════ */

.publikasi-new {
    background: #fff;
    padding: 80px 0 0;
    padding-bottom: 60px;
}

.publikasi-new-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Badge pill */
.pub-badge {
    display: inline-block;
    background: #ffff;
    color: var(--biru);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 5px;
    margin-bottom: 36px;
    border: 1px solid #e2e8f0;
}

/* Row: judul kiri, deskripsi+tombol kanan */
.pub-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 56px;
}

/* Judul kiri */
.pub-left {
    flex: 0 0 48%;
}

.pub-title {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 700;
    margin: 0;
    /* color: #1f6e8c; */
    color: var(--biru);
}

.pub-title-regular {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    color: #1e293b;
    /* color: #6eacda; */
}

.pub-title-italic {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 700;
    color: #1a56db;
}

/* Deskripsi + tombol kanan */
.pub-right {
    flex: 0 0 42%;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
}

.pub-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
}

/* Button */
.btn-akses {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #f0f7ff;
    color: #1e3a8a;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-akses:hover {
    background-color: #1e3a8a;
    color: white;
}

/* Button styling */
/* .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--blue, #1a56db);
    color: var(--blue, #1a56db);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.25s ease;
    cursor: pointer;
} */

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: #f0f7ff;
    color: #035f9c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 10px;
}

.btn-outline i {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.btn-outline:hover {
    background-color: var(--biru);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 86, 219, 0.25);
}

.btn-outline:hover i {
    transform: translateX(4px);
}

/* Gambar full width */
.pub-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    line-height: 0;
    margin: 0 auto;
}

.pub-image img {
    width: 100%;
    height: 30vh; /* responsive tinggi layar */
    object-fit: cover;
}

.btn-search {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    background: var(--blue-soft);
    color: var(--biru);
    border: none;
    padding: 8px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    font-family: "Plus Jakarta Sans", sans-serif;
}
.btn-search:hover {
    background: var(--biru-dark);
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .publikasi-new-inner {
        padding: 0 40px;
    }
    .pub-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .publikasi-new {
        padding: 60px 0 0;
    }
    .publikasi-new-inner {
        padding: 0 24px;
    }
    .pub-top {
        flex-direction: column;
        gap: 28px;
        margin-bottom: 40px;
    }
    .pub-left,
    .pub-right {
        flex: none;
        width: 100%;
    }
    .pub-title {
        font-size: 34px;
    }
    .pub-image img {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .pub-title {
        font-size: 28px;
    }
    .pub-image img {
        height: 200px;
    }
}

/* ══════════════════════════════════════════════════════════
   DATA TERBARU — Refactored Modern Focus Carousel
   ══════════════════════════════════════════════════════════ */

/* ── SECTION WRAPPER ──────────────────────────── */
.data-section {
    padding: 80px 0 40px;
    text-align: center;
    background: #ffffff;
    overflow: hidden;
}

/* ── SECTION HEADER ───────────────────────────── */
.section-header {
    max-width: 1200px;
    margin: 0 auto 48px;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.section-header h2 {
    text-align: center;
}

.section-header .btn-search {
    margin-top: 0;
}

/* ── CAROUSEL VIEWPORT ────────────────────────── */
.charts-slider {
    position: relative;
    width: 100%;
    overflow: visible; /* kiri kanan overflow kelihatan */
}

.charts-viewport {
    overflow: hidden;
    width: 100%;
}

/* Track: kartu-kartu berada di sini */
.charts-track {
    display: flex;
    gap: 24px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    /* padding kiri/kanan agar kartu aktif pertama & terakhir
       selalu tampil tepat di tengah viewport */
    padding: 20px calc((100vw - 640px) / 2) 22px;
    will-change: transform;
}

/* ── CHART CARD ───────────────────────────────── */
.chart-card {
    flex: 0 0 640px; /* lebar tetap besar */
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 28px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition:
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.45s ease;

    /* State default: non-active (sedikit mengecil & blur) */
    transform: scale(0.88);
    opacity: 0.55;
    filter: blur(0.5px);
    cursor: pointer;
}

/* Kartu aktif (tengah) */
.chart-card.is-active {
    transform: scale(1);
    opacity: 1;
    filter: none;
    box-shadow:
        0 6px 20px rgba(26, 86, 219, 0.08),
        0 1px 6px rgba(0, 0, 0, 0.05);
    cursor: default;
}

/* ── CARD HEADER ─────────────────────────────── */
.chart-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.chart-card-title {
    /* font-family: "Montserrat", sans-serif; */

    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* .chart-card-period-title {
    font-size: 13px;
    font-weight: 700;
    color: #1e40af;
    background: linear-gradient(90deg, #eff6ff, #ffffff);
    padding: 6px 12px;
    border-radius: 10px;
    width: fit-content;
} */

.chart-card-period-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--hitam);
}

/* Badge indikator (sub-label) */
.chart-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #eff6ff;
    color: var(--biru);
    font-size: 10.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 99px;
    white-space: nowrap;
    flex-shrink: 0;
}

.chart-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── CARD META ───────────────────────────────── */
.chart-card-sub {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 11.5px;
    color: #94a3b8;
}
.chart-card-sub span {
    display: flex;
    align-items: center;
    gap: 4px;
}
.chart-card-sub i {
    font-size: 13px;
    color: #cbd5e1;
}

/* ── LEGEND ──────────────────────────────────── */
.chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    padding: 10px 14px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
}

.chart-legend:empty {
    display: none;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: #475569;
    font-weight: 500;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── CHART CANVAS AREA ───────────────────────── */
.chart-canvas-wrap {
    position: relative;
    height: 220px;
    margin-top: 4px;
}

/* ── NAV BAR ─────────────────────────────────── */
.chart-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-btn:hover {
    background: var(--biru);
    border-color: var(--biru);
    color: #fff;
    box-shadow: 0 4px 16px rgba(26, 86, 219, 0.28);
}

/* Dots */
.dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.chart-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.chart-dot.active {
    background: var(--biru);
    width: 24px;
    border-radius: 4px;
}

/* ── NO DATA ─────────────────────────────────── */
.chart-empty-msg {
    text-align: center;
    color: #9ca3af;
    font-size: 12px;
    padding: 60px 0;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
    .chart-card {
        flex: 0 0 520px;
    }
    .charts-track {
        padding-left: calc((100vw - 520px) / 2);
        padding-right: calc((100vw - 520px) / 2);
    }
    .section-header {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .data-section {
        padding: 60px 0 80px;
    }
    .section-header {
        padding: 0 20px;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .chart-card {
        flex: 0 0 calc(100vw - 48px);
    }
    .charts-track {
        padding-left: 24px;
        padding-right: 24px;
    }
    .chart-card.is-active {
        transform: scale(1);
    }
    .chart-card {
        transform: scale(0.92);
    }
    .chart-canvas-wrap {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .chart-card {
        flex: 0 0 calc(100vw - 40px);
        padding: 20px;
    }
    .charts-track {
        padding-left: 20px;
        padding-right: 20px;
    }
    .chart-canvas-wrap {
        height: 160px;
    }
}

/* ── POPUP BANNER ─────────────────────────────── */

/* .btn-konsultasi {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(26, 86, 219, 0.35);
    transition: all 0.2s;
}
.btn-konsultasi:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
} */

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1200px) {
    .slide {
        padding: 120px 0 80px 60px;
    }
    .slide-title {
        font-size: 38px;
    }
    .slide-card {
        max-width: 460px;
    }
    .slide-img {
        width: 55%;
    }
}

@media (max-width: 1024px) {
    .slide {
        padding: 120px 0 80px 48px;
    }
    .slide-card {
        max-width: 420px;
    }
    .slide-title {
        font-size: 34px;
    }
    .slide-img {
        width: 52%;
    }
    .slider-dots {
        left: 48px;
    }
    .data-section {
        padding: 60px 48px;
    }
    .publikasi-new-inner {
        padding: 0 48px;
    }
}

@media (max-width: 768px) {
    /* Hero: tetap layout kiri-kanan seperti desktop, foto absolute di kanan */
    .slide {
        flex-direction: row;
        align-items: center;
        padding: 90px 0 70px 24px;
        min-height: 420px;
        background: #6096ba;
        position: relative;
        overflow: hidden;
    }
    /* Foto tetap absolute di kanan, hanya lebih sempit */
    .slide-img {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 55%;
        height: 100%;
    }
    .slide-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 60% center;
        mask-image: linear-gradient(
            to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.05) 8%,
            rgba(0, 0, 0, 0.4) 20%,
            rgba(0, 0, 0, 1) 42%
        );
        -webkit-mask-image: linear-gradient(
            to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.05) 8%,
            rgba(0, 0, 0, 0.4) 20%,
            rgba(0, 0, 0, 1) 42%
        );
    }
    /* Kembalikan ::after ke versi desktop (blend kiri) */
    .slide-img::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(
            90deg,
            #6096ba 0%,
            rgba(96, 150, 186, 0.16) 6%,
            rgba(80, 130, 170, 0.13) 14%,
            rgba(60, 100, 150, 0) 24%,
            rgba(40, 75, 140, 0) 36%
        );
    }
    /* Teks di kiri — lebar terbatas agar tidak nabrak foto */
    .slide-card {
        position: relative;
        z-index: 10;
        max-width: 55%;
        padding: 0;
        background: transparent;
    }
    .slide-texture {
        display: block;
    }
    .slide-deco {
        display: none;
    }
    .slide-title {
        font-size: 26px;
    }
    .slide-lead {
        font-size: 12px;
    }
    .slide-desc {
        font-size: 12px;
        margin-bottom: 18px;
    }
    .btn-hero {
        padding: 9px 16px;
        font-size: 12px;
    }
    /* Dots — tetap absolute di bawah kiri */
    .slider-dots {
        position: absolute;
        bottom: 20px;
        left: 24px;
        padding: 0;
        background: transparent;
        justify-content: flex-start;
    }
    /* Navbar */
    body #main-nav {
        padding: 0 20px;
    }
    /* Data section */
    .data-section {
        padding: 48px 24px;
    }
    .chart-card {
        min-width: 280px;
    }
    /* Publikasi */
    .publikasi-new-inner {
        padding: 0 24px;
    }
    .pub-top {
        flex-direction: column;
        gap: 20px;
    }
    .pub-left,
    .pub-right {
        flex: none;
        width: 100%;
    }
    .pub-title {
        font-size: 32px;
    }
    .pub-image img {
        height: 220px;
    }
    /* Konsultasi banner */
    .konsultasi-section {
        padding: 60px 24px;
    }
    .konsultasi-container {
        flex-direction: column;
        gap: 32px;
    }
    .grid-bento {
        grid-template-rows: 140px 80px 140px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 24px;
    }
    .hero-wrapper {
        margin-top: -60px;
        padding-top: 60px;
    }
    .data-section {
        padding: 36px 16px;
    }
    .pub-title {
        font-size: 26px;
    }
    .section-title {
        font-size: 28px;
    }
}

/* CONTENT DALAM CARD DEPAN */
.psc-content {
    padding: 16px 18px;
    background: #ffffff;
}

.psc-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: #035f9c;
    margin-bottom: 4px;
}

.psc-content p {
    font-size: 12px;
    color: #64748b;
}

/* BIAR LEBIH REAL 3D */
.psc-scene {
    width: 340px;
    height: 240px;
    position: relative;
    flex-shrink: 0;
}
/* SHADOW LANTAI */
.psc-front::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 20px;
    width: 75%;
    height: 18px;
    background: rgba(0, 0, 0, 0.25);
    filter: blur(12px);
    border-radius: 50%;
    z-index: -1;
}

.slide-psc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.psc-card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: 0.4s ease;
}

/* layer belakang */
.psc-back {
    transform: translateZ(-60px) rotateY(-18deg) translateX(-40px);
    opacity: 0.5;
}

/* layer tengah */
.psc-mid {
    transform: translateZ(-30px) rotateY(-12deg) translateX(-20px);
    opacity: 0.7;
}

/* layer depan */
.psc-front {
    transform: rotateY(-8deg) rotateX(3deg);
    overflow: hidden;
}

.nav-mobile-info{
    display:flex;
    flex-direction:column;
    flex:1;
    min-width:0;
}

/* ── FIX: nav-mobile user info di home ── */
@media (max-width: 768px) {
    #navMobile .nav-mobile-user {
        display: flex !important;
        flex-direction: row !important;
    }
    #navMobile .nav-mobile-avatar {
        display: flex !important;
    }
    #navMobile .nav-mobile-info {
        display: flex !important;
        flex-direction: column !important;
    }
    #navMobile .nav-mobile-name {
        display: block !important;
        color: #1e293b !important;
        font-size: 13px !important;
        font-weight: 700 !important;
    }
    #navMobile .nav-mobile-email {
        display: block !important;
        color: #94a3b8 !important;
        font-size: 11px !important;
    }
}