:root {
    --navy: #0c1a2e;
    --navy-mid: #132238;
    --navy-light: #1a3a5c;
    --gold: #c9a44a;
    --gold-lt: #e8c97a;
    --gold-pale: #fdf5e0;
    --gold-dim: rgba(201, 164, 74, .12);
    --cream: #f8f6f1;
    --muted: #5a6a82;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-swiper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-swiper img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .75) 0%,
            rgba(0, 0, 0, .45) 40%,
            rgba(0, 0, 0, .15) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero .hero-content h1 {
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: .95;
}

.header {
    position: fixed;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    transition: .4s;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header .navmenu a,
.header .logo h1,
.header .sitename {
    color: rgb(0, 0, 0);
}

.header.scrolled .navmenu a,
.header.scrolled .sitename {
    color: rgb(0, 0, 0);
}

.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus {
    color: #000000;
}

/* ── HERO BANNER ── */
.kep-hero {
    background: var(--navy);
    position: relative;
    margin-top: 6em;
    padding: 5rem 0 4rem;
    overflow: hidden;
}

.kep-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 90% at 80% 50%, rgba(201, 164, 74, .08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at -10% 50%, rgba(26, 58, 92, .6) 0%, transparent 60%);
}

.kep-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.kep-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .65rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: .85rem;
}

.kep-hero .eyebrow::before,
.kep-hero .eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(201, 164, 74, .4);
    min-width: 20px;
}

.kep-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: .02em;
    margin-bottom: .75rem;
}

.kep-hero p.lead {
    color: rgba(255, 255, 255, .5);
    font-size: .9rem;
    font-weight: 300;
    letter-spacing: .03em;
    max-width: 520px;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.hero-breadcrumb a:hover {
    color: var(--gold-lt);
}

.hero-breadcrumb span {
    color: rgba(255, 255, 255, .25);
}

/* ── STAT CARDS (data kepesertaan) ── */
.stat-strip {
    background: var(--navy-mid);
    border-top: 1px solid rgba(201, 164, 74, .15);
    border-bottom: 1px solid rgba(201, 164, 74, .15);
    padding: 2.5rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(201, 164, 74, .15);
    border-radius: 10px;
    padding: 1.5rem 1.25rem 1.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    opacity: 0;
    transition: opacity .3s;
}

.stat-card:hover {
    border-color: rgba(201, 164, 74, .4);
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .25);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 164, 74, .25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .85rem;
}

.stat-icon i {
    color: var(--gold-lt);
    font-size: 1.2rem;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold-lt);
    line-height: 1;
    margin-bottom: .3rem;
    letter-spacing: .02em;
}

.stat-label {
    font-size: .68rem;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 500;
}

.stat-period {
    font-size: .6rem;
    color: rgba(201, 164, 74, .6);
    letter-spacing: .06em;
    margin-top: .25rem;
}

.stat-breakdown {
    margin-top: .85rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
    text-align: left;
}

.stat-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .25rem 0;
    font-size: .67rem;
    border-bottom: 1px dashed rgba(255, 255, 255, .05);
}

.stat-breakdown-item:last-child {
    border-bottom: none;
}

.stat-breakdown-item span:first-child {
    color: rgba(255, 255, 255, .5);
}

.stat-breakdown-item span:last-child {
    color: var(--gold-lt);
    font-weight: 600;
}

/* total card */
.stat-card.total {
    background: linear-gradient(135deg, var(--gold) 0%, #a07c2a 100%);
    border-color: var(--gold);
}

.stat-card.total .stat-num {
    color: var(--navy);
}

.stat-card.total .stat-label {
    color: rgba(12, 26, 46, .65);
}

.stat-card.total .stat-icon {
    background: rgba(12, 26, 46, .15);
    border-color: rgba(12, 26, 46, .2);
}

.stat-card.total .stat-icon i {
    color: var(--navy);
}

.stat-card.total .stat-period {
    color: rgba(12, 26, 46, .5);
}

/* ── MAIN CONTENT AREA ── */
.kep-body {
    background: var(--cream);
    padding: 4rem 0 5rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 164, 74, .3);
    border-radius: 20px;
    padding: .3rem .85rem;
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: .5rem;
}

.section-sub {
    font-size: .82rem;
    color: var(--muted);
    letter-spacing: .02em;
    line-height: 1.65;
}

.gold-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1rem 0 2rem;
    border-radius: 2px;
}

/* ── KLAIM ACCORDION ── */
.klaim-accordion {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.klaim-item {
    background: #fff;
    border: 1px solid #e8e2d5;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}

.klaim-item:hover {
    border-color: rgba(201, 164, 74, .4);
}

.klaim-item.active {
    border-color: var(--gold);
    box-shadow: 0 4px 24px rgba(201, 164, 74, .12);
}

.klaim-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    cursor: pointer;
    user-select: none;
    position: relative;
    background: #fff;
    transition: background .2s;
}

.klaim-item.active .klaim-header {
    background: var(--navy);
}

.klaim-num {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--gold-dim);
    border: 1px solid rgba(201, 164, 74, .3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: .04em;
    transition: background .2s, color .2s;
}

.klaim-item.active .klaim-num {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.klaim-title-wrap {
    flex: 1;
    min-width: 0;
}

.klaim-title {
    font-size: .85rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
    transition: color .2s;
}

.klaim-item.active .klaim-title {
    color: #fff;
}

.klaim-type-badge {
    display: inline-block;
    margin-top: .2rem;
    font-size: .58rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    transition: color .2s;
}

.klaim-item.active .klaim-type-badge {
    color: rgba(255, 255, 255, .45);
}

.klaim-chevron {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 164, 74, .08);
    border-radius: 6px;
    color: var(--gold);
    font-size: .8rem;
    transition: transform .3s var(--ease), background .2s, color .2s;
}

.klaim-item.active .klaim-chevron {
    transform: rotate(180deg);
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.klaim-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .3s;
    padding: 0 1.4rem;
}

.klaim-item.active .klaim-body {
    max-height: 800px;
    padding: 1.5rem 1.4rem;
}

.klaim-desc {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: 1rem;
    line-height: 1.6;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #e8e2d5;
}

/* numbered list custom */
.klaim-list {
    counter-reset: klaim-counter;
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.klaim-list li {
    counter-increment: klaim-counter;
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    padding: .45rem 0;
    border-bottom: 1px solid #f0ece4;
    font-size: .8rem;
    color: #3a4a5e;
    line-height: 1.55;
}

.klaim-list li:last-child {
    border-bottom: none;
}

.klaim-list li::before {
    content: counter(klaim-counter);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--navy);
    color: var(--gold-lt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    font-weight: 700;
    margin-top: 1px;
}

/* download button */
.btn-klaim-download {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1.25rem;
    background: var(--navy);
    color: var(--gold-lt);
    border: 1px solid rgba(201, 164, 74, .3);
    border-radius: 6px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s, box-shadow .25s, transform .2s;
    position: relative;
    overflow: hidden;
}

.btn-klaim-download::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .08) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .45s;
}

.btn-klaim-download:hover {
    background: #1a3a5c;
    color: var(--gold-lt);
    box-shadow: 0 4px 16px rgba(201, 164, 74, .2);
    transform: translateY(-1px);
    text-decoration: none;
}

.btn-klaim-download:hover::before {
    transform: translateX(100%);
}

.btn-klaim-download i {
    font-size: .9rem;
}

/* ── SIDEBAR (sticky info) ── */
.kep-sidebar {
    position: sticky;
    top: 100px;
}

.info-card {
    background: #fff;
    border: 1px solid #e8e2d5;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 12px rgba(12, 26, 46, .06);
}

.info-card-header {
    background: var(--navy);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.info-card-header i {
    color: var(--gold);
    font-size: 1rem;
}

.info-card-header span {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
}

.info-card-body {
    padding: 1.1rem 1.25rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    padding: .55rem 0;
    font-size: .78rem;
    color: var(--muted);
    border-bottom: 1px solid #f0ece4;
    line-height: 1.5;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li i {
    color: var(--gold);
    font-size: .9rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .65rem 0;
    border-bottom: 1px solid #f0ece4;
    font-size: .78rem;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--gold-dim);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: var(--gold);
    font-size: .85rem;
}

.contact-item a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-sub {
    font-size: .67rem;
    color: var(--muted);
    margin-top: 1px;
}

/* ── NOTE CALLOUT ── */
.note-callout {
    background: var(--gold-pale);
    border: 1px solid rgba(201, 164, 74, .35);
    border-left: 4px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.25rem;
    font-size: .78rem;
    color: #5a4a1a;
    line-height: 1.6;
}

.note-callout i {
    color: var(--gold);
    margin-right: .4rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate-up {
    animation: fadeUp .6s var(--ease) both;
}

.d1 {
    animation-delay: .05s;
}

.d2 {
    animation-delay: .12s;
}

.d3 {
    animation-delay: .19s;
}

.d4 {
    animation-delay: .26s;
}

.d5 {
    animation-delay: .33s;
}

.d6 {
    animation-delay: .40s;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .kep-sidebar {
        position: static;
        margin-top: 2.5rem;
    }
}

@media (max-width: 576px) {
    .kep-hero {
        padding: 3.5rem 0 3rem;
    }

    .stat-num {
        font-size: 2rem;
    }
}
