/* ════════════════════════════════════════════════════════════════════════════
   PROGRAM PAGE — Deep brand blue (#0F1977) backgrounds + white text
   ════════════════════════════════════════════════════════════════════════════ */
.pgm-hero,
.pgm-pillars-intro,
.pgm-scene,
.pgm-scene--inovasi,
.pgm-hslide-section {
    /* User-spec brand blue */
    --pgm-bg:        rgb(11, 11, 11);
    --pgm-bg-alt:    rgb(11, 11, 11);    /* slightly lighter variant for Inovasi */
    --pgm-bg-deep:   rgb(0, 0, 0);     /* deeper for hero overlay */
}

/* ──────────────────────────────────────────
   1. HERO — Live photo with Ken Burns
   ────────────────────────────────────────── */
.pgm-hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
    background: var(--pgm-bg-deep);
}

.pgm-hero__image {
    position: absolute;
    inset: -5%;
    z-index: 1;
    transform: scale(var(--scroll-scale, 1));
    will-change: transform;
}
.pgm-hero__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation:
        pgmKenBurns 25s ease-in-out infinite alternate,
        pgmBreathing 8s ease-in-out infinite;
}
@keyframes pgmKenBurns {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.12) translate(-3%, -2%); }
}
@keyframes pgmBreathing {
    0%, 100% { filter: brightness(0.95) saturate(1); }
    50%      { filter: brightness(1.08) saturate(1.1); }
}

/* Particles */
.pgm-hero__particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.pgm-hero__particles span {
    position: absolute;
    width: 4px; height: 4px;
    background: rgba(255, 220, 150, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 220, 150, 0.5);
    opacity: 0;
    animation: pgmDrift linear infinite;
}
.pgm-hero__particles span:nth-child(1)  { left: 10%; bottom: 0; animation-duration: 18s; animation-delay: 0s; }
.pgm-hero__particles span:nth-child(2)  { left: 22%; bottom: 0; animation-duration: 22s; animation-delay: 2s; width: 3px; height: 3px; }
.pgm-hero__particles span:nth-child(3)  { left: 35%; bottom: 0; animation-duration: 16s; animation-delay: 5s; width: 5px; height: 5px; }
.pgm-hero__particles span:nth-child(4)  { left: 48%; bottom: 0; animation-duration: 20s; animation-delay: 7s; }
.pgm-hero__particles span:nth-child(5)  { left: 60%; bottom: 0; animation-duration: 24s; animation-delay: 1s; width: 3px; height: 3px; }
.pgm-hero__particles span:nth-child(6)  { left: 72%; bottom: 0; animation-duration: 19s; animation-delay: 9s; }
.pgm-hero__particles span:nth-child(7)  { left: 85%; bottom: 0; animation-duration: 21s; animation-delay: 4s; width: 5px; height: 5px; }
.pgm-hero__particles span:nth-child(8)  { left: 15%; bottom: 0; animation-duration: 23s; animation-delay: 11s; }
.pgm-hero__particles span:nth-child(9)  { left: 42%; bottom: 0; animation-duration: 17s; animation-delay: 13s; width: 3px; height: 3px; }
.pgm-hero__particles span:nth-child(10) { left: 56%; bottom: 0; animation-duration: 25s; animation-delay: 6s; }
.pgm-hero__particles span:nth-child(11) { left: 70%; bottom: 0; animation-duration: 18s; animation-delay: 15s; width: 4px; height: 4px; }
.pgm-hero__particles span:nth-child(12) { left: 90%; bottom: 0; animation-duration: 20s; animation-delay: 8s; width: 3px; height: 3px; }
@keyframes pgmDrift {
    0%   { opacity: 0; transform: translateY(0) translateX(0); }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(-110vh) translateX(60px); }
}

/* Sunlight sweep */
.pgm-hero__sunlight {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(105deg,
        transparent 30%,
        rgba(255, 230, 180, 0.08) 45%,
        rgba(255, 230, 180, 0.14) 50%,
        rgba(255, 230, 180, 0.08) 55%,
        transparent 70%);
    animation: pgmSunlight 12s ease-in-out infinite;
}
@keyframes pgmSunlight {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Brand-blue overlay (#0F1977 family).
   IMPORTANT: bottom stop = SOLID rgb(15,25,119) — exactly matches
   pgm-pillars-intro background so the hero blends seamlessly into
   the next section (no visible seam/line). */
.pgm-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    background:
        linear-gradient(180deg,
            rgba(11, 11, 11, 0.30) 0%,
            rgba(11, 11, 11, 0.60) 55%,
            rgb(11, 11, 11) 100%),                   /* opaque match */
        linear-gradient(135deg,
            rgba(11, 11, 11, 0.28) 0%,
            transparent 50%,
            rgba(11, 11, 11, 0.5) 100%);
}

/* Content */
.pgm-hero__content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;       /* compensate for fixed nav */
    color: #fff;
}

.pgm-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
}
.pgm-breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.pgm-breadcrumb a:hover { color: var(--clr-gold-light); }
.pgm-breadcrumb svg { color: rgba(255,255,255,0.4); }
.pgm-breadcrumb span { color: var(--clr-gold-light); font-weight: 600; }

.pgm-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: rgba(249, 167, 3, 0.18);
    border: 1px solid rgba(249, 167, 3, 0.45);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-gold-light);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}
.pgm-hero__pulse {
    width: 8px; height: 8px;
    background: var(--clr-gold);
    border-radius: 50%;
    position: relative;
}
.pgm-hero__pulse::after {
    content: '';
    position: absolute; inset: 0;
    background: var(--clr-gold);
    border-radius: 50%;
    animation: pgmPulse 1.8s ease-out infinite;
}
@keyframes pgmPulse {
    0%   { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(3); opacity: 0; }
}

.pgm-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.85rem);
    font-weight: var(--fw-black);
    line-height: 1.1;
    letter-spacing: var(--ls-tight);
    margin: 0 0 1.25rem;
    color: #fff;
    text-shadow: 0 4px 32px rgba(0, 0, 0, 0.55);
    max-width: 920px;
    position:center;
}
.pgm-hero__num {
    color: var(--clr-gold-light);
    font-weight: var(--fw-black);
}
.pgm-hero__gold {
    background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 50%, var(--clr-gold-light) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: pgmShine 4s linear infinite;
}
@keyframes pgmShine {
    0%   { background-position: 200% 50%; }
    100% { background-position: 0% 50%; }
}

.pgm-hero__lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 2rem;
    max-width: 600px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.pgm-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
    color: var(--clr-blue-deeper);
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: 0 10px 32px rgba(249, 167, 3, 0.5);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pgm-hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(249, 167, 3, 0.65);
    color: var(--clr-blue-deeper);
}

.pgm-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.pgm-hero__mouse {
    width: 26px; height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    position: relative;
    display: block;
}
.pgm-hero__mouse-wheel {
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 8px;
    background: var(--clr-gold);
    border-radius: 99px;
    animation: pgmWheel 2s ease-in-out infinite;
}
@keyframes pgmWheel {
    0%, 100% { transform: translate(-50%, 0); opacity: 1; }
    60%      { transform: translate(-50%, 12px); opacity: 0; }
}

/* ──────────────────────────────────────────
   2. PILLARS INTRO — Header sebelum scenes
   ────────────────────────────────────────── */
.pgm-pillars-intro {
    background: var(--pgm-bg);
    color: #fff;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    /* Pull section UP slightly so its top edge tucks under the hero's
       bottom — eliminates any 1px sub-pixel seam between gradients. */
    margin-top: -1px;
}
/* Soft gradient veil at the top — matches the hero's last gradient
   stop so the two sections blend into one continuous blue field. */
.pgm-pillars-intro::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 120px;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(180deg,
        rgba(10, 18, 95, 0.35) 0%,
        transparent 100%);
}
.pgm-pillars-intro .container {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

/* ── Pillars-intro ornaments ── */
.pgm-orn {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    color: rgba(249, 167, 3, 0.35);
}
.pgm-orn__dot {
    position: absolute;
    width: 8px; height: 8px;
    background: var(--clr-gold);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(249, 167, 3, 0.6);
    opacity: 0.6;
    animation: pgmOrnFloat 9s ease-in-out infinite;
}
.pgm-orn__dot--1 { top: 22%; left: 12%; animation-delay: 0s;   width: 6px; height: 6px; }
.pgm-orn__dot--2 { top: 70%; left: 18%; animation-delay: 2.5s; }
.pgm-orn__dot--3 { top: 35%; right: 14%; animation-delay: 1.2s; width: 10px; height: 10px; }
.pgm-orn__dot--4 { top: 78%; right: 22%; animation-delay: 4s;  width: 5px; height: 5px; }
@keyframes pgmOrnFloat {
    0%, 100% { transform: translateY(0)    scale(1);    opacity: 0.5; }
    50%      { transform: translateY(-14px) scale(1.15); opacity: 1;   }
}
.pgm-orn__wave {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: min(620px, 80%);
    height: 250px;
    color: rgba(33, 150, 211, 0.45);
    opacity: 0.8;
    animation: pgmOrnWave 6s ease-in-out infinite;
}
@keyframes pgmOrnWave {
    0%, 100% { transform: translateX(-50%) translateY(0);    opacity: 0.65; }
    50%      { transform: translateX(-50%) translateY(-6px); opacity: 0.9;  }
}
.pgm-orn__ring {
    position: absolute;
    border-radius: 50%;
    border: 5px solid;
    pointer-events: none;
}
.pgm-orn__ring--lg {
    width: 220px; height: 220px;
    top: -60px; right: -40px;
    border-color: rgba(33, 150, 211, 0.5);
    animation: pgmOrnRing 10s ease-in-out infinite;
}
.pgm-orn__ring--sm {
    width: 120px; height: 120px;
    bottom: -30px; left: -20px;
    border-color: rgba(249, 167, 3, 0.25);
    animation: pgmOrnRing 8s ease-in-out infinite reverse;
}
@keyframes pgmOrnRing {
    0%, 100% { transform: scale(1)    rotate(0deg);  opacity: 0.5; }
    50%      { transform: scale(1.08) rotate(180deg); opacity: 0.85; }
}
.pgm-pillars__title {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: var(--fw-extra);
    line-height: 1.15;
    letter-spacing: var(--ls-tight);
    margin: var(--sp-4) 0 var(--sp-4);
    color: #fff;
}
.pgm-pillars__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}
.section-label-white { color: var(--clr-gold-light); }
.section-label-white::before { background: var(--clr-gold) !important; }

/* ──────────────────────────────────────────
   2b. SCENE — STICKY SCROLL pattern (text scrolls past pinned image)
   THIS IS THE KEY: text col 200vh + image sticky 100vh
   ────────────────────────────────────────── */
.pgm-scene {
    display: flex;
    align-items: stretch;
    background: var(--pgm-bg);
    color: #fff;
}
.pgm-scene--inovasi {
    background: var(--pgm-bg-alt);
}

.pgm-scene__imgcol {
    width: 50%;
    min-width: 0;
}
.pgm-scene__sticky-img {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    /* Image takes full viewport — pinned while text scrolls */
}
.pgm-scene__sticky-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Subtle slow zoom while pinned, gives motion */
    animation: pgmSceneKenBurns 30s ease-in-out infinite alternate;
}
@keyframes pgmSceneKenBurns {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -1.5%); }
}

.pgm-scene__img-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(11, 11, 11, 0.15) 0%,
            rgba(11, 11, 11, 0.45) 60%,
            rgba(11, 11, 11, 0.78) 100%);
}

.pgm-scene__badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    padding: 1.25rem 1.75rem;
    background: rgba(10, 18, 95, 0.88);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: #fff;
    text-align: center;
    z-index: 2;
}
.pgm-scene__badge span {
    display: block;
    font-size: 2.5rem;
    font-weight: var(--fw-black);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.pgm-scene__badge--blue span { color: var(--clr-blue-light); }
.pgm-scene__badge--gold span { color: var(--clr-gold-light); }
.pgm-scene__badge small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.75);
}

/* ── Text column — CRITICAL: min-height 200vh ── */
.pgm-scene__text {
    width: 50%;
    min-width: 0;
    min-height: 200vh;        /* ← THE KEY: 2x viewport tall, gives scroll room */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 60px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.pgm-scene__text-inner {
    max-width: 540px;
    position: relative;
    z-index: 1;
}

/* ── Scene text ornaments — gradient orbs + vertical line + floating dots ── */
.pgm-scene__orn {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.pgm-scene__orn-orb {
    position: absolute;
    width: 380px; height: 380px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    top: 15%;
    right: -120px;
    animation: pgmOrnOrb 12s ease-in-out infinite;
}
.pgm-scene__orn--blue .pgm-scene__orn-orb {
    background: radial-gradient(circle, rgba(33, 150, 211, 0.8) 0%, transparent 70%);
}
.pgm-scene__orn--gold .pgm-scene__orn-orb {
    background: radial-gradient(circle, rgba(249, 167, 3, 0.7) 0%, transparent 70%);
}
@keyframes pgmOrnOrb {
    0%, 100% { transform: translate(0, 0)     scale(1);    opacity: 0.35; }
    50%      { transform: translate(-30px, 40px) scale(1.12); opacity: 0.6; }
}
.pgm-scene__orn-line {
    position: absolute;
    top: 8%;
    bottom: 8%;
    width: 1px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.18) 30%,
        rgba(255, 255, 255, 0.32) 50%,
        rgba(255, 255, 255, 0.18) 70%,
        transparent 100%);
}
.pgm-scene__orn--blue .pgm-scene__orn-line { right: 32px; }
.pgm-scene__orn--gold .pgm-scene__orn-line { left: 32px; }
.pgm-scene__orn-line::before {
    /* traveling spark down the line */
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 5px; height: 60px;
    border-radius: 99px;
    background: linear-gradient(180deg, transparent, var(--clr-gold-light), transparent);
    animation: pgmOrnSpark 5s ease-in-out infinite;
}
@keyframes pgmOrnSpark {
    0%   { top: 0%;   opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
.pgm-scene__orn-dot {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    animation: pgmOrnFloat 7s ease-in-out infinite;
}
.pgm-scene__orn--blue .pgm-scene__orn-dot {
    background: var(--clr-blue-light);
    box-shadow: 0 0 12px rgba(33, 150, 211, 0.7);
}
.pgm-scene__orn--gold .pgm-scene__orn-dot {
    background: var(--clr-gold-light);
    box-shadow: 0 0 12px rgba(249, 167, 3, 0.7);
}
.pgm-scene__orn-dot--a { top: 12%; left: 8%;   animation-delay: 0s; }
.pgm-scene__orn-dot--b { top: 55%; left: 5%;   animation-delay: 2.4s; width: 4px; height: 4px; }
.pgm-scene__orn-dot--c { top: 80%; right: 18%; animation-delay: 4.2s; width: 8px; height: 8px; }

.pgm-scene__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    align-self: flex-start;
}
.pgm-scene__chip--blue {
    background: rgba(33, 150, 211, 0.2);
    border: 1px solid rgba(33, 150, 211, 0.45);
    color: var(--clr-blue-light);
}
.pgm-scene__chip--gold {
    background: rgba(249, 167, 3, 0.18);
    border: 1px solid rgba(249, 167, 3, 0.45);
    color: var(--clr-gold-light);
}

.pgm-scene__h {
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    font-weight: var(--fw-extra);
    line-height: 1.15;
    letter-spacing: var(--ls-tight);
    margin: 0 0 1rem;
    color: #fff;
}

.pgm-scene__lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 2.5rem;
}
.pgm-scene__lead strong { color: #fff; font-weight: var(--fw-bold); }

/* Bullets — numbered list with content */
.pgm-scene__bullet {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.pgm-scene__bullet:first-of-type {
    border-top: none;
    padding-top: 0;
}
.pgm-scene__bullet-num {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: var(--fw-black);
    color: var(--clr-blue-light);
    line-height: 1;
    min-width: 42px;
    padding: 0.4rem 0.6rem;
    background: rgba(33, 150, 211, 0.15);
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid rgba(33, 150, 211, 0.3);
}
.pgm-scene__bullet-num--gold {
    color: var(--clr-gold-light);
    background: rgba(249, 167, 3, 0.15);
    border-color: rgba(249, 167, 3, 0.3);
}
.pgm-scene__bullet > div { flex: 1; min-width: 0; }
.pgm-scene__bullet strong {
    display: block;
    font-size: 1.05rem;
    font-weight: var(--fw-bold);
    color: #fff;
    margin-bottom: 0.4rem;
}
.pgm-scene__bullet p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

/* Big stat at end of text */
.pgm-scene__stat {
    margin-top: 2.5rem;
    padding: 1.5rem 1.75rem;
    background: rgba(33, 150, 211, 0.12);
    border-left: 4px solid var(--clr-blue-light);
    border-radius: var(--radius-md);
}
.pgm-scene__stat--gold {
    background: rgba(249, 167, 3, 0.12);
    border-left-color: var(--clr-gold-light);
}
.pgm-scene__stat-num {
    display: block;
    font-size: 3rem;
    font-weight: var(--fw-black);
    line-height: 1;
    color: var(--clr-blue-light);
    margin-bottom: 0.4rem;
}
.pgm-scene__stat--gold .pgm-scene__stat-num { color: var(--clr-gold-light); }
.pgm-scene__stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
}

/* ──────────────────────────────────────────
   3. FEATURED — Program Unggulan (HORIZONTAL SLIDE SCROLL)
   Outer section gets tall height (N × 100vh) → gives scroll distance.
   Inner .pgm-hslide-pin is sticky, pinning while user scrolls.
   The track inside translates -X based on scroll progress so cards
   slide HORIZONTALLY past the viewport.
   ────────────────────────────────────────── */
.pgm-hslide-section {
    /* Total scroll height = (count + 0.5) × viewport. Tweak to taste. */
    height: calc((var(--count, 3) + 0.5) * 100vh);
    background: var(--pgm-bg);
    color: #fff;
    position: relative;
}
.pgm-hslide-pin {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.pgm-hslide-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 6rem;
    padding-bottom: 2rem;
    flex-wrap: wrap;
}
.pgm-hslide-title {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: var(--fw-extra);
    line-height: 1.15;
    letter-spacing: var(--ls-tight);
    margin: var(--sp-3) 0 0;
    color: #fff;
}
.pgm-hslide-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}
.pgm-hslide-progress__fill {
    position: relative;
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 99px;
    overflow: hidden;
}
.pgm-hslide-progress__fill::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: calc(var(--p, 0) * 100%);
    background: linear-gradient(90deg, var(--clr-gold-light), var(--clr-gold));
    border-radius: 99px;
    transition: width 0.15s linear;
}
.pgm-hslide-progress__count {
    font-size: 0.9rem;
    font-weight: var(--fw-bold);
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-feature-settings: 'tnum';
}
.pgm-hslide-progress__count em {
    font-size: 1.25rem;
    color: var(--clr-gold-light);
    font-style: normal;
    font-weight: 800;
}
.pgm-hslide-progress__count i {
    color: rgba(255, 255, 255, 0.4);
    font-style: normal;
}
.pgm-hslide-progress__count b {
    color: rgba(255, 255, 255, 0.7);
    font-weight: var(--fw-bold);
}

/* Viewport — clips the horizontally-translating track */
.pgm-hslide-viewport {
    flex: 1;
    overflow: hidden;
    padding-bottom: 2rem;
}
.pgm-hslide-track {
    height: 100%;
    display: flex;
    gap: 2rem;
    padding: 0 6vw;
    /* --tx (0..1) set by JS based on scroll progress */
    transform: translateX(calc(var(--tx, 0) * -1 * (100vw - 80vw)));
    will-change: transform;
    transition: transform 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Each card — fixed width, side-by-side */
.pgm-hslide-card {
    flex: 0 0 min(70vw, 720px);
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    background: var(--pgm-bg-deep);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 30px 60px -20px rgba(0, 0, 0, 0.6),
        0 4px 14px -4px rgba(0, 0, 0, 0.35);
    position: relative;
}
.pgm-hslide-card--blue {
    background:
        linear-gradient(135deg, rgba(60, 80, 200, 0.4) 0%, var(--pgm-bg-deep) 100%);
}
.pgm-hslide-card--gold {
    background:
        linear-gradient(135deg, rgba(249, 167, 3, 0.22) 0%, var(--pgm-bg-deep) 100%);
}

.pgm-hslide-card__img {
    position: relative;
    overflow: hidden;
    background: var(--pgm-bg-deep);
}
.pgm-hslide-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.pgm-hslide-card__img-ph {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.35);
    background: var(--grad-primary);
}
.pgm-hslide-card__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 50%,
        rgba(10, 18, 95, 0.78) 100%);
}
.pgm-hslide-card__num {
    position: absolute;
    bottom: 1.2rem;
    left: 1.5rem;
    font-size: 4rem;
    line-height: 1;
    font-weight: var(--fw-black);
    color: #fff;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.pgm-hslide-card__body {
    padding: 2.75rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}
.pgm-hslide-card__chip {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.4rem 0.95rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.pgm-hslide-card__chip--blue {
    background: rgba(143, 163, 245, 0.22);
    border: 1px solid rgba(143, 163, 245, 0.45);
    color: #d4ddff;
}
.pgm-hslide-card__chip--gold {
    background: rgba(249, 167, 3, 0.2);
    border: 1px solid rgba(249, 167, 3, 0.45);
    color: var(--clr-gold-light);
}
.pgm-hslide-card__title {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    font-weight: var(--fw-extra);
    line-height: 1.2;
    letter-spacing: var(--ls-tight);
    margin: 0 0 1rem;
    color: #fff;
}
.pgm-hslide-card__desc {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pgm-hslide-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    align-self: flex-start;
    padding: 0.85rem 1.65rem;
    background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
    color: var(--pgm-bg-deep);
    font-weight: 800;
    font-size: 0.92rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(249, 167, 3, 0.4);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pgm-hslide-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(249, 167, 3, 0.55);
    color: var(--pgm-bg-deep);
}
.pgm-hslide-card__cta svg { transition: transform 0.25s; }
.pgm-hslide-card__cta:hover svg { transform: translateX(4px); }

/* Scroll hint at bottom of pinned area */
.pgm-hslide-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 99px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    backdrop-filter: blur(8px);
    pointer-events: none;
}
.pgm-hslide-hint svg { animation: pgmHslideHint 1.8s ease-in-out infinite; }
@keyframes pgmHslideHint {
    0%, 100% { transform: translateX(0);   opacity: 0.6; }
    50%      { transform: translateX(6px); opacity: 1;   }
}

/* ──────────────────────────────────────────
   4. ALL PROGRAMS — Filter + Grid
   ────────────────────────────────────────── */
.pgm-all {
    padding: 5rem 0;
    background: var(--clr-off-white);
}
.pgm-all__head { margin-bottom: 2rem; }

.pgm-filter {
    display: flex;
    gap: var(--sp-6);
    align-items: flex-end;
    flex-wrap: wrap;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: var(--sp-5) var(--sp-6);
    margin: var(--sp-8) 0;
    box-shadow: var(--shadow-card);
}
.pgm-filter__group { display: flex; flex-direction: column; gap: var(--sp-2); }
.pgm-filter__label {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    color: var(--clr-text-muted);
}
.pgm-type-btns { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.pgm-type-btn {
    padding: var(--sp-2) var(--sp-4);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semi);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-full);
    background: var(--clr-white);
    color: var(--clr-text-secondary);
    cursor: pointer;
    transition: all var(--t-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pgm-type-btn:hover { border-color: var(--clr-blue); color: var(--clr-blue); }
.pgm-type-btn.active {
    background: var(--clr-blue);
    color: var(--clr-white);
    border-color: var(--clr-blue);
}
.pgm-type-btn--gold:hover { border-color: var(--clr-gold); color: var(--clr-gold-dark); }
.pgm-type-btn--gold.active {
    background: var(--clr-gold);
    color: var(--clr-blue-deeper);
    border-color: var(--clr-gold);
}
.pgm-badge-count {
    background: rgba(255,255,255,0.25);
    color: inherit;
    padding: 0 6px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: var(--fw-bold);
}
.pgm-type-btn:not(.active) .pgm-badge-count {
    background: var(--clr-surface);
    color: var(--clr-text-muted);
}
.pgm-select {
    padding: var(--sp-2) var(--sp-4);
    font-size: var(--fs-sm);
    color: var(--clr-text-primary);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    background: var(--clr-white);
    outline: none;
    cursor: pointer;
    min-width: 180px;
}
.pgm-select:focus { border-color: var(--clr-blue); }
.pgm-reset {
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    text-decoration: underline;
    margin-left: var(--sp-3);
}
.pgm-reset:hover { color: var(--clr-blue); }

/* ──────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────── */
@media (max-width: 900px) {
    /* Stack scene vertically on tablet & mobile (sticky doesn't work cleanly in column) */
    .pgm-scene {
        flex-direction: column;
    }
    /* On mobile, image goes first for Inovasi scene too (DOM order = text first) */
    .pgm-scene--inovasi {
        flex-direction: column-reverse;
    }
    .pgm-scene__imgcol,
    .pgm-scene__text {
        width: 100%;
    }
    .pgm-scene__sticky-img {
        position: relative;     /* unstick on mobile */
        height: 60vh;
        min-height: 360px;
        max-height: 480px;
    }
    .pgm-scene__text {
        min-height: auto;       /* remove 200vh on mobile */
        padding: 3rem 1.5rem;
    }
    .pgm-pillars-intro { padding: 4rem 0 3rem; }

    /* Horizontal slide → fallback to native horizontal swipe on tablet & mobile.
       Releases the pin-and-translate JS choreography (clunky on touch). */
    .pgm-hslide-section {
        height: auto;
    }
    .pgm-hslide-pin {
        position: relative;
        top: auto;
        height: auto;
    }
    .pgm-hslide-header { padding-top: 3rem; }
    .pgm-hslide-viewport {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 3rem;
    }
    .pgm-hslide-track {
        transform: none !important;
        height: 480px;
        padding: 0 1.5rem;
        gap: 1rem;
    }
    .pgm-hslide-card {
        flex: 0 0 86vw;
        max-width: 480px;
        scroll-snap-align: center;
        grid-template-columns: 1fr;
        grid-template-rows: 180px 1fr;
    }
    .pgm-hslide-hint {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 640px) {
    .pgm-hero { height: 88vh; min-height: 540px; }
    .pgm-hero__content { padding-top: 80px; padding-left: 1.25rem; padding-right: 1.25rem; }
    .pgm-hero__title { font-size: 1.85rem; }
    .pgm-hero__lead { font-size: 1rem; }
    .pgm-scene__sticky-img { height: 50vh; min-height: 300px; }
    .pgm-scene__badge { bottom: 1.25rem; left: 1.25rem; padding: 0.85rem 1.15rem; }
    .pgm-scene__badge span { font-size: 1.85rem; }
    .pgm-scene__h { font-size: 1.55rem; }
    .pgm-scene__lead { font-size: 1rem; }
    .pgm-scene__bullet-num { font-size: 1.15rem; min-width: 36px; padding: 0.3rem 0.45rem; }
    .pgm-scene__bullet strong { font-size: 1rem; }
    .pgm-scene__bullet p { font-size: 0.88rem; }
    .pgm-scene__stat-num { font-size: 2.25rem; }
    .pgm-pillars__lead { font-size: 0.95rem; }
    .pgm-hslide-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .pgm-hslide-card__body { padding: 1.5rem; }
    .pgm-hslide-card__title { font-size: 1.4rem; }
    .pgm-hslide-card__desc { font-size: 0.92rem; -webkit-line-clamp: 4; }
    .pgm-stack-card__title { font-size: 1.4rem; }
    .pgm-stack-card__desc { font-size: 0.92rem; -webkit-line-clamp: 4; }
    .pgm-stack-card__body { padding: 1.5rem 1.25rem 1.75rem; }
    .pgm-stack-card__img { grid-row: 1; }
    .pgm-filter { flex-direction: column; align-items: stretch; }
    .pgm-select { min-width: unset; width: 100%; }
    .pgm-type-btns { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .pgm-type-btn { flex-shrink: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .pgm-hero__image img,
    .pgm-hero__particles span,
    .pgm-hero__sunlight,
    .pgm-hero__pulse::after,
    .pgm-hero__mouse-wheel,
    .pgm-hero__gold,
    .pgm-scene__sticky-img img,
    .pgm-orn__dot,
    .pgm-orn__wave,
    .pgm-orn__ring,
    .pgm-scene__orn-orb,
    .pgm-scene__orn-line::before,
    .pgm-scene__orn-dot {
        animation: none !important;
    }
    /* H-slide collapses to native horizontal scroll, no JS-driven transform */
    .pgm-hslide-section { height: auto; }
    .pgm-hslide-pin { position: relative; top: auto; height: auto; }
    .pgm-hslide-viewport { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; }
    .pgm-hslide-track { transform: none !important; height: 460px; }
    .pgm-hslide-card { scroll-snap-align: center; }
    .pgm-hslide-hint svg { animation: none !important; }
}

/* Empty state when client-side filter returns no matches */
.pgm-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--clr-text-muted);
}
.pgm-empty-state svg {
    margin-bottom: 0.75rem;
    color: var(--clr-text-muted);
    opacity: 0.6;
}
.pgm-empty-state p {
    font-size: 0.95rem;
    margin: 0;
}
.pgm-reset {
    background: none;
    border: none;
    padding: 0;
    margin-left: var(--sp-3);
    font-size: var(--fs-xs);
    color: var(--clr-text-muted);
    text-decoration: underline;
    cursor: pointer;
    font-family: inherit;
}
.pgm-reset:hover { color: var(--clr-blue); }
