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

        /* ================================================================
           HERO — SLIDESHOW
        ================================================================ */
        .hp-hero {
            background-color: #061153;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .hp-hero__img-wrap {
            position: relative;
            width: 100%;
            height: 52vw;
            min-height: 200px;
            max-height: 300px;
            overflow: hidden;
            flex-shrink: 0;
            background: #061153;
        }

        @media (min-width: 600px) {
            .hp-hero__img-wrap {
                height: 44vw;
                max-height: 360px;
            }
        }

        @media (min-width: 768px) {
            .hp-hero {
                flex-direction: row;
                position: relative;
                min-height: 500px;
                max-height: 600px;
                align-items: center;
            }

            .hp-hero__img-wrap {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                max-height: none;
                min-height: 0;
            }
        }

        @media (min-width: 1024px) {
            .hp-hero {
                min-height: 560px;
                max-height: 660px;
            }
        }

        /* Slideshow */
        .hp-slideshow {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hp-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1s ease-in-out, visibility 1s;
            z-index: 0;
        }

        .hp-slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 1;
        }

        .hp-slide img.hp-hero__bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
            background: #061153;
            transform: scale(1);
            transition: transform 6s ease-out;
        }

        @media (min-width: 768px) {
            .hp-slide img.hp-hero__bg {
                object-position: right center;
                width: 93%;
                margin-left: 7%;
            }
        }

        .hp-slide.active img.hp-hero__bg {
            transform: scale(1.07);
        }

        /* Slide dots */
        .hp-slide-dots {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
            z-index: 10;
        }

        @media (min-width: 768px) {
            .hp-slide-dots {
                right: 40px;
                gap: 16px;
            }
        }

        .hp-slide-dot {
            width: 14px;
            height: 3px;
            border-radius: 4px;
            background: rgba(255, 255, 255, 0.35);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
            touch-action: manipulation;
        }

        .hp-slide-dot.active {
            background: #ff5c00;
            width: 40px;
        }

        @media (hover: hover) {
            .hp-slide-dot:hover {
                background: rgba(255, 255, 255, 0.9);
                width: 24px;
            }
        }

        /* Gradient overlay */
        .hp-hero__grad {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(to bottom, transparent 0%, rgba(6, 17, 83, 0.35) 70%, rgba(6, 17, 83, 0.80) 100%);
        }

        @media (min-width: 768px) {
            .hp-hero__grad {
                background: linear-gradient(to right,
                        rgba(6, 17, 83, 1.00) 0%, rgba(6, 17, 83, 1.00) 8%, rgba(6, 17, 83, 0.95) 14%,
                        rgba(0, 40, 180, 0.82) 26%, rgba(0, 40, 180, 0.42) 46%, rgba(6, 17, 83, 0.08) 72%, transparent 100%);
            }
        }

        /* Decorative lines */
        .hp-hero__garis {
            position: absolute;
            left: 0;
            bottom: 0;
            height: 100%;
            width: auto;
            z-index: 2;
            pointer-events: none;
            opacity: 0.28;
            display: block;
            max-width: 40%;
            object-fit: contain;
            object-position: left bottom;
            animation: hp-garisIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
        }

        @keyframes hp-garisIn {
            from {
                opacity: 0;
                transform: translateX(-18px);
            }

            to {
                opacity: 0.28;
                transform: translateX(0);
            }
        }

        /* Hero content */
        .hp-hero__content {
            background: #061153;
            position: relative;
            z-index: 4;
            width: 100%;
            padding: 24px 20px 32px;
        }

        @media (min-width: 768px) {
            .hp-hero__content {
                background: transparent;
                padding: 48px 48px 80px;
                max-width: 560px;
            }
        }

        @media (min-width: 1024px) {
            .hp-hero__content {
                padding: 60px 60px 90px;
                max-width: 620px;
            }
        }

        .hp-hero__eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 92, 0, 0.15);
            border: 1px solid rgba(255, 92, 0, 0.4);
            border-radius: 30px;
            padding: 5px 14px 5px 10px;
            font-family: var(--title-font);
            font-size: 11px;
            font-weight: 700;
            color: #ff5c00;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .hp-hero__eyebrow .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ff5c00;
            animation: blink 1.5s ease-in-out infinite;
            flex-shrink: 0;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }

        .hp-hero__content h1 {
            font-family: var(--title-font);
            font-size: clamp(20px, 5vw, 42px);
            font-weight: 800;
            color: #ffffff;
            line-height: 1.2;
            letter-spacing: -0.3px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .hp-hero__content h1 .hl {
            color: #f59e0b;
            display: inline-block;
        }

        .hp-hero__content p {
            font-family: var(--body-font);
            font-size: clamp(12.5px, 2.5vw, 14.5px);
            color: rgba(255, 255, 255, 0.82);
            line-height: 1.72;
            max-width: 460px;
        }

        /* Jump char animation */
        .jump-char {
            display: inline-block;
            animation: jumpWave 2.8s ease-in-out infinite;
            transform-origin: bottom;
        }

        @keyframes jumpWave {

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

            10% {
                transform: translateY(-12px) scaleY(1.1);
                color: #fbbf24;
            }

            15% {
                transform: translateY(2px) scaleY(0.95);
            }
        }

        /* Wave shape */
        .hp-hero__border {
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 40px;
            z-index: 5;
            pointer-events: none;
        }

        @media (min-width:768px) {
            .hp-hero__border {
                height: 65px;
            }
        }

        .hp-hero__border .parallax>use {
            animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
        }

        .hp-hero__border .parallax>use:nth-child(1) {
            animation-delay: -2s;
            animation-duration: 7s;
            fill: rgba(31, 101, 231, 0.65);
        }

        .hp-hero__border .parallax>use:nth-child(2) {
            animation-delay: -3s;
            animation-duration: 10s;
            fill: rgba(31, 101, 231, 0.65);
        }

        .hp-hero__border .parallax>use:nth-child(3) {
            animation-delay: -4s;
            animation-duration: 13s;
            fill: rgba(25, 91, 214, 0.65);
        }

        .hp-hero__border .parallax>use:nth-child(4) {
            animation-delay: -5s;
            animation-duration: 20s;
            fill: #0133b1;
        }

        @keyframes move-forever {
            0% {
                transform: translate3d(-90px, 0, 0);
            }

            100% {
                transform: translate3d(85px, 0, 0);
            }
        }

        /* ================================================================
           SECTION HELPERS
        ================================================================ */
        .hp-section-pad {
            padding: 56px 20px;
        }

        @media (min-width:480px) {
            .hp-section-pad {
                padding: 64px 28px;
            }
        }

        @media (min-width:768px) {
            .hp-section-pad {
                padding: 72px 48px;
            }
        }

        @media (min-width:1024px) {
            .hp-section-pad {
                padding: 80px 60px;
            }
        }

        .hp-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .hp-tag {
            display: inline-block;
            border: 1.5px solid #0040c9;
            color: #0040c9;
            font-family: var(--title-font);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.4px;
            padding: 4px 16px;
            border-radius: 30px;
            margin-bottom: 12px;
        }

        .hp-tag--light {
            border-color: rgba(255, 255, 255, 0.45);
            color: rgba(255, 255, 255, 0.85);
        }

        .hp-tag--orange {
            border-color: #ff5c00;
            color: #ff5c00;
        }

        .hp-title {
            font-family: var(--title-font);
            font-size: clamp(22px, 4.5vw, 34px);
            font-weight: 800;
            color: #061153;
            line-height: 1.22;
            margin-bottom: 10px;
        }

        .hp-title--light {
            color: #ffffff;
        }

        .hp-subtitle {
            font-family: var(--body-font);
            font-size: clamp(13px, 2vw, 15px);
            color: #64748b;
            line-height: 1.7;
            max-width: 520px;
        }

        .hp-subtitle--light {
            color: rgba(255, 255, 255, 0.70);
        }

        .hp-lihat-semua {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: var(--title-font);
            font-size: 13px;
            font-weight: 700;
            color: #0040c9;
            transition: gap 0.3s, color 0.3s;
            white-space: nowrap;
            padding: 8px 0;
        }

        @media (hover:hover) {
            .hp-lihat-semua:hover {
                color: #ff5c00;
                gap: 10px;
            }
        }

        @media (hover:hover) {
            .hp-lihat-semua:hover svg {
                transform: translateX(5px);
            }
        }

        .hp-lihat-semua svg {
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .hp-lihat-semua--light {
            color: rgba(255, 255, 255, 0.80);
        }

        @media (hover:hover) {
            .hp-lihat-semua--light:hover {
                color: #f59e0b;
            }
        }

        /* ================================================================
           COUNTER STRIP
        ================================================================ */
        .hp-counter {
            background: linear-gradient(135deg, #0040c9 0%, #061153 100%);
            position: relative;
            overflow: hidden;
        }

        .hp-counter__inner {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0;
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (min-width: 768px) {
            .hp-counter__inner {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .hp-counter__item {
            padding: 36px 24px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.10);
            border-bottom: 1px solid rgba(255, 255, 255, 0.10);
        }

        @media (min-width:768px) {
            .hp-counter__item {
                padding: 44px 32px;
                border-bottom: none;
            }
        }

        .hp-counter__item:nth-child(2n) {
            border-right: none;
        }

        @media (min-width:768px) {
            .hp-counter__item:nth-child(2n) {
                border-right: 1px solid rgba(255, 255, 255, 0.10);
            }

            .hp-counter__item:last-child {
                border-right: none;
            }
        }

        .hp-counter__num {
            font-family: var(--title-font);
            font-size: clamp(32px, 6vw, 52px);
            font-weight: 800;
            color: #f59e0b;
            line-height: 1;
            margin-bottom: 6px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 2px;
        }

        .hp-counter__num sup {
            font-size: 0.4em;
            margin-top: 8px;
            color: #ff5c00;
        }

        .hp-counter__label {
            font-family: var(--body-font);
            font-size: 13px;
            color: rgba(255, 255, 255, 0.72);
            font-weight: 500;
        }

        /* ================================================================
           TENTANG — PERBAIKAN GAMBAR LOGO
        ================================================================ */
        .hp-tentang {
            background: #ffffff;
        }

        .hp-tentang__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
        }

        @media (min-width: 900px) {
            .hp-tentang__grid {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }
        }

        @media (min-width: 1100px) {
            .hp-tentang__grid {
                grid-template-columns: 5fr 6fr;
            }
        }

        .hp-tentang__img-wrap {
            position: relative;
        }

        /* ── PERBAIKAN: Logo lebih kecil dengan padding proporsional & background kontras ── */
        .hp-tentang__img-box {
            width: 100%;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 64, 201, 0.18);
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 4/3;
            position: relative;
        }

        /* Pola dot dekoratif di belakang */
        .hp-tentang__img-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
            background-size: 24px 24px;
            pointer-events: none;
        }

        .hp-tentang__img {
            width: 90%;
            max-width: 280px;
            height: auto;
            object-fit: contain;
            display: block;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.35));
        }

        .hp-tentang__img-deco {
            position: absolute;
            top: -14px;
            left: -14px;
            width: 120px;
            height: 120px;
            border: 3px solid rgba(0, 64, 201, 0.15);
            border-radius: 20px;
            pointer-events: none;
        }

        .hp-tentang__title-row {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .hp-tentang__desc {
            font-family: var(--body-font);
            font-size: 14.5px;
            color: #475569;
            line-height: 1.75;
            margin-bottom: 24px;
        }

        .hp-vm {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 28px;
        }

        .hp-vm__item {
            background: #f8fafc;
            border-radius: 14px;
            padding: 18px 20px;
            border-left: 4px solid #0040c9;
        }

        .hp-vm__item--misi {
            border-left-color: #ff5c00;
        }

        .hp-vm__head {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .hp-vm__icon {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            background: rgba(0, 64, 201, 0.10);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 16px;
        }

        .hp-vm__item--misi .hp-vm__icon {
            background: rgba(255, 92, 0, 0.10);
        }

        .hp-vm__label {
            font-family: var(--title-font);
            font-size: 12px;
            font-weight: 700;
            color: #0040c9;
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .hp-vm__item--misi .hp-vm__label {
            color: #ff5c00;
        }

        .hp-vm__content {
            font-family: var(--body-font);
            font-size: 13.5px;
            color: #475569;
            line-height: 1.72;
        }

        .hp-vm__misi-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .hp-vm__misi-list li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            font-family: var(--body-font);
            font-size: 13.5px;
            color: #475569;
            line-height: 1.65;
        }

        .hp-vm__misi-list li::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #ff5c00;
            flex-shrink: 0;
            margin-top: 7px;
        }

        .hp-tentang__btn-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .hp-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: #0040c9;
            color: #fff;
            font-family: var(--title-font);
            font-size: 13px;
            font-weight: 700;
            border-radius: 8px;
            transition: background 0.3s, transform 0.3s;
        }

        @media (hover:hover) {
            .hp-btn-primary:hover {
                background: #061153;
                transform: translateY(-2px);
                color: #fff;
            }
        }

        .hp-btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 20px;
            background: transparent;
            color: #0040c9;
            font-family: var(--title-font);
            font-size: 13px;
            font-weight: 700;
            border-radius: 8px;
            border: 1.5px solid #0040c9;
            transition: all 0.3s;
        }

        @media (hover:hover) {
            .hp-btn-outline:hover {
                background: #0040c9;
                color: #fff;
            }
        }

        /* ================================================================
           PROGRAM — hanya 3 card
        ================================================================ */
        .hp-program {
            background: #f5f7fc;
            position: relative;
            overflow: hidden;
        }

        .hp-program::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(0, 64, 201, 0.06);
            pointer-events: none;
        }

        .hp-program__header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 36px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .hp-program__grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        @media (max-width:359px) {
            .hp-program__grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        @media (min-width:600px) {
            .hp-program__grid {
                gap: 20px;
            }
        }

        @media (min-width:1024px) {
            .hp-program__grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
        }

        .hp-program__card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(15, 23, 42, 0.07);
            box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            content-visibility: auto;
            contain-intrinsic-size: 280px;
        }

        @media (hover:hover) {
            .hp-program__card:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 52px rgba(0, 64, 201, 0.13);
            }
        }

        @media (hover:hover) {
            .hp-program__card:hover .hp-program__card-img {
                transform: scale(1.04);
            }
        }

        @media (hover:hover) {
            .hp-program__card:hover .hp-program__card-title {
                color: #0040c9;
            }
        }

        .hp-program__card-img-wrap {
            overflow: hidden;
            height: 175px;
            background: #ffffff;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
        }

        @media (max-width:599px) {
            .hp-program__card-img-wrap {
                height: 120px;
                padding: 8px;
            }

            .hp-program__card-body {
                padding: 12px 14px 16px;
                gap: 5px;
            }

            .hp-program__card-title {
                font-size: 13.5px;
            }

            .hp-program__card-theme {
                font-size: 10px;
            }

            .hp-program__card-footer {
                font-size: 11.5px;
                padding-top: 8px;
            }
        }

        .hp-program__card-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .hp-program__card-icon-wrap {
            height: 100%;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8fafc;
            font-size: 40px;
        }

        .hp-program__card-body {
            padding: 20px 22px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .hp-program__card-theme {
            font-size: 11.5px;
            font-weight: 700;
            color: #ff5c00;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .hp-program__card-title {
            font-family: var(--title-font);
            font-size: 16px;
            font-weight: 800;
            color: #061153;
            line-height: 1.3;
            transition: color 0.3s;
        }

        .hp-program__card-footer {
            margin-top: auto;
            padding-top: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--title-font);
            font-size: 13px;
            font-weight: 700;
            color: #0040c9;
        }

        .hp-program__card-footer svg {
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            opacity: 0.5;
        }

        @media (hover:hover) {
            .hp-program__card:hover .hp-program__card-footer svg {
                transform: translateX(4px);
                opacity: 1;
            }
        }

        /* ================================================================
           BERITA — 3 berita dengan gambar, grid selalu 3 kolom di desktop
        ================================================================ */
        .hp-berita {
            background: #ffffff;
        }

        .hp-berita__header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 36px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .hp-berita__grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
        }

        @media (max-width:359px) {
            .hp-berita__grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }

        @media (min-width:640px) {
            .hp-berita__grid {
                gap: 20px;
            }
        }

        @media (min-width:1024px) {
            .hp-berita__grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 22px;
            }
        }

        .hp-berita__card {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(15, 23, 42, 0.07);
            border: 1px solid rgba(15, 23, 42, 0.06);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            content-visibility: auto;
            contain-intrinsic-size: 320px;
        }

        @media (hover:hover) {
            .hp-berita__card:hover {
                transform: translateY(-6px);
                box-shadow: 0 16px 40px rgba(0, 64, 201, 0.12);
            }
        }

        @media (hover:hover) {
            .hp-berita__card:hover .hp-berita__img {
                transform: scale(1.04);
            }
        }

        @media (hover:hover) {
            .hp-berita__card:hover .hp-berita__card-title {
                color: #0040c9;
            }
        }

        .hp-berita__img-wrap {
            overflow: hidden;
            height: 195px;
            background: linear-gradient(135deg, #c8d0e0, #dde3ef);
            flex-shrink: 0;
            position: relative;
        }

        @media (max-width:639px) {
            .hp-berita__img-wrap,
            .hp-berita__img-ph {
                height: 120px;
            }

            .hp-berita__body {
                padding: 12px 14px 14px;
                gap: 5px;
            }

            .hp-berita__card-title {
                font-size: 13px;
            }

            .hp-berita__excerpt {
                display: none;
            }

            .hp-berita__more {
                font-size: 11.5px;
            }
        }

        .hp-berita__img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }

        /* Placeholder gambar berita dengan ikon */
        .hp-berita__img-ph {
            width: 100%;
            height: 195px;
            background: linear-gradient(135deg, #0040c9 0%, #061153 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: rgba(255, 255, 255, 0.4);
        }

        .hp-berita__kat-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(0, 64, 201, 0.85);
            backdrop-filter: blur(4px);
            color: #fff;
            font-size: 10px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
        }

        .hp-berita__body {
            padding: 18px 20px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .hp-berita__meta {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .hp-berita__tgl {
            font-size: 11px;
            color: #94a3b8;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .hp-berita__card-title {
            font-family: var(--title-font);
            font-size: 15px;
            font-weight: 700;
            color: #061153;
            line-height: 1.45;
            transition: color 0.3s;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hp-berita__excerpt {
            font-size: 13px;
            color: #64748b;
            line-height: 1.65;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }

        .hp-berita__more {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            font-size: 13px;
            font-weight: 700;
            color: #0040c9;
            margin-top: auto;
            padding: 6px 0;
            transition: gap 0.3s, color 0.3s;
        }

        @media (hover:hover) {
            .hp-berita__more:hover {
                color: #ff5c00;
                gap: 9px;
            }
        }

        /* ================================================================
           DOWNLOAD — 3 file terbaru
        ================================================================ */
        .hp-download {
            background: linear-gradient(135deg, #040e3a 0%, #061153 50%, #0d2280 100%);
            position: relative;
            overflow: hidden;
        }

        .hp-download::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(255, 92, 0, 0.07);
            pointer-events: none;
        }

        .hp-download::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -60px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(0, 64, 201, 0.10);
            pointer-events: none;
        }

        .hp-download__inner {
            position: relative;
            z-index: 1;
        }

        .hp-download__header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 36px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .hp-download__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
        }

        @media (min-width:600px) {
            .hp-download__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }

        @media (min-width:1024px) {
            .hp-download__grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
            }
        }

        .hp-download__card {
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            padding: 22px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), background 0.38s, border-color 0.38s;
            text-decoration: none;
        }

        @media (hover:hover) {
            .hp-download__card:hover {
                transform: translateY(-4px);
                background: rgba(255, 255, 255, 0.12);
                border-color: rgba(255, 255, 255, 0.28);
            }
        }

        @media (hover:hover) {
            .hp-download__card:hover .hp-download__icon {
                transform: scale(1.08);
            }
        }

        .hp-download__icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            flex-shrink: 0;
            background: rgba(0, 64, 201, 0.30);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .hp-download__icon--orange {
            background: rgba(255, 92, 0, 0.25);
        }

        .hp-download__info {
            flex: 1;
            min-width: 0;
        }

        .hp-download__label {
            font-size: 10.5px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.55);
            text-transform: uppercase;
            letter-spacing: 0.12em;
            margin-bottom: 4px;
        }

        .hp-download__name {
            font-family: var(--title-font);
            font-size: 14px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.92);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hp-download__meta {
            font-size: 11.5px;
            color: rgba(255, 255, 255, 0.45);
            margin-top: 4px;
        }

        .hp-download__arrow {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.10);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.70);
            transition: background 0.3s, transform 0.3s;
        }

        @media (hover:hover) {
            .hp-download__card:hover .hp-download__arrow {
                background: #ff5c00;
                transform: rotate(-45deg);
                color: #fff;
            }
        }

        .hp-download__cta {
            display: flex;
            justify-content: center;
            margin-top: 36px;
        }

        .hp-btn-white {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            background: #fff;
            color: #061153;
            font-family: var(--title-font);
            font-size: 13.5px;
            font-weight: 700;
            border-radius: 8px;
            transition: background 0.3s, transform 0.3s;
        }

        @media (hover:hover) {
            .hp-btn-white:hover {
                background: #f59e0b;
                color: #fff;
                transform: translateY(-2px);
            }
        }

        /* ================================================================
           CTA BAND
        ================================================================ */
        .hp-cta-band {
            background: linear-gradient(90deg, #ff5c00 0%, #e04e00 100%);
            padding: 52px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hp-cta-band__inner {
            position: relative;
            z-index: 1;
            max-width: 640px;
            margin: 0 auto;
        }

        .hp-cta-band h2 {
            font-family: var(--title-font);
            font-size: clamp(22px, 4.5vw, 34px);
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .hp-cta-band p {
            font-size: 14.5px;
            color: rgba(255, 255, 255, 0.82);
            margin-bottom: 28px;
            line-height: 1.65;
        }

        .hp-cta-band__btns {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hp-cta-band__btn-dark {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 30px;
            background: #061153;
            color: #fff;
            font-family: var(--title-font);
            font-size: 14px;
            font-weight: 700;
            border-radius: 8px;
            transition: background 0.3s, transform 0.3s;
        }

        @media (hover:hover) {
            .hp-cta-band__btn-dark:hover {
                background: #0040c9;
                transform: translateY(-2px);
                color: #fff;
            }
        }

        .hp-cta-band__btn-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            font-family: var(--title-font);
            font-size: 14px;
            font-weight: 700;
            border-radius: 8px;
            border: 1.5px solid rgba(255, 255, 255, 0.40);
            transition: all 0.3s;
        }

        @media (hover:hover) {
            .hp-cta-band__btn-light:hover {
                background: rgba(255, 255, 255, 0.25);
                border-color: #fff;
            }
        }

        /* ================================================================
           SCROLL REVEAL
        ================================================================ */
        .hp-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);
        }

        .hp-reveal.hp-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hp-reveal-d1 {
            transition-delay: 0.08s;
        }

        .hp-reveal-d2 {
            transition-delay: 0.18s;
        }

        .hp-reveal-d3 {
            transition-delay: 0.28s;
        }

        .hp-fade-up {
            opacity: 0;
            animation: hp-fadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        .hp-fu-d1 {
            animation-delay: 0.10s;
        }

        .hp-fu-d2 {
            animation-delay: 0.28s;
        }

        .hp-fu-d3 {
            animation-delay: 0.46s;
        }

        .hp-fu-d4 {
            animation-delay: 0.60s;
        }

        @keyframes hp-fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        @media (max-width:479px) {

            .hp-reveal,
            .hp-reveal.hp-visible {
                opacity: 1;
                transform: none;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
