/* =============================================================
   LANDING PAGE — TEMA 2 "NAVY" (Biru Navy / Midnight)
   Primary: #1b3461  |  Accent: #f59e0b
   ============================================================= */

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
    --p-950:  #020c1b;
    --p-900:  #0a1628;
    --p-800:  #112240;
    --p-700:  #1b3461;
    --p-600:  #244d8c;
    --p-500:  #2e68be;
    --p-400:  #4d8fd4;
    --p-300:  #89bceb;
    --p-100:  #d6e8f8;
    --p-50:   #eef5fc;

    --bg:      #f0f5fb;
    --surface: #ffffff;
    --border:  #bdd4ec;

    --txt:     #020c1b;
    --txt-2:   #1b3461;
    --txt-3:   #4d6e92;

    --accent:  #f59e0b;
    --accent2: #fbbf24;

    /* gradients */
    --g-hero:    linear-gradient(160deg, var(--p-950) 0%, var(--p-800) 100%);
    --g-primary: linear-gradient(135deg, var(--p-800), var(--p-600));
    --g-brand:   linear-gradient(135deg, var(--p-900), var(--p-600));
    --g-sky:     linear-gradient(135deg, var(--p-600), var(--p-400));
    --g-dark:    linear-gradient(160deg, var(--p-950) 0%, var(--p-900) 100%);
    --g-footer:  linear-gradient(160deg, var(--p-900) 0%, var(--p-700) 100%);
    --g-accent:  linear-gradient(135deg, var(--accent), var(--accent2));
    --g-txt:     linear-gradient(135deg, var(--p-700), var(--p-400));
}

/* ── 2. BASE ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Times New Roman', Times, serif; background: var(--bg); color: var(--txt); line-height: 1.65; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; }

::-webkit-scrollbar        { width: 5px; }
::-webkit-scrollbar-track  { background: var(--bg); }
::-webkit-scrollbar-thumb  { background: var(--p-500); border-radius: 4px; }

/* ── 3. LAYOUT ──────────────────────────────────────────────── */
.lp-wrap    { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.lp-wrap-sm { max-width: 960px;  margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }
@media (max-width: 640px) { section { padding: 64px 0; } .lp-wrap, .lp-wrap-sm { padding: 0 18px; } }

/* Gradient clip text */
.grad-text {
    background: var(--g-txt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section header */
.sec-hd      { text-align: center; margin-bottom: 60px; }
.sec-pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 18px; border-radius: 50px;
    font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
    margin-bottom: 16px;
    background: rgba(27,52,97,.1); color: var(--p-700); border: 1px solid rgba(27,52,97,.18);
}
.sec-pill.light  { background: rgba(27,52,97,.08); color: var(--p-700); border: 1px solid rgba(27,52,97,.14); }
.sec-pill.dark   { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.15); }
.sec-pill.accent { background: rgba(245,158,11,.12); color: #b45309; border: 1px solid rgba(245,158,11,.2); }

.sec-title { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.sec-title.white, .sec-sub.white { color: #fff; }
.sec-rule  { width: 52px; height: 4px; border-radius: 2px; background: var(--g-sky); margin: 0 auto 18px; }
.sec-rule.lt { background: linear-gradient(90deg, rgba(255,255,255,.6), var(--p-400)); }
.sec-sub   { font-size: 1.05rem; color: var(--txt-2); max-width: 560px; margin: 0 auto; }
.sec-sub.white { color: rgba(255,255,255,.72); }

/* ── 4. TOP BAR ─────────────────────────────────────────────── */
#top-bar {
    background: var(--g-primary);
    font-size: .78rem; line-height: 1;
    position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
    transition: transform .3s;
}
#top-bar.hidden { transform: translateY(-100%); }
.top-bar-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 28px;
    display: flex; align-items: center; justify-content: space-between;
    height: 36px;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-link { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,.82); transition: color .2s; }
.top-bar-link:hover { color: #fff; }
.top-bar-link i { font-size: .9rem; }
.top-bar-right { display: flex; align-items: center; gap: 4px; }
.top-bar-label { color: rgba(255,255,255,.55); margin-right: 6px; font-size: .72rem; letter-spacing: .05em; }
.top-bar-social {
    width: 26px; height: 26px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7); font-size: .9rem;
    transition: background .2s, color .2s;
}
.top-bar-social:hover { background: rgba(255,255,255,.15); color: #fff; }
@media (max-width: 640px) {
    .top-bar-left .top-bar-email { display: none; }
    .top-bar-label { display: none; }
}

/* ── 5. TOPBAR/NAVBAR ───────────────────────────────────────── */
#topbar {
    position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(27,52,97,.08);
    border-bottom: 1px solid rgba(27,52,97,.08);
    transition: background .3s, box-shadow .3s, top .3s;
}
#topbar.scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: 0 4px 28px rgba(27,52,97,.12);
    border-bottom-color: rgba(27,52,97,.1);
}
#topbar.no-topbar { top: 0; }
.tb-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 28px; max-width: 1240px; margin: 0 auto;
}
.tb-brand { display: flex; align-items: center; gap: 10px; }
.tb-brand img { height: 36px; }
.tb-brand-name { font-size: 1.1rem; font-weight: 800; color: #fff; letter-spacing: -.2px; transition: color .3s; }
.tb-brand-name em { font-style: normal; color: var(--p-300); }
#topbar.scrolled .tb-brand-name { color: var(--p-900); }
#topbar.scrolled .tb-brand-name em { color: var(--p-600); }

.tb-nav { display: none; list-style: none; margin: 0; padding: 0; gap: 2px; }
.tb-nav.open { display: flex; }
@media (min-width: 992px) {
    .tb-nav { display: flex; align-items: center; }
    .tb-nav.open { display: flex; }
}
.tb-nav > li { position: relative; }
.tb-nav > li > a {
    color: var(--txt-2); padding: 8px 14px; border-radius: 8px;
    font-size: .875rem; font-weight: 500; display: block;
    transition: background .18s, color .18s;
}
.tb-nav > li > a:hover { background: var(--g-primary); color: #fff !important; }

.has-drop > a::after { content: " ▾"; font-size: .62rem; opacity: .5; }
.drop-menu { display: none; position: absolute; top: 100%; left: 0; padding-top: 10px; min-width: 210px; }
.drop-menu::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 10px; }
.drop-menu-box { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 6px; box-shadow: 0 16px 48px rgba(27,52,97,.16); }
.has-drop.open > .drop-menu { display: block; }
.drop-menu a { display: block; padding: 9px 13px; border-radius: 8px; color: var(--txt-2); font-size: .875rem; font-weight: 500; transition: background .18s, color .18s; }
.drop-menu a:hover { background: var(--g-primary); color: #fff; }

/* ── Nested sub-dropdown (inline accordion) ── */
.drop-menu-box ul { list-style: none; margin: 0; padding: 0; }
.drop-menu-box li { position: static; }
.has-drop-sub > a::after {
    content: " ▾"; font-size: .62rem; opacity: .5;
    display: inline-block; transition: transform .2s;
    float: right; margin-top: 2px;
}
.has-drop-sub.open > a::after { transform: rotate(-180deg); }
.drop-menu-sub {
    display: none;
    position: static !important;
    padding: 0 0 0 12px !important;
    margin: 2px 0 2px 0;
    border-left: 2px solid var(--border);
    top: auto !important; left: auto !important;
}
.drop-menu-sub::before { display: none; }
.drop-menu-sub .drop-menu-box { border: none; box-shadow: none; padding: 2px 0; border-radius: 0; background: transparent; }
.has-drop-sub.open > .drop-menu-sub { display: block; }

.tb-back { display: flex; align-items: center; gap: 7px; color: var(--p-700); padding: 8px 16px; border-radius: 8px; border: 1.5px solid var(--p-700); font-size: .875rem; font-weight: 600; transition: all .2s; }
.tb-back:hover { background: var(--p-700); color: #fff; }

.tb-cta {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 9px 20px; border-radius: 10px;
    background: var(--g-accent); color: var(--p-900);
    font-size: .85rem; font-weight: 700;
    box-shadow: 0 4px 16px rgba(245,158,11,.3);
    transition: transform .2s, box-shadow .2s;
}
.tb-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(245,158,11,.45); color: var(--p-900); }

.tb-toggle {
    display: block !important;
    background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.35); border-radius: 7px;
    color: #fff; font-size: 1.4rem;
    cursor: pointer; padding: 6px 9px; line-height: 1;
    flex-shrink: 0; transition: background .2s;
}
.tb-toggle:hover { background: rgba(255,255,255,.35); }
#topbar.scrolled .tb-toggle {
    background: var(--p-700);
    border-color: var(--p-700);
    color: #fff;
}
@media (min-width: 992px) {
    .tb-toggle { display: none !important; }
    .tb-cta    { display: inline-flex !important; }
}
@media (max-width: 991.98px) {
    .tb-cta { display: none !important; }
}
@media (max-width: 991.98px) {
    .tb-nav.open {
        display: flex; position: absolute; top: 100%; left: 0; right: 0;
        background: #fff; flex-direction: column; align-items: stretch;
        padding: 10px; gap: 2px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 12px 32px rgba(27,52,97,.14);
        z-index: 999;
    }
    .tb-nav.open > li > a { color: var(--p-700) !important; padding: 10px 14px; font-weight: 600; }
    .tb-nav.open > li > a:hover { background: var(--p-700) !important; color: #fff !important; }
    .has-drop .drop-menu { position: static !important; padding: 0 !important; min-width: unset; box-shadow: none; top: auto !important; left: auto !important; }
    .has-drop .drop-menu-box { border-radius: 8px; margin: 4px 0 4px 12px; box-shadow: none; background: var(--p-50); border-color: var(--border); }
    .tb-nav.open .drop-menu a { color: var(--p-700) !important; }
    .tb-nav.open .drop-menu a:hover { background: var(--p-700) !important; color: #fff !important; }
    .has-drop.open > .drop-menu { display: block; }
}

/* ── 6. HERO — FULLSCREEN CINEMATIC SLIDER ──────────────────── */
#hero {
    position: relative;
    height: 70vh; min-height: 540px;
    overflow: hidden;
    display: flex; align-items: center;
    margin-top: 100px;
}

/* Slide stack — fullscreen background images */
.fs-slider {
    position: absolute; inset: 0; z-index: 0;
    transform: translateZ(0);
    isolation: isolate;
}
.fs-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0;
    transition: opacity .9s ease;
}
.fs-slide.active { opacity: 1; }

/* Static slide — tidak ada transisi, langsung tampil permanen */
.fs-slide-static {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 1;
}
.fs-slide-static::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,55,128,.95) 0%,
        rgba(10,55,128,.75) 40%,
        rgba(10,55,128,.50) 75%,
        rgba(10,55,128,.30) 100%
    );
}

/* Multi-layer overlay for readability */
.fs-slide::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,55,128,.95) 0%,
        rgba(10,55,128,.75) 40%,
        rgba(10,55,128,.50) 75%,
        rgba(10,55,128,.30) 100%
    );
}

/* Fallback placeholder */
.fs-slide-ph {
    position: absolute; inset: 0;
    background: var(--g-hero);
    display: flex; align-items: center; justify-content: center;
}
.fs-slide-ph i { font-size: 6rem; color: rgba(255,255,255,.08); }

/* Hero content — centered above overlay */
.fs-content {
    position: relative; z-index: 2;
    width: 100%;
    padding: 0;
}
.fs-content-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 28px;
    text-align: center;
}

/* Animated slide text */
.fs-text {
    display: none;
    animation: fsComeUp .7s ease both;
}
.fs-text.active { display: block; }

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

.fs-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--g-accent); color: var(--p-950);
    padding: 5px 16px; border-radius: 50px;
    font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 20px;
}
.fs-title {
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    font-weight: 900; line-height: 1.1; color: #fff;
    letter-spacing: -.5px; margin-bottom: 18px;
    text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.fs-desc {
    font-size: 1.4rem; color: rgba(255,255,255,.78);
    line-height: 1.75; margin-bottom: 36px; max-width: 860px; margin-left: auto; margin-right: auto;
}
.fs-btns { display: flex; flex-wrap: wrap; gap: 12px; }

.btn-fs-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 12px;
    background: var(--g-sky); color: var(--p-950);
    font-weight: 700; font-size: .95rem;
    box-shadow: 0 6px 24px rgba(46,104,190,.4);
    transition: transform .25s, box-shadow .25s;
}
.btn-fs-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(46,104,190,.55); color: var(--p-950); }

.btn-fs-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 12px;
    border: 2px solid rgba(255,255,255,.5); color: #fff;
    font-weight: 700; font-size: .95rem;
    backdrop-filter: blur(4px);
    transition: all .25s;
}
.btn-fs-outline:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.8); color: #fff; }

/* Bottom control bar */
.fs-bar {
    position: absolute; bottom: 36px; left: 0; right: 0;
    z-index: 3;
    max-width: 1240px; margin: 0 auto; padding: 0 28px;
    display: flex; align-items: center; gap: 20px;
}
.fs-dots { display: flex; gap: 8px; }
.fs-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,.35); border: none; cursor: pointer; padding: 0;
    transition: width .3s, background .3s, border-radius .3s;
}
.fs-dot.active { width: 28px; border-radius: 4px; background: var(--p-400); }

.fs-progress-wrap { flex: 1; height: 3px; background: rgba(255,255,255,.18); border-radius: 2px; overflow: hidden; }
.fs-progress-fill { height: 100%; background: var(--g-sky); border-radius: 2px; transition: width linear; }

.fs-arrows { display: flex; gap: 8px; }
.fs-arrow {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
    color: #fff; font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
    transition: background .2s, transform .2s;
}
.fs-arrow:hover { background: var(--g-primary); transform: scale(1.07); }

/* Wave divider under hero */
.hero-wave {
    position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2;
    line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: 60px; }

@media (max-width: 640px) {
    .fs-content { padding-bottom: 80px; }
    .fs-title   { font-size: 2.2rem; }
    .fs-bar     { bottom: 24px; }
}

/* ── 7. LAYANAN CARDS ───────────────────────────────────────── */
#layanan { background: var(--surface); }

.lyr-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 20px 28px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(27,52,97,.06);
    transition: transform .3s, box-shadow .3s;
}
.lyr-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--g-sky);
}
.lyr-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(27,52,97,.13); }

.lyr-icon {
    width: 64px; height: 64px; border-radius: 18px;
    background: linear-gradient(135deg, var(--p-50), var(--p-100));
    border: 1.5px solid var(--p-100);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--p-700);
    margin: 0 auto 18px;
    transition: background .3s, color .3s;
}
.lyr-card:hover .lyr-icon {
    background: var(--g-primary); color: #fff; border-color: transparent;
}
.lyr-nama { font-size: .95rem; font-weight: 700; color: var(--txt); line-height: 1.4; }
.lyr-desc { font-size: .8rem; color: var(--txt-3); margin-top: 8px; line-height: 1.6; }

@media (max-width: 480px) { .lyr-card { padding: 24px 14px 20px; } }

/* ── 8. TENTANG ─────────────────────────────────────────────── */
#tentang { background: var(--surface); }

.about-wrap {
    background: linear-gradient(135deg, var(--p-50) 0%, var(--surface) 100%);
    border-radius: 24px; padding: 52px;
    border: 1px solid var(--border);
}
.about-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--p-100); color: var(--p-700);
    padding: 5px 14px; border-radius: 50px;
    font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    margin-bottom: 18px;
}
.about-wrap h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--p-900); margin-bottom: 16px; line-height: 1.3; }
.about-wrap .lead { font-size: 1.05rem; color: var(--txt-2); line-height: 1.9; }
.about-addr { margin-top: 18px; display: flex; align-items: flex-start; gap: 8px; color: var(--txt-3); font-size: .875rem; }
.about-addr i { color: var(--p-600); margin-top: 2px; flex-shrink: 0; }
@media (max-width: 640px) { .about-wrap { padding: 30px 22px; } }

/* ── 8. ARTIKEL CARDS ───────────────────────────────────────── */
#artikel { background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%); }

.art-card {
    background: var(--surface); border-radius: 18px; overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(27,52,97,.06);
    height: 100%; display: flex; flex-direction: column;
    transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s;
}
.art-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(27,52,97,.14); }

.art-thumb-wrap { position: relative; overflow: hidden; height: 210px; }
.art-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.art-card:hover .art-thumb-wrap img { transform: scale(1.07); }
.art-thumb-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(17,34,64,.65) 0%, transparent 55%);
    opacity: 0; transition: opacity .3s;
}
.art-card:hover .art-thumb-overlay { opacity: 1; }
.art-thumb-ph {
    height: 210px;
    background: linear-gradient(135deg, var(--p-800), var(--p-500));
    display: flex; align-items: center; justify-content: center;
}
.art-thumb-ph i { font-size: 3.5rem; color: rgba(255,255,255,.22); }

.art-cat-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--p-700); color: #fff;
    padding: 4px 12px; border-radius: 8px; font-size: .72rem; font-weight: 700;
}

.art-body   { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.art-date   { font-size: .78rem; color: var(--txt-3); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.art-title  { font-size: 1rem; font-weight: 700; color: var(--txt); margin-bottom: 10px; line-height: 1.5; }
.art-excerpt { font-size: .875rem; color: var(--txt-2); line-height: 1.65; flex: 1; }
.art-link   { display: inline-flex; align-items: center; gap: 5px; margin-top: 18px; color: var(--p-700); font-weight: 700; font-size: .85rem; transition: gap .2s, color .2s; }
.art-link i { transition: transform .2s; }
.art-card:hover .art-link { color: var(--p-600); }
.art-card:hover .art-link i { transform: translateX(3px); }

/* ── 8b. ARTIKEL FEED LIST ──────────────────────────────────── */
.art-feed { display: flex; flex-direction: column; max-width: 760px; margin: 0 auto; }

.art-feed-item {
    display: block; text-decoration: none;
    padding-bottom: 36px; margin-bottom: 36px;
    border-bottom: 1px solid var(--border);
}
.art-feed-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.art-feed-img {
    width: 100%; border-radius: 14px; overflow: hidden;
    height: 380px; margin-bottom: 18px;
}
.art-feed-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.art-feed-item:hover .art-feed-img img { transform: scale(1.04); }

.art-feed-meta {
    font-size: .78rem; color: var(--txt-3); font-weight: 600;
    text-transform: uppercase; letter-spacing: .04em;
    margin-bottom: 10px;
}
.art-feed-hl { color: #b91c1c; }

.art-feed-title {
    font-size: 1.25rem; font-weight: 800; color: var(--txt); line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    transition: color .2s;
}
.art-feed-item:hover .art-feed-title { color: var(--p-600); }

.art-feed-excerpt {
    font-size: .9rem; color: var(--txt-3); line-height: 1.7; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

@media (max-width: 640px) {
    .art-feed-img { height: 220px; }
    .art-feed-title { font-size: 1.05rem; }
}

/* ── 9. PAGE CARDS ──────────────────────────────────────────── */
#halaman { background: var(--bg); }

.page-card {
    background: var(--surface); border-radius: 18px; padding: 32px 28px;
    box-shadow: 0 4px 16px rgba(27,52,97,.06); border: 1px solid var(--border);
    height: 100%; position: relative; overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
.page-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--g-sky); }
.page-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(27,52,97,.13); }

.pg-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--g-sky); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; margin-bottom: 18px; }
.page-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--p-900); margin-bottom: 10px; }
.page-card .excerpt { font-size: .875rem; color: var(--txt-2); line-height: 1.72; }
.pg-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 18px; color: var(--p-700); font-weight: 700; font-size: .85rem; transition: gap .2s; }
.pg-link:hover { gap: 8px; color: var(--p-600); }

/* ── 10. VIDEO ──────────────────────────────────────────────── */
#video { background: var(--g-dark); position: relative; }
#video::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 25% 60%, rgba(27,52,97,.35) 0%, transparent 55%);
}
#video .lp-wrap { position: relative; }

.vid-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 18px; overflow: hidden;
    transition: transform .3s, border-color .3s;
}
.vid-card:hover { transform: translateY(-5px); border-color: rgba(77,143,212,.35); }

.vthumb { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: rgba(0,0,0,.3); }
.vthumb iframe, .vthumb img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; border: none; }

.vplay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(2,12,27,.5); cursor: pointer; transition: background .25s;
}
.vplay:hover { background: rgba(2,12,27,.3); }
.play-ring {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, var(--p-600), var(--p-400));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--p-950);
    box-shadow: 0 6px 24px rgba(46,104,190,.4);
    transition: transform .25s, box-shadow .25s;
}
.vplay:hover .play-ring { transform: scale(1.1); box-shadow: 0 10px 32px rgba(46,104,190,.55); }

.vinfo       { padding: 18px; }
.vinfo-title { color: #fff; font-size: .92rem; font-weight: 600; margin-bottom: 4px; }
.vinfo-meta  { color: rgba(255,255,255,.38); font-size: .78rem; }

/* ── 11. GALERI ─────────────────────────────────────────────── */
#galeri { background: var(--surface); }

.foto-item {
    display: block; width: 100%; aspect-ratio: 4/3;
    border-radius: 14px; overflow: hidden; position: relative; cursor: pointer;
    box-shadow: 0 4px 14px rgba(27,52,97,.08);
    transition: box-shadow .3s;
}
.foto-item:hover { box-shadow: 0 12px 36px rgba(27,52,97,.18); }
.foto-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.22,.61,.36,1); }
.foto-item:hover img { transform: scale(1.07); }
.foto-cap {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(17,34,64,.82) 0%, transparent 55%);
    opacity: 0; transition: opacity .3s;
    display: flex; align-items: flex-end; padding: 16px;
}
.foto-item:hover .foto-cap { opacity: 1; }
.foto-cap span { color: #fff; font-size: .85rem; font-weight: 600; }

/* ── 12. KONTAK ─────────────────────────────────────────────── */
#kontak {
    background: linear-gradient(135deg, var(--p-900) 0%, var(--p-800) 55%, var(--p-600) 100%);
    position: relative; overflow: hidden;
}
#kontak::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 75% 20%, rgba(255,255,255,.09) 0%, transparent 50%);
}
#kontak .lp-wrap { position: relative; }

.contact-card {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px; padding: 30px; text-align: center;
    backdrop-filter: blur(4px);
    transition: background .25s, transform .25s;
    height: 100%;
}
.contact-card:hover { background: rgba(255,255,255,.15); transform: translateY(-4px); }

.contact-icon {
    width: 58px; height: 58px; border-radius: 16px;
    background: rgba(255,255,255,.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff; margin: 0 auto 14px;
    transition: background .25s;
}
.contact-card:hover .contact-icon { background: rgba(255,255,255,.28); }
.contact-lbl { font-size: .72rem; color: rgba(255,255,255,.52); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.contact-val { font-size: .95rem; font-weight: 600; color: #fff; }
.contact-val a { color: #fff; }
.contact-val a:hover { opacity: .8; }
.maps-wrap { border-radius: 18px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,.3); }
.maps-wrap iframe { width: 100%; height: 380px; border: none; display: block; }

/* ── 13. FOOTER ─────────────────────────────────────────────── */
#lp-footer {
    background: var(--g-footer);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 72px 0 30px; position: relative; overflow: hidden;
}
#lp-footer::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 8% 85%, rgba(27,52,97,.5) 0%, transparent 50%);
}
#lp-footer .lp-wrap { position: relative; }

.foot-brand   { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 5px; }
.foot-tag     { font-size: 1rem; color: rgba(255,255,255,.85); line-height: 1.7; }
.foot-h       { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.foot-nav     { list-style: none; }
.foot-nav li  { margin-bottom: 10px; }
.foot-nav a   { color: rgba(255,255,255,.75); font-size: 1rem; transition: color .2s; }
.foot-nav a:hover { color: #fff; padding-left: 4px; }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.85); font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, color .2s, transform .2s;
}
.social-link:hover { background: var(--p-500); color: #fff; transform: translateY(-2px); }

.foot-contact-info   { font-size: .85rem; color: rgba(255,255,255,.82); margin: 0; display: flex; align-items: center; gap: 7px; }
.foot-contact-info i { color: var(--p-300); }
.foot-hr   { border-color: rgba(255,255,255,.15); margin: 40px 0 24px; }
.foot-copy { text-align: center; color: rgba(255,255,255,.65); font-size: 1.1rem; }

/* ── 14. BACK TO TOP ────────────────────────────────────────── */
#backTop {
    position: fixed; bottom: 26px; right: 26px; z-index: 999;
    width: 46px; height: 46px; border-radius: 14px;
    background: var(--g-primary); color: #fff; border: none;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    cursor: pointer; opacity: 0; pointer-events: none;
    transition: opacity .3s, transform .3s;
    box-shadow: 0 6px 22px rgba(27,52,97,.38);
}
#backTop.show { opacity: 1; pointer-events: auto; }
#backTop:hover { transform: translateY(-3px); }

/* ── 15. LIGHTBOX ───────────────────────────────────────────── */
#lightbox       { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.92); align-items: center; justify-content: center; }
#lightbox.open  { display: flex; }
#lightbox img   { max-width: 90vw; max-height: 90vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.7); }
#lb-close       { position: absolute; top: 18px; right: 22px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; opacity: .7; transition: opacity .2s; }
#lb-close:hover { opacity: 1; }

/* ── 16. PROSE ──────────────────────────────────────────────── */
.detail-hero {
    margin-top: 66px;
    background: linear-gradient(135deg, var(--p-900) 0%, var(--p-700) 70%, var(--p-500) 100%);
    position: relative; overflow: hidden;
}
.detail-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(255,255,255,.1) 0%, transparent 55%); }
.detail-hero-inner { max-width: 960px; margin: 0 auto; padding: 72px 28px 52px; position: relative; z-index: 1; }
.detail-hero-inner h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; }

.meta-row     { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.meta-badge   { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,.14); color: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.2); padding: 4px 12px; border-radius: 20px; font-size: .78rem; }
.meta-badge.cat { background: rgba(245,158,11,.22); color: var(--accent2); border-color: rgba(245,158,11,.3); }

.featured-float { max-width: 960px; margin: 0 auto; padding: 0 28px; transform: translateY(-32px); }
.featured-float img { width: 100%; max-height: 500px; object-fit: cover; border-radius: 18px; box-shadow: 0 24px 64px rgba(2,12,27,.22); }

.prose-wrap         { max-width: 1240px; margin: 0 auto; padding: 0 28px 88px; }
.prose-wrap.has-feat { padding-top: 0; }
.prose-wrap.no-feat  { padding-top: 48px; }

.art-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; }
@media (max-width: 900px) { .art-layout { grid-template-columns: 1fr; } .art-sidebar { order: 2; } }

.prose {
    background: var(--surface); border-radius: 18px; padding: 48px 52px;
    box-shadow: 0 6px 28px rgba(27,52,97,.07); border: 1px solid var(--border);
    font-size: 1.05rem; color: var(--txt-2); line-height: 1.88; text-align: justify;
}
@media (max-width: 640px) { .prose { padding: 28px 22px; } }
.prose h1,.prose h2,.prose h3,.prose h4,.prose h5,.prose h6 { color: var(--txt); font-weight: 700; margin: 1.6em 0 .6em; line-height: 1.3; }
.prose h2 { font-size: 1.5rem; border-bottom: 2px solid var(--p-100); padding-bottom: .4em; }
.prose h3 { font-size: 1.2rem; }
.prose p  { margin-bottom: 1.2em; }
.prose ul,.prose ol { margin: 1em 0 1.2em 1.5em; }
.prose li { margin-bottom: .4em; }
.prose blockquote { border-left: 4px solid var(--p-500); margin: 1.5em 0; padding: 12px 20px; background: var(--p-50); border-radius: 0 10px 10px 0; font-style: italic; color: var(--txt-2); }
.prose img  { max-width: 100%; border-radius: 10px; margin: 1.2em 0; }
.prose a    { color: var(--p-600); text-decoration: underline; }
.prose a:hover { color: var(--p-700); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.2em 0; }
.prose th    { background: var(--p-800); color: #fff; padding: 10px 14px; text-align: left; }
.prose td    { border: 1px solid var(--border); padding: 10px 14px; }
.prose tr:nth-child(even) td { background: var(--p-50); }
.prose pre   { background: var(--p-950); color: #c9fde7; padding: 22px; border-radius: 12px; overflow-x: auto; font-size: .9rem; margin: 1.2em 0; }
.prose code  { background: var(--p-100); color: var(--p-800); padding: 2px 7px; border-radius: 5px; font-size: .9em; }
.prose pre code { background: none; color: inherit; padding: 0; }

.art-sidebar { position: sticky; top: 88px; }
.sidebar-card { background: var(--surface); border-radius: 16px; padding: 24px; border: 1px solid var(--border); box-shadow: 0 4px 16px rgba(27,52,97,.06); margin-bottom: 20px; }
.sidebar-card h6 { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--txt-3); margin-bottom: 14px; }
.meta-item   { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .875rem; }
.meta-item i { color: var(--p-600); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
.meta-item strong { display: block; color: var(--txt); font-size: .875rem; }
.meta-item span   { color: var(--txt-3); font-size: .78rem; }
.tags-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { display: inline-block; background: var(--p-50); border: 1px solid var(--p-100); color: var(--p-700); padding: 4px 11px; border-radius: 20px; font-size: .78rem; font-weight: 500; }
.share-btns { display: flex; gap: 7px; flex-wrap: wrap; }
.share-btn  { flex: 1; min-width: 68px; padding: 9px 6px; border-radius: 10px; font-size: .76rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 4px; cursor: pointer; border: none; transition: opacity .2s, transform .2s; }
.share-btn:hover { opacity: .88; transform: translateY(-1px); }
.share-btn.wa { background: #25D366; color: #fff; }
.share-btn.fb { background: #1877F2; color: #fff; }
.share-btn.tw { background: #1DA1F2; color: #fff; }
.share-btn.cp { background: var(--bg); color: var(--txt-2); border: 1px solid var(--border); }

/* ── 17. SCROLL REVEAL ─────────────────────────────────────��── */
.reveal         { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── 18. ANIMATIONS ─────────────────────────────────────────── */
@keyframes lpFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── 19. KATEGORI CARDS ─────────────────────────────────────── */
.kat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.kat-card {
    display: block; border-radius: 16px; overflow: hidden;
    aspect-ratio: 16/9; position: relative;
    box-shadow: 0 8px 28px rgba(27,52,97,.12);
    transition: transform .3s, box-shadow .3s;
}
.kat-card:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(27,52,97,.2); }
.kat-card img { width: 100%; height: 100%; object-fit: cover; }
.kat-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(2,12,27,.8) 0%, transparent 55%);
    display: flex; align-items: flex-end; padding: 20px;
}
.kat-card-overlay h4 { color: #fff; font-size: 1.05rem; font-weight: 700; margin: 0; }
.kat-card-ph {
    position: absolute; inset: 0;
    background: var(--g-brand);
    display: flex; align-items: center; justify-content: center;
}
.kat-card-ph i { font-size: 3rem; color: rgba(255,255,255,.22); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; cursor: pointer; font-weight: 600; color: var(--txt); }
.faq-q i { color: var(--p-600); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; color: var(--txt-2); line-height: 1.75; font-size: .95rem; }
.faq-item.open .faq-a { display: block; }

/* Event */
.ev-card { background: var(--surface); border-radius: 18px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 14px rgba(27,52,97,.07); transition: transform .3s, box-shadow .3s; }
.ev-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(27,52,97,.13); }
.ev-thumb { height: 200px; overflow: hidden; background: var(--g-brand); position: relative; }
.ev-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.ev-card:hover .ev-thumb img { transform: scale(1.06); }
.ev-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ev-ph i { font-size: 3rem; color: rgba(255,255,255,.22); }
.ev-date-badge { position: absolute; top: 14px; left: 14px; background: var(--p-700); color: #fff; padding: 4px 12px; border-radius: 8px; font-size: .72rem; font-weight: 700; }
.ev-body { padding: 22px; }
.ev-title { font-size: 1rem; font-weight: 700; color: var(--txt); margin-bottom: 8px; line-height: 1.45; }
.ev-meta  { font-size: .8rem; color: var(--txt-3); display: flex; align-items: center; gap: 5px; margin-bottom: 4px; }
.ev-link  { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; color: var(--p-700); font-weight: 700; font-size: .85rem; transition: gap .2s; }
.ev-link:hover { gap: 8px; }
