/* ── BASE ──────────────────────────────────────────────── */
        .pg-section {
            width: 100%;
            overflow-x: hidden;
        }

        /* ── HERO PROGRAM ───────────────────────────────────────── */
        .pg-hero {
            background-color: #061153;
            position: relative;
            overflow: hidden;
            padding: 72px 20px 100px;
        }
        @media (min-width: 480px) { .pg-hero { padding: 80px 28px 110px; } }
        @media (min-width: 768px) { .pg-hero { padding: 90px 48px 120px; } }
        @media (min-width: 1024px) { .pg-hero { padding: 100px 60px 130px; } }

        /* Mode potret tablet — jaga jarak ekstra dari wave saat teks membungkus */
        @media (min-width: 600px) and (max-width: 1024px) and (orientation: portrait) {
            .pg-hero { padding-bottom: 150px; }
        }

        /* Overlay gradient navy — sama seperti hero detail_program */
        .pg-hero__bg-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(135deg,
                rgba(6,17,83,0.98) 0%,
                rgba(0,40,180,0.85) 50%,
                rgba(6,17,83,0.70) 100%);
            z-index: 1;
        }

        /* Partikel bubble naik (looping) — sama seperti hero detail_program */
        .pg-hero__particles {
            position: absolute; inset: 0; z-index: 0; overflow: hidden;
        }
        .pg-hero__particles span {
            position: absolute;
            bottom: -150px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            border: 2px solid rgba(255,255,255,0.25);
            box-shadow: 0 0 15px rgba(255,255,255,0.15);
            animation: pg-bubble-rise infinite ease-in;
        }

        @keyframes pg-bubble-rise {
            0%   { bottom: -150px; transform: translateX(0) scale(0.8); opacity: 0; }
            10%  { opacity: 1; }
            85%  { opacity: 1; }
            100% { bottom: 120%; transform: translateX(-30px) scale(1.15); opacity: 0; }
        }

        .pg-hero__particles span:nth-child(1) { width:120px; height:120px; left:10%; animation-duration:6s;   animation-delay:0s; }
        .pg-hero__particles span:nth-child(2) { width:80px;  height:80px;  left:35%; animation-duration:8s;   animation-delay:2s; }
        .pg-hero__particles span:nth-child(3) { width:50px;  height:50px;  left:55%; animation-duration:5s;   animation-delay:1s; }
        .pg-hero__particles span:nth-child(4) { width:100px; height:100px; left:75%; animation-duration:7s;   animation-delay:3s; }
        .pg-hero__particles span:nth-child(5) {
            width:150px; height:150px; left:85%;
            background: rgba(245,158,11,0.12);
            border-color: rgba(245,158,11,0.3);
            box-shadow: 0 0 15px rgba(245,158,11,0.2);
            animation-duration:9s; animation-delay:0.5s;
        }
        .pg-hero__particles span:nth-child(6) { width:60px; height:60px; left:20%; animation-duration:6.5s; animation-delay:4s; }
        .pg-hero__particles span:nth-child(7) { width:90px; height:90px; left:65%; animation-duration:7.5s; animation-delay:1.5s; }

        .pg-hero__garis {
            position: absolute; left: 0; bottom: 0;
            height: 80%; width: auto;
            pointer-events: none; opacity: 0.20; z-index: 2;
        }

        .pg-hero__inner {
            position: relative; z-index: 3;
            max-width: 1280px; margin: 0 auto;
        }

        .pg-breadcrumb {
            display: flex; align-items: center; gap: 8px;
            margin-bottom: 24px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 12px; font-weight: 600;
            letter-spacing: 0.3em; text-transform: uppercase;
            color: rgba(255, 255, 255, 0.55);
        }
        .pg-breadcrumb a { color: rgba(255, 255, 255, 0.55); transition: color 0.3s ease; }
        @media (hover: hover) { .pg-breadcrumb a:hover { color: #ffffff; } }
        .pg-breadcrumb__sep { color: #f59e0b; }
        .pg-breadcrumb__cur { color: #ffffff; }

        .pg-hero__tag {
            display: inline-block;
            border: 1.5px solid rgba(255, 255, 255, 0.35);
            color: rgba(255, 255, 255, 0.85);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 12px; font-weight: 700; letter-spacing: 0.4px;
            padding: 4px 16px; border-radius: 30px; margin-bottom: 14px;
        }

        .pg-hero h1 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(26px, 5.5vw, 52px);
            font-weight: 800; color: #ffffff;
            line-height: 1.18; letter-spacing: -0.5px; margin-bottom: 16px;
        }
        .pg-hero h1 .hl { color: #f59e0b; }

        .pg-hero p {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(13px, 2vw, 15px);
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7; max-width: 520px;
        }

        .pg-hero__wave {
            position: absolute; bottom: 0; left: 0; width: 100%;
            z-index: 4; pointer-events: none; overflow: hidden;
            line-height: 0; height: 60px;
        }
        @media (min-width: 768px) { .pg-hero__wave { height: 80px; } }

        .pg-hero__wave svg { display: block; width: 100%; height: 100%; }

        @keyframes pg-wave-left  { 0% { transform: translateX(0); }    100% { transform: translateX(-50%); } }
        @keyframes pg-wave-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

        .pg-hero__wave-track {
            position: absolute; bottom: 0; left: 0;
            width: 200%; height: 100%; display: flex;
            transform: translateZ(0);
            backface-visibility: hidden;
        }
        .pg-hero__wave-track.layer1 { animation: pg-wave-left 12s linear infinite; opacity: 0.20; }
        .pg-hero__wave-track.layer2 { animation: pg-wave-right 9s linear infinite; opacity: 0.45; }
        .pg-hero__wave-track.layer3 { animation: pg-wave-left 7s linear infinite; opacity: 1; }
        .pg-hero__wave-track svg { width: 100%; height: 100%; flex-shrink: 0; }

        /* ── CONTENT WRAPPER ────────────────────────────────────── */
        .pg-content { background: #f5f7fc; position: relative; }
        .pg-content__inner {
            max-width: 1280px; margin: 0 auto;
            padding: 56px 20px 80px;
        }
        @media (min-width: 480px) { .pg-content__inner { padding: 64px 28px 88px; } }
        @media (min-width: 768px) { .pg-content__inner { padding: 72px 48px 96px; } }
        @media (min-width: 1024px) { .pg-content__inner { padding: 80px 60px 104px; } }

        /* ── GRID PROGRAM ───────────────────────────────────────── */
        .pg-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }
        @media (min-width: 380px) { .pg-grid { gap: 14px; } }
        @media (min-width: 480px) { .pg-grid { gap: 18px; } }
        @media (min-width: 600px) { .pg-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }
        @media (min-width: 900px) { .pg-grid { grid-template-columns: repeat(3, 1fr); gap: 26px; } }

        /* ── KARTU PROGRAM ──────────────────────────────────────── */
        .pg-card {
            background: #ffffff;
            border-radius: 14px;
            border: 1px solid rgba(15, 23, 42, 0.07);
            padding: 14px 12px 14px;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
            will-change: transform;
            transition: transform 0.40s cubic-bezier(0.22, 1, 0.36, 1),
                        box-shadow 0.40s cubic-bezier(0.22, 1, 0.36, 1),
                        border-color 0.40s ease;
        }
        @media (min-width: 600px) {
            .pg-card { padding: 32px 28px 28px; border-radius: 20px; }
        }
        @media (hover: hover) {
            .pg-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 52px rgba(37, 99, 235, 0.14);
                border-color: rgba(37, 99, 235, 0.18);
            }
            .pg-card:hover .pg-card__icon-wrap {
                transform: scale(1.04);
            }
            .pg-card:hover .pg-card__arrow {
                transform: translateX(4px);
                opacity: 1;
            }
        }
        .pg-card:active { transform: scale(0.97); }

        /* ── ICON WRAPPER — gambar logo kegiatan ──────────────── */
        .pg-card__icon-wrap {
            width: 100%;
            height: 84px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            overflow: visible;
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }
        @media (min-width: 600px) {
            .pg-card__icon-wrap { height: 140px; margin-bottom: 20px; }
        }
        .pg-card__icon-wrap--emoji {
            justify-content: center;
            background: #f8fafc;
            border-radius: 12px;
            overflow: hidden;
        }
        .pg-card__icon-wrap img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
        }
        .pg-card__emoji {
            font-size: 28px;
            line-height: 1;
        }
        @media (min-width: 600px) {
            .pg-card__emoji { font-size: 40px; }
        }

        /* ── TITLE & DESCRIPTION ────────────────────────────────── */
        .pg-card h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 14px; font-weight: 800;
            color: #0f172a; line-height: 1.3; margin-bottom: 6px;
            position: relative; z-index: 1; transition: color 0.3s ease;
        }
        @media (min-width: 600px) {
            .pg-card h3 { font-size: clamp(16px, 2.2vw, 19px); margin-bottom: 12px; }
        }
        .pg-card p {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 11.5px; color: #64748b; line-height: 1.5;
            margin: 0; position: relative; z-index: 1;
            display: -webkit-box; -webkit-line-clamp: 2;
            -webkit-box-orient: vertical; overflow: hidden;
        }
        @media (min-width: 600px) {
            .pg-card p { font-size: 13px; line-height: 1.65; -webkit-line-clamp: 3; }
        }

        /* ── FOOTER CARD ────────────────────────────────────────── */
        .pg-card__footer {
            margin-top: auto; padding-top: 10px;
            display: flex; align-items: center; gap: 6px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 11.5px; font-weight: 700; color: #2563eb;
            position: relative; z-index: 1;
        }
        @media (min-width: 600px) {
            .pg-card__footer { padding-top: 20px; font-size: 13px; }
        }
        .pg-card__arrow {
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
            opacity: 0.4;
        }

        /* ── EMPTY STATE ────────────────────────────────────────── */
        .pg-empty {
            background: #ffffff; border-radius: 24px;
            border: 1px solid rgba(15, 23, 42, 0.07);
            padding: 64px 32px; text-align: center;
            box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
        }
        .pg-empty__icon {
            width: 80px; height: 80px; border-radius: 50%;
            background: rgba(37, 99, 235, 0.07);
            display: flex; align-items: center; justify-content: center;
            font-size: 36px; margin: 0 auto 20px;
        }
        .pg-empty h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 20px; font-weight: 800; color: #0f172a; margin-bottom: 8px;
        }
        .pg-empty p {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 14px; color: #64748b;
            max-width: 340px; margin: 0 auto 24px; line-height: 1.65;
        }
        .pg-empty__btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 12px 28px; background: #1d4ed8; color: #ffffff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 13.5px; font-weight: 700; border-radius: 10px;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        @media (hover: hover) {
            .pg-empty__btn:hover { background: #0f172a; transform: translateY(-2px); }
        }

        /* ── SCROLL REVEAL ─────────────────────────────────────── */
        .pg-reveal {
            opacity: 0; transform: translateY(28px);
            transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .pg-reveal.pg-visible { opacity: 1; transform: translateY(0); }
        .pg-reveal-d1 { transition-delay: 0.08s; }
        .pg-reveal-d2 { transition-delay: 0.16s; }
        .pg-reveal-d3 { transition-delay: 0.24s; }

        /* ── HERO FADE-UP ───────────────────────────────────────── */
        .pg-fade-up {
            opacity: 0;
            animation: pgFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        .pg-fu-d1 { animation-delay: 0.10s; }
        .pg-fu-d2 { animation-delay: 0.25s; }
        .pg-fu-d3 { animation-delay: 0.40s; }

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

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
