/* =========================================================
   UTAMA: LAYOUT FLEKSIBEL (MAX-WIDTH 980PX, PUTIH BERSIH)
   ========================================================= */

.vm-stagger-section {
    background-color: #ffffff;
    color: #1e293b;
    padding: clamp(50px, 6vw, 80px) 16px;
    position: relative;
    font-family: inherit;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.vm-stagger-wrapper {
    max-width: 980px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

/* Header */
.vm-stagger-header {
    text-align: center;
    margin-bottom: clamp(35px, 5vw, 55px);
}

.vm-stagger-badge {
    display: inline-block;
    color: #C5A059;
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.vm-stagger-title {
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    font-weight: 800;
    color: #0F2147;
    margin: 0 0 8px 0;
    line-height: 1.25;
}

.vm-stagger-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.0rem);
    color: #64748b;
    margin: 0;
}

/* Layout Flex Infografik */
.vm-stagger-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(30px, 4vw, 50px);
    position: relative;
    width: 100%;
}

/* Bulatan Hab Kiri (Dengan Efek Blur-In) */
.vm-hub-side {
    flex: 0 1 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hub-circle-outer-light {
    width: clamp(200px, 28vw, 240px);
    height: clamp(200px, 28vw, 240px);
    border-radius: 50%;
    background: linear-gradient(135deg, #0F2147 0%, #E52226 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(15, 33, 71, 0.15);
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hub-circle-outer-light:hover {
    transform: scale(1.03);
    box-shadow: 0 16px 36px rgba(15, 33, 71, 0.22);
}

.hub-circle-inner-light {
    width: clamp(155px, 22vw, 185px);
    height: clamp(155px, 22vw, 185px);
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.04), 0 6px 18px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.hub-title-main {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 900;
    color: #0F2147;
    margin: 0 0 4px 0;
    line-height: 1.1;
}

.hub-subtitle-sub {
    font-size: clamp(0.75rem, 1.5vw, 0.88rem);
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.12em;
}

/* Slot Kad Kanan */
.vm-slots-side {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    width: 100%;
}

.vm-connecting-arrows {
    position: absolute;
    left: -50px;
    top: 20px;
    width: 50px;
    height: calc(100% - 40px);
    pointer-events: none;
    display: block;
}

.arrow-path {
    stroke-dasharray: 6, 6;
    animation: flowArrows 3s linear infinite;
}

@keyframes flowArrows {
    from { stroke-dashoffset: 24; }
    to { stroke-dashoffset: 0; }
}

/* Kad Box Korporat (Padding Atas-Bawah Seragam & Simetri) */
.vm-pill-card {
    border-radius: 12px;
    padding: 24px 28px; /* Padding atas-bawah & kiri-kanan seragam */
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

/* Tema Warna Kad */
.card-blue-theme {
    background: #0F2147;
    color: #ffffff;
    border-left: 6px solid #C5A059;
}
.card-blue-theme .pill-num,
.card-blue-theme .pill-cat { color: #C5A059; }
.card-blue-theme .pill-heading { color: #ffffff; }
.card-blue-theme .pill-desc { color: #cbd5e1; }

.card-red-theme {
    background: #E52226;
    color: #ffffff;
    border-left: 6px solid #0F2147;
}
.card-red-theme .pill-num,
.card-red-theme .pill-cat { color: #ffffff; opacity: 0.85; }
.card-red-theme .pill-heading { color: #ffffff; }
.card-red-theme .pill-desc { color: #fce8e6; }

.vm-pill-card:hover {
    transform: translateX(6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

/* Bulatan Ikon (Kemasan Simetri dalam Kad) */
.pill-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.flat-icon {
    width: 26px;
    height: 26px;
}

/* Teks Kandungan Kad */
.pill-text-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pill-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.pill-num {
    font-size: 0.85rem;
    font-weight: 800;
}

.pill-cat {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pill-heading {
    font-size: 1.22rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.pill-desc {
    font-size: 0.92rem;
    line-height: 1.45;
    margin: 0;
}

/* =========================================================
   ANIMASI BLUR-IN SKROL
   ========================================================= */

.blur-in-item {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(22px) scale(0.97);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.blur-in-item.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

/* =========================================================
   RESPONSIF DEVICE
   ========================================================= */

@media (max-width: 850px) {
    .vm-stagger-layout {
        flex-direction: column;
        align-items: center;
    }

    .vm-hub-side {
        flex: 0 0 auto;
    }

    .vm-connecting-arrows {
        display: none;
    }

    .vm-pill-card:hover {
        transform: translateY(-3px);
    }
}

@media (max-width: 520px) {
    .vm-pill-card {
        padding: 20px 20px;
        gap: 16px;
    }

    .pill-icon-circle {
        width: 46px;
        height: 46px;
    }

    .flat-icon {
        width: 22px;
        height: 22px;
    }
}