/* ═══════════════════════════════════════════════════════════
   PKBM KINARA — style.css
   Mobile-First | Biru Formal | v1.0
═══════════════════════════════════════════════════════════ */

/* ──────── 1. DESIGN TOKENS ──────── */
:root {
  --navy:     #0f2a4a;
  --navy2:    #1a3a5c;
  --navy3:    #0a1f38;
  --blue:     #1d5db5;
  --blue2:    #2471d3;
  --bluel:    #dbeafe;
  --sky:      #0ea5e9;
  --gold:     #d4a017;
  --goldl:    #fef3c7;
  --goldd:    #b8860b;
  --red:      #dc2626;

  /* Light Mode */
  --bg:       #f0f4f8;
  --bg2:      #f8fafc;
  --bgcard:   #ffffff;
  --bdr:      #bfdbfe;
  --bdr2:     #93c5fd;
  --bdr3:     #e2e8f0;
  --tx:       #0a1f38;
  --tx2:      #1e3a5f;
  --tx3:      #3b5f8a;
  --tx4:      #6b90b8;
  --topbg:    #0a1f38;
  --navbg:    #ffffff;
  --navsh:    0 2px 20px rgba(15,42,74,.12);
  --navtx:    #0f2a4a;
  --navhov:   #1d5db5;
  --sectalt:  #f0f4f8;

  /* Spacing */
  --sp1: .25rem;  --sp2: .5rem;   --sp3: .75rem;
  --sp4: 1rem;    --sp5: 1.25rem; --sp6: 1.5rem;
  --sp8: 2rem;    --sp10: 2.5rem; --sp12: 3rem;
  --sp16: 4rem;   --sp20: 5rem;

  /* Radius */
  --r1: 4px; --r2: 6px; --r3: 8px;
  --r4: 10px; --r5: 12px; --r6: 14px;
  --r7: 16px; --r8: 20px;

  /* Transition */
  --tr: .2s ease;
  --tr3: .3s ease;
}

html.dark {
  --bg:       #060e19;
  --bg2:      #0a1628;
  --bgcard:   #0d1e35;
  --bdr:      #1a3a5c;
  --bdr2:     #1e4a7a;
  --bdr3:     #162840;
  --tx:       #e8f0f9;
  --tx2:      #b8d0ee;
  --tx3:      #7aaad6;
  --tx4:      #4a7aab;
  --topbg:    #04090f;
  --navbg:    #0a1628;
  --navsh:    0 2px 24px rgba(0,0,0,.7);
  --navtx:    #e8f0f9;
  --navhov:   #60a5fa;
  --sectalt:  #0a1628;
}

/* ──────── 2. RESET & BASE ──────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Mulish', sans-serif;
  background: var(--bg);
  color: var(--tx);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
body, nav, .card, .bgcard,
section, footer, aside {
  transition: background-color var(--tr3), border-color var(--tr3), color var(--tr3);
}

/* ──────── 3. TYPOGRAPHY ──────── */
.ff { font-family: 'Libre Baskerville', serif; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', serif;
  line-height: 1.2;
  color: var(--tx);
}
p { line-height: 1.75; }

/* Section Label System */
.sln  { width: 40px; height: 4px; background: linear-gradient(90deg, var(--blue), var(--sky)); border-radius: 2px; margin-bottom: var(--sp3); }
.slb  { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 800; color: var(--blue); margin-bottom: .3rem; }
html.dark .slb { color: #60a5fa; }
.sh   { font-size: clamp(1.4rem, 5vw, 2.2rem); font-weight: 700; }
.ssb  { color: var(--tx3); font-size: .88rem; margin-top: .4rem; }

/* ──────── 4. LAYOUT ──────── */
.w    { max-width: 1200px; margin: 0 auto; padding: 0 var(--sp4); }
.wf   { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp2); }
.sec  { padding: var(--sp16) 0; }
.sec-alt { background: var(--sectalt); }

@media (min-width: 768px) {
  .w { padding: 0 var(--sp6); }
}

.shdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: var(--sp4);
}

/* ──────── 5. BUTTONS ──────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp2);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  padding: .72rem 1.6rem;
  border-radius: var(--r3);
  border: none;
  transition: all .25s;
  box-shadow: 0 4px 14px rgba(29,93,181,.3);
  white-space: nowrap;
  min-height: 44px;
  letter-spacing: .02em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,93,181,.4); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp2);
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 800;
  padding: .68rem 1.4rem;
  border-radius: var(--r3);
  background: transparent;
  transition: all .2s;
  min-height: 44px;
  white-space: nowrap;
  letter-spacing: .02em;
}
.btn-outline:hover { background: var(--blue); color: #fff; }
html.dark .btn-outline { border-color: #60a5fa; color: #60a5fa; }
html.dark .btn-outline:hover { background: #60a5fa; color: #0a1f38; }

.bsa {
  font-size: .76rem;
  font-weight: 800;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: .46rem 1.05rem;
  border-radius: var(--r2);
  transition: all .2s;
  flex-shrink: 0;
  display: inline-block;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}
.bsa:hover { background: var(--blue); color: #fff; }

/* ──────── 6. CARDS BASE ──────── */
.card-base {
  background: var(--bgcard);
  border: 1px solid var(--bdr3);
  border-radius: var(--r7);
  transition: all .3s;
}
.card-base:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(29,93,181,.12);
  border-color: var(--blue);
}

/* ──────── 7. TOPBAR ──────── */
.topbar {
  background: var(--topbg);
  padding: .4rem 0;
  font-size: .7rem;
  color: rgba(255,255,255,.7);
  border-bottom: 2px solid var(--gold);
  display: none; /* hidden on mobile */
}
.topbar a { color: rgba(255,255,255,.7); transition: color var(--tr); }
.topbar a:hover { color: var(--gold); }
.tb-left  { display: flex; gap: var(--sp5); align-items: center; }
.tb-right { display: flex; gap: var(--sp4); align-items: center; }
.tb-divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

@media (min-width: 768px) {
  .topbar { display: block; }
}

/* ──────── 8. NAVBAR ──────── */
nav.mn {
  background: var(--navbg);
  box-shadow: var(--navsh);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 3px solid var(--blue);
}
.ni {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp4);
  display: flex;
  align-items: center;
  gap: var(--sp3);
  height: 64px;
}
@media (min-width: 768px) {
  .ni { padding: 0 var(--sp6); height: 70px; }
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.logo-ic {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(29,93,181,.3);
  flex-shrink: 0;
}
.logo-nm { font-family: 'Libre Baskerville', serif; font-size: .95rem; font-weight: 700; color: var(--navtx); line-height: 1.1; }
.logo-sb { font-size: .5rem; letter-spacing: .1em; text-transform: uppercase; color: var(--tx4); margin-top: 2px; display: none; }

@media (min-width: 480px) {
  .logo-nm { font-size: 1.05rem; }
  .logo-sb { display: block; }
}

/* Desktop Nav Links */
.nl { display: none; align-items: center; gap: .05rem; flex: 1; justify-content: center; }
@media (min-width: 1024px) { .nl { display: flex; } }

.nit { position: relative; }
.na {
  display: flex; align-items: center; gap: 4px;
  color: var(--navtx); font-size: .8rem; font-weight: 700;
  padding: .42rem .75rem; border-radius: var(--r2);
  transition: all var(--tr); white-space: nowrap;
  background: none; border: none; min-height: 40px;
  font-family: 'Mulish', sans-serif; letter-spacing: .01em;
}
.na:hover, .na.active { color: var(--navhov); background: rgba(29,93,181,.07); }
.na svg { width: 10px; height: 10px; transition: transform var(--tr); }
.nit:hover .na svg { transform: rotate(180deg); }

/* Dropdown */
.ndrop {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 215px;
  background: var(--navbg);
  border: 1px solid var(--bdr);
  border-top: 3px solid var(--blue);
  border-radius: var(--r5);
  box-shadow: 0 16px 48px rgba(15,42,74,.15);
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: all .22s;
  overflow: hidden;
}
.nit:hover .ndrop { opacity: 1; transform: translateY(0); pointer-events: all; }
.ndrop a {
  display: flex; align-items: center; gap: 8px;
  color: var(--tx2); font-size: .8rem; font-weight: 600;
  padding: .62rem 1.1rem;
  transition: all .15s;
  border-bottom: 1px solid var(--bdr3);
}
.ndrop a:last-child { border: none; }
.ndrop a:hover { color: var(--blue); background: rgba(29,93,181,.06); padding-left: 1.4rem; }

/* Nav Right */
.nr { display: flex; align-items: center; gap: var(--sp2); flex-shrink: 0; margin-left: auto; }

.btn-daftar {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff; font-size: .72rem; font-weight: 800;
  padding: .45rem 1rem; border-radius: var(--r2);
  transition: all .25s; box-shadow: 0 3px 10px rgba(29,93,181,.3);
  display: none; white-space: nowrap; min-height: 40px;
  align-items: center;
  font-family: 'Mulish', sans-serif;
}
.btn-daftar:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(29,93,181,.4); }
@media (min-width: 640px) { .btn-daftar { display: inline-flex; } }

.dbtn {
  width: 40px; height: 40px;
  border-radius: var(--r3);
  border: 1.5px solid var(--bdr2);
  background: rgba(29,93,181,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: all var(--tr);
  flex-shrink: 0;
}
.dbtn:hover { background: rgba(29,93,181,.15); }

/* ──────── 9. HAMBURGER ──────── */
.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--r3);
  transition: background var(--tr);
}
.hamburger:hover { background: rgba(29,93,181,.08); }
.hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--navtx);
  transition: all .3s ease;
  transform-origin: center;
}
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 22px; }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 22px; }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

@media (min-width: 1024px) { .hamburger { display: none; } }

/* ──────── 10. MOBILE MENU ──────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navbg);
  z-index: 998;
  overflow-y: auto;
  padding-top: 80px;
  transform: translateX(-100%);
  transition: transform .3s ease;
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  transform: translateX(0);
}
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

.mm-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(29,93,181,.08); border: none; border-radius: var(--r3);
  font-size: 1.3rem; color: var(--tx); cursor: pointer;
}
.mm-body { padding: var(--sp4); }
.mm-item-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp4) 0;
  border-bottom: 1px solid var(--bdr3);
  color: var(--tx); font-size: 1rem; font-weight: 700;
  cursor: pointer;
  min-height: 52px;
}
.mm-item-main:hover { color: var(--blue); }
.mm-item-main.simple { display: block; }
.mm-sub { display: none; padding: var(--sp3) 0 var(--sp3) var(--sp4); }
.mm-sub.open { display: block; }
.mm-sub a {
  display: flex; align-items: center; gap: var(--sp2);
  padding: .55rem 0; color: var(--tx3); font-size: .88rem; font-weight: 600;
  min-height: 44px;
}
.mm-sub a:hover { color: var(--blue); }
.mm-daftar {
  margin: var(--sp6) var(--sp4) var(--sp4);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: #fff; text-align: center; padding: 1rem;
  border-radius: var(--r4); font-weight: 800; font-size: .92rem;
  display: block;
}

/* ──────── 11. BREADCRUMB ──────── */
.breadcrumb {
  background: var(--bg2);
  padding: .75rem 0;
  border-bottom: 1px solid var(--bdr3);
}
.breadcrumb-list {
  display: flex; align-items: center; gap: .4rem;
  flex-wrap: wrap;
  font-size: .72rem; color: var(--tx4);
}
.breadcrumb-list a { color: var(--blue); font-weight: 600; }
.breadcrumb-list a:hover { text-decoration: underline; }
.breadcrumb-list .sep { color: var(--bdr2); }
.breadcrumb-list .current { color: var(--tx3); font-weight: 600; }

/* ──────── 12. TICKER ──────── */
.ticker {
  background: linear-gradient(90deg, var(--navy), var(--blue2));
  padding: .52rem 0; overflow: hidden;
  border-bottom: 2px solid rgba(255,255,255,.1);
}
.ticker-inner { display: flex; align-items: center; }
.ticker-label {
  background: var(--gold); color: var(--navy3);
  font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .28rem .85rem; border-radius: 0 4px 4px 0;
  white-space: nowrap; flex-shrink: 0; margin-right: var(--sp5);
}
.ticker-wrap { flex: 1; overflow: hidden; position: relative; }
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 30px; z-index: 2;
}
.ticker-wrap::before { left: 0; background: linear-gradient(90deg, var(--blue2), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(270deg, var(--navy), transparent); }
.ticker-track { display: flex; gap: 2.5rem; animation: tick 30s linear infinite; white-space: nowrap; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.t-item { display: inline-flex; align-items: center; gap: .5rem; font-size: .73rem; color: rgba(255,255,255,.9); font-weight: 600; }
.t-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ──────── 13. HERO ──────── */
.hero {
  background: var(--navy3);
  position: relative; overflow: hidden;
  min-height: 420px;
  display: flex; align-items: center;
  padding: var(--sp16) 0;
}
@media (min-width: 768px) { .hero { min-height: 520px; } }

.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #030d1a 0%, #0f2a4a 45%, #1a3a5c 100%); }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-glow {
  position: absolute; right: 5%; top: 20%;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,93,181,.18), transparent 70%);
  display: none;
}
@media (min-width: 768px) { .hero-glow { display: block; } }

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 var(--sp4);
  width: 100%;
}
@media (min-width: 768px) { .hero-inner { padding: 0 var(--sp6); } }
@media (min-width: 1024px) {
  .hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,160,23,.15); border: 1px solid rgba(212,160,23,.35);
  color: var(--gold); font-size: .63rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  padding: .32rem .95rem; border-radius: 100px; margin-bottom: .85rem;
}
.hero-h {
  font-size: clamp(1.6rem, 6vw, 2.9rem);
  font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: .85rem;
}
.hero-h em { color: #60a5fa; font-style: italic; }
.hero-h span { display: block; font-size: clamp(1.1rem, 4vw, 1.8rem); color: var(--gold); font-style: italic; margin-top: .15rem; }
.hero-p { color: rgba(255,255,255,.7); font-size: .88rem; line-height: 1.75; max-width: 480px; margin-bottom: 1.75rem; }

.hero-btns { display: flex; gap: .65rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.btn-hero-p {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff; font-size: .8rem; font-weight: 800; padding: .72rem 1.5rem;
  border-radius: var(--r3); transition: all .25s; box-shadow: 0 6px 20px rgba(29,93,181,.4);
  min-height: 44px; display: inline-flex; align-items: center;
}
.btn-hero-p:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(29,93,181,.5); }
.btn-hero-s {
  border: 1.5px solid rgba(255,255,255,.35); color: rgba(255,255,255,.9);
  font-size: .8rem; font-weight: 700; padding: .7rem 1.5rem;
  border-radius: var(--r3); transition: all .25s;
  min-height: 44px; display: inline-flex; align-items: center;
}
.btn-hero-s:hover { border-color: var(--gold); color: var(--gold); }

.hero-trust { display: flex; gap: 1rem; flex-wrap: wrap; }
.ht { display: flex; align-items: center; gap: .35rem; font-size: .7rem; color: rgba(255,255,255,.5); font-weight: 600; }
.ht-ic { color: var(--gold); }

/* Hero Stats (tablet+) */
.hero-stats { display: none; }
@media (min-width: 1024px) {
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
}
.hs-c {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r6); padding: 1rem; backdrop-filter: blur(8px);
  transition: all .3s;
}
.hs-c:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
.hs-c.featured { background: linear-gradient(135deg, rgba(29,93,181,.35), rgba(14,165,233,.15)); border-color: rgba(29,93,181,.5); grid-column: span 2; }
.hs-em { font-size: 1.4rem; margin-bottom: .4rem; }
.hs-n { font-family: 'Libre Baskerville', serif; font-size: 1.6rem; font-weight: 700; color: #fff; line-height: 1; }
.hs-l { font-size: .62rem; color: rgba(255,255,255,.6); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-top: .25rem; }

/* ──────── 14. QUICK NAV ──────── */
.qnav { background: var(--navbg); border-bottom: 2px solid var(--bdr); padding: 1rem 0; }
.qgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .4rem;
}
@media (min-width: 480px) { .qgrid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .qgrid { grid-template-columns: repeat(6, 1fr); gap: .5rem; } }

.qi {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  padding: .7rem .3rem; border-radius: var(--r5);
  border: 1.5px solid transparent; transition: all .25s; cursor: pointer;
  text-decoration: none;
  min-height: 76px;
}
.qi:hover { background: rgba(29,93,181,.06); border-color: var(--bdr2); transform: translateY(-2px); }
.qic {
  width: 44px; height: 44px; border-radius: var(--r4);
  background: linear-gradient(135deg, rgba(29,93,181,.08), rgba(29,93,181,.04));
  border: 1.5px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; transition: all .25s;
}
@media (min-width: 768px) { .qic { width: 50px; height: 50px; font-size: 1.3rem; } }
.qi:hover .qic { background: linear-gradient(135deg, var(--blue), var(--navy)); border-color: transparent; box-shadow: 0 6px 18px rgba(29,93,181,.3); }
.qi:hover .qic span { filter: brightness(10); }
.qlb { font-size: .62rem; font-weight: 800; color: var(--tx2); text-align: center; line-height: 1.2; }
@media (min-width: 768px) { .qlb { font-size: .68rem; } }
.qi:hover .qlb { color: var(--blue); }

/* ──────── 15. STAT BAR ──────── */
.statbar { background: linear-gradient(90deg, var(--navy3), var(--navy), var(--blue)); padding: 1.1rem 0; }
html.dark .statbar { background: linear-gradient(90deg, #030d1a, var(--navy3), #0a1f38); }
.statg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 480px) { .statg { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .statg { grid-template-columns: repeat(5, 1fr); } }
.statb { text-align: center; border-right: 1px solid rgba(255,255,255,.12); padding: .65rem var(--sp3); }
.statb:last-child { border: none; }
.statn { font-family: 'Libre Baskerville', serif; font-size: 1.6rem; font-weight: 700; color: #fff; line-height: 1; }
@media (min-width: 768px) { .statn { font-size: 1.9rem; } }
.statl { font-size: .6rem; color: rgba(255,255,255,.7); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-top: .3rem; }

/* ──────── 16. CARD COMPONENTS ──────── */
/* Program Cards */
.prog-g { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .prog-g { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .prog-g { grid-template-columns: repeat(3, 1fr); } }

.prog-c {
  background: var(--bgcard); border-radius: var(--r6);
  overflow: hidden; border: 1px solid var(--bdr3); transition: all .3s;
}
.prog-c:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(29,93,181,.12); border-color: var(--blue); }
.prog-top { height: 4px; background: linear-gradient(90deg, var(--blue), var(--sky)); }
.prog-bod { padding: var(--sp5); }
.prog-icon {
  width: 48px; height: 48px; border-radius: var(--r5); margin-bottom: .85rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  background: rgba(29,93,181,.07); border: 1px solid var(--bdr); transition: all .3s;
}
.prog-c:hover .prog-icon { background: linear-gradient(135deg, var(--blue), var(--navy)); box-shadow: 0 5px 16px rgba(29,93,181,.3); }
.prog-c:hover .prog-icon span { filter: brightness(10); }
.prog-t { font-family: 'Libre Baskerville', serif; font-size: .95rem; font-weight: 700; color: var(--tx); margin-bottom: .35rem; }
.prog-c:hover .prog-t { color: var(--blue); }
.prog-d { font-size: .78rem; color: var(--tx3); line-height: 1.65; margin-bottom: .85rem; }
.prog-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.ptag { font-size: .6rem; font-weight: 700; padding: .18rem .55rem; border-radius: 5px; }
.ptag-b { background: var(--bluel); color: var(--blue); border: 1px solid var(--bdr2); }
html.dark .ptag-b { background: rgba(29,93,181,.2); color: #93c5fd; border-color: #1e3a5c; }
.ptag-g { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.ptag-o { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }

/* News Cards */
.ber-g { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 768px) { .ber-g { grid-template-columns: 1.6fr 1fr 1fr; } }

.ber-main {
  background: var(--bgcard); border: 1px solid var(--bdr3); border-radius: var(--r7);
  overflow: hidden; transition: all .3s; display: block;
}
@media (min-width: 768px) { .ber-main { grid-column: span 2; } }
.ber-main:hover { box-shadow: 0 16px 48px rgba(29,93,181,.13); transform: translateY(-3px); }
.ber-img { width: 100%; height: 200px; background: linear-gradient(135deg, var(--navy3), var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; }
@media (min-width: 768px) { .ber-img { height: 220px; } }
.ber-img-badge { position: absolute; top: .85rem; left: .85rem; background: var(--blue); color: #fff; font-size: .6rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .22rem .65rem; border-radius: 5px; }
.ber-body { padding: 1.1rem; }
.ber-date { font-size: .7rem; color: var(--tx4); margin-bottom: .5rem; display: flex; align-items: center; gap: 4px; }
.ber-ti { font-family: 'Libre Baskerville', serif; font-size: 1rem; font-weight: 700; color: var(--tx); line-height: 1.35; margin-bottom: .55rem; }
.ber-main:hover .ber-ti { color: var(--blue); }
.ber-ex { font-size: .78rem; color: var(--tx3); line-height: 1.7; }

.ber-sm { background: var(--bgcard); border: 1px solid var(--bdr3); border-radius: var(--r6); overflow: hidden; transition: all .25s; display: flex; flex-direction: column; }
.ber-sm:hover { border-color: var(--blue); box-shadow: 0 6px 24px rgba(29,93,181,.1); }
.ber-sm-img { height: 120px; background: linear-gradient(135deg, var(--navy3), var(--blue2)); display: flex; align-items: center; justify-content: center; font-size: 2rem; position: relative; }
.ber-sm-body { padding: .9rem; flex: 1; display: flex; flex-direction: column; }
.ber-sm-cat { display: inline-block; background: rgba(29,93,181,.1); color: var(--blue); font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: .15rem .5rem; border-radius: 4px; margin-bottom: .4rem; }
html.dark .ber-sm-cat { background: rgba(29,93,181,.25); color: #93c5fd; }
.ber-sm-ti { font-size: .84rem; font-weight: 700; color: var(--tx); line-height: 1.4; flex: 1; }
.ber-sm:hover .ber-sm-ti { color: var(--blue); }
.ber-sm-dt { font-size: .68rem; color: var(--tx4); margin-top: .5rem; }

/* Agenda */
.ag-list { display: flex; flex-direction: column; gap: .75rem; }
.ag-item { background: var(--bgcard); border: 1px solid var(--bdr3); border-radius: var(--r5); display: flex; overflow: hidden; transition: all .25s; cursor: pointer; }
.ag-item:hover { border-color: var(--blue); box-shadow: 0 6px 22px rgba(29,93,181,.1); }
.ag-db { padding: .75rem; text-align: center; background: var(--bluel); min-width: 56px; display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
html.dark .ag-db { background: rgba(29,93,181,.2); }
.ag-day { font-family: 'Libre Baskerville', serif; font-size: 1.4rem; font-weight: 700; color: var(--blue); line-height: 1; }
html.dark .ag-day { color: #60a5fa; }
.ag-mon { font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--tx4); }
.ag-body { padding: .75rem 1rem; flex: 1; }
.ag-cat { display: inline-block; font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: .15rem .5rem; border-radius: 4px; margin-bottom: .3rem; background: var(--bluel); color: var(--blue); border: 1px solid var(--bdr2); }
html.dark .ag-cat { background: rgba(29,93,181,.2); color: #93c5fd; border-color: #1e3a5c; }
.ag-title { font-size: .84rem; font-weight: 700; color: var(--tx); line-height: 1.35; margin-bottom: .3rem; }
.ag-item:hover .ag-title { color: var(--blue); }
.ag-meta { font-size: .7rem; color: var(--tx4); display: flex; gap: .75rem; flex-wrap: wrap; }

/* Galeri */
.gal-g { display: grid; grid-template-columns: repeat(2, 1fr); gap: .65rem; }
@media (min-width: 640px) { .gal-g { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gal-g { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; } }
@media (min-width: 1024px) {
  .gal-i:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gal-i:nth-child(4) { grid-column: span 2; }
}
.gal-i { border-radius: var(--r5); overflow: hidden; position: relative; cursor: pointer; aspect-ratio: 4/3; }
@media (min-width: 1024px) { .gal-i { aspect-ratio: auto; } }
.gal-em { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 2rem; opacity: .2; transition: all .3s; }
@media (min-width: 1024px) { .gal-i:nth-child(1) .gal-em { font-size: 4rem; } }
.gal-ov { position: absolute; inset: 0; background: rgba(15,42,74,0); transition: background .3s; display: flex; align-items: flex-end; }
.gal-i:hover .gal-ov { background: rgba(15,42,74,.65); }
.gal-i:hover .gal-em { opacity: .35; transform: translate(-50%,-50%) scale(1.08); }
.gal-lb { padding: .75rem; color: #fff; font-size: .78rem; font-weight: 700; transform: translateY(8px); opacity: 0; transition: all .3s; font-family: 'Libre Baskerville', serif; }
.gal-i:hover .gal-lb { transform: translateY(0); opacity: 1; }

/* Tutor */
.tutor-g { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; }
@media (min-width: 640px) { .tutor-g { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .tutor-g { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); } }
.tutor-c { background: var(--bgcard); border: 1px solid var(--bdr3); border-radius: var(--r6); padding: 1.2rem .85rem; text-align: center; transition: all .3s; display: block; }
.tutor-c:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(29,93,181,.1); transform: translateY(-3px); }
.tutor-av { width: 62px; height: 62px; border-radius: 50%; margin: 0 auto .75rem; background: linear-gradient(135deg, var(--blue), var(--navy)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; border: 3px solid var(--bdr2); }
@media (min-width: 768px) { .tutor-av { width: 70px; height: 70px; } }
.tutor-nm { font-weight: 800; font-size: .8rem; color: var(--tx); line-height: 1.3; margin-bottom: .2rem; }
.tutor-ro { font-size: .66rem; color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .15rem; }
html.dark .tutor-ro { color: #60a5fa; }
.tutor-mp { font-size: .66rem; color: var(--tx4); }

/* Prestasi */
.pres-g { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; }
@media (min-width: 768px) { .pres-g { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); } }
.pres-c { background: var(--bgcard); border: 1px solid var(--bdr3); border-radius: var(--r6); overflow: hidden; transition: all .3s; }
.pres-c:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(29,93,181,.13); }
.pres-im { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
@media (min-width: 768px) { .pres-im { height: 155px; } }
.pres-bd { display: inline-block; background: var(--gold); color: var(--navy); font-size: .62rem; font-weight: 700; padding: .2rem .65rem; border-radius: 100px; margin: .75rem .75rem .25rem; }
.pres-dt { font-size: .7rem; color: var(--tx4); margin: 0 .75rem .25rem; }
.pres-ti { font-size: .83rem; font-weight: 700; color: var(--tx); padding: 0 .75rem .75rem; line-height: 1.35; }
.pres-c:hover .pres-ti { color: var(--blue); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .65rem; }
.faq-item { background: var(--bgcard); border: 1.5px solid var(--bdr3); border-radius: var(--r5); overflow: hidden; transition: all .25s; }
.faq-item.open { border-color: var(--blue); box-shadow: 0 4px 18px rgba(29,93,181,.1); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; cursor: pointer; user-select: none; min-height: 52px; }
.faq-q-text { font-size: .86rem; font-weight: 700; color: var(--tx); line-height: 1.4; }
.faq-item.open .faq-q-text { color: var(--blue); }
html.dark .faq-item.open .faq-q-text { color: #60a5fa; }
.faq-ic { width: 28px; height: 28px; border-radius: 7px; background: var(--bg); border: 1.5px solid var(--bdr3); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; transition: all .3s; font-weight: 800; color: var(--tx3); }
.faq-item.open .faq-ic { background: var(--blue); color: #fff; border-color: transparent; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 1.1rem 1rem; font-size: .81rem; color: var(--tx3); line-height: 1.75; }
.faq-item.open .faq-a { display: block; animation: fadeIn .25s ease; }

/* ──────── 17. PAGE HERO (Inner pages) ──────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy3), var(--navy), var(--blue));
  padding: var(--sp12) 0;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(212,160,23,.15); border: 1px solid rgba(212,160,23,.35); color: var(--gold); font-size: .62rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; padding: .3rem .9rem; border-radius: 100px; margin-bottom: .75rem; }
.page-hero-h { font-size: clamp(1.5rem, 5vw, 2.4rem); color: #fff; font-weight: 700; line-height: 1.2; margin-bottom: .5rem; }
.page-hero-p { color: rgba(255,255,255,.7); font-size: .86rem; max-width: 520px; }

/* ──────── 18. SAMBUTAN ──────── */
.sam-g { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .sam-g { grid-template-columns: 1fr 1.5fr; } }

.sam-frame { position: relative; }
.sam-photo {
  width: 100%; max-width: 360px; aspect-ratio: 3/4; margin: 0 auto;
  border-radius: var(--r8); background: linear-gradient(145deg, var(--navy3), #1a3a5c, #0a1f38);
  display: flex; align-items: flex-end; overflow: hidden;
  box-shadow: 0 24px 60px rgba(15,42,74,.3); position: relative;
}
@media (min-width: 768px) { .sam-photo { max-width: 100%; margin: 0; } }
.sam-photo-em { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-55%); font-size: 5rem; opacity: .1; }
.sam-overlay { padding: 1.25rem; background: linear-gradient(to top, rgba(0,0,0,.8), transparent); width: 100%; position: relative; z-index: 1; }
.sam-dec { position: absolute; top: -16px; left: -16px; width: 100%; height: 100%; border: 2px solid var(--bdr2); border-radius: var(--r8); z-index: -1; display: none; }
@media (min-width: 768px) { .sam-dec { display: block; } }
.sam-badge-card { position: absolute; top: -12px; right: 16px; background: var(--gold); color: var(--navy3); font-size: .7rem; font-weight: 800; padding: .5rem 1rem; border-radius: var(--r3); box-shadow: 0 4px 14px rgba(212,160,23,.4); z-index: 5; }

.sam-q { font-family: 'Libre Baskerville', serif; font-size: clamp(1rem, 3vw, 1.2rem); font-weight: 400; font-style: italic; color: var(--tx); line-height: 1.6; margin-bottom: 1rem; padding: .85rem 1.25rem; background: var(--bluel); border-left: 4px solid var(--blue); border-radius: 0 var(--r4) var(--r4) 0; }
html.dark .sam-q { background: rgba(29,93,181,.15); }

/* ──────── 19. FORM (Pendaftaran) ──────── */
.daftar-wrap { background: linear-gradient(135deg, var(--navy3), #0f2a4a); border-radius: var(--r8); padding: var(--sp8) var(--sp4); position: relative; overflow: hidden; }
@media (min-width: 768px) { .daftar-wrap { padding: 3rem; } }
.daftar-g { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .daftar-g { grid-template-columns: 1fr 1.4fr; gap: 3rem; } }
.daftar-form { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r6); padding: 1.5rem; }
.frow-g { display: grid; grid-template-columns: 1fr; gap: .75rem; margin-bottom: .75rem; }
@media (min-width: 640px) { .frow-g { grid-template-columns: 1fr 1fr; } }
.frow-full { margin-bottom: .75rem; }
.flabel { font-size: .7rem; font-weight: 800; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .3rem; display: block; }
.finput { width: 100%; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.15); border-radius: var(--r3); padding: .7rem .9rem; color: #fff; font-size: .82rem; font-family: 'Mulish', sans-serif; transition: all .2s; outline: none; min-height: 44px; }
.finput::placeholder { color: rgba(255,255,255,.4); }
.finput:focus { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.15); }
select.finput option { background: #0f2a4a; color: #fff; }
.fsubmit { width: 100%; background: linear-gradient(135deg, var(--blue), var(--blue2)); color: #fff; font-size: .88rem; font-weight: 800; padding: .85rem; border-radius: var(--r4); border: none; cursor: pointer; font-family: 'Mulish', sans-serif; transition: all .25s; margin-top: .25rem; min-height: 48px; }
.fsubmit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(29,93,181,.5); }

/* ──────── 20. PENGUMUMAN ──────── */
.peng-wrap { background: var(--bgcard); border: 1px solid var(--bdr3); border-radius: var(--r7); overflow: hidden; }
.peng-hd { background: linear-gradient(90deg, var(--navy), var(--blue2)); padding: 1rem 1.25rem; display: flex; justify-content: space-between; align-items: center; }
.peng-hd-t { font-family: 'Libre Baskerville', serif; font-size: .9rem; font-weight: 700; color: #fff; }
.peng-list { max-height: 380px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--bdr2) transparent; }
.peng-item { display: flex; align-items: flex-start; gap: .75rem; padding: .9rem 1.1rem; border-bottom: 1px solid var(--bdr3); transition: background .2s; cursor: pointer; }
.peng-item:last-child { border: none; }
.peng-item:hover { background: rgba(29,93,181,.04); }
.peng-date { flex-shrink: 0; background: var(--bluel); border-radius: var(--r3); padding: .35rem .5rem; text-align: center; min-width: 42px; }
html.dark .peng-date { background: rgba(29,93,181,.25); }
.peng-day { font-family: 'Libre Baskerville', serif; font-size: .95rem; font-weight: 700; color: var(--blue); line-height: 1; }
html.dark .peng-day { color: #60a5fa; }
.peng-mon { font-size: .58rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--tx4); }
.peng-badge { display: inline-block; font-size: .58rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: .15rem .5rem; border-radius: 4px; margin-bottom: .3rem; }
.pb-baru   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.pb-penting { background: #fef3c7; color: #d97706; border: 1px solid #fde68a; }
.pb-info   { background: var(--bluel); color: var(--blue); border: 1px solid var(--bdr2); }
html.dark .pb-info { background: rgba(29,93,181,.2); color: #93c5fd; border-color: #1e3a5c; }
.peng-title { font-size: .81rem; font-weight: 700; color: var(--tx); line-height: 1.35; }
.peng-item:hover .peng-title { color: var(--blue); }
.peng-sub { font-size: .68rem; color: var(--tx4); margin-top: .2rem; }

/* ──────── 21. MITRA ──────── */
.mitra-g { display: grid; grid-template-columns: repeat(2, 1fr); gap: .85rem; }
@media (min-width: 640px) { .mitra-g { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .mitra-g { grid-template-columns: repeat(6, 1fr); } }
.mitra-c { background: var(--bgcard); border: 1.5px solid var(--bdr3); border-radius: var(--r6); padding: 1rem 1.25rem; display: flex; flex-direction: column; align-items: center; gap: .55rem; transition: all .25s; text-align: center; }
.mitra-c:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,93,181,.1); }
.mitra-ic { font-size: 1.75rem; }
.mitra-nm { font-size: .72rem; font-weight: 700; color: var(--tx2); line-height: 1.3; }
.mitra-c:hover .mitra-nm { color: var(--blue); }

/* ──────── 22. CTA BANNER ──────── */
.cta { background: linear-gradient(135deg, var(--navy3) 0%, var(--navy) 50%, #1a3a5c 100%); padding: var(--sp16) 0; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Crect x='0' y='0' width='1' height='80'/%3E%3Crect x='0' y='0' width='80' height='1'/%3E%3C/g%3E%3C/svg%3E"); }
.cta-in { position: relative; z-index: 1; text-align: center; }
.cta-chip { display: inline-block; background: rgba(212,160,23,.18); border: 1px solid rgba(212,160,23,.35); color: var(--gold); font-size: .63rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; padding: .32rem .95rem; border-radius: 100px; margin-bottom: .85rem; }
.cta-h { font-size: clamp(1.5rem, 4vw, 2.3rem); color: #fff; font-weight: 700; margin-bottom: .7rem; line-height: 1.2; }
.cta-h em { color: #60a5fa; font-style: italic; }
.cta-p { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.75; max-width: 460px; margin: 0 auto 2rem; }
.cta-btns { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; }
.btn-cta-w { background: #fff; color: var(--navy); font-size: .81rem; font-weight: 800; padding: .7rem 1.6rem; border-radius: var(--r3); transition: all .25s; min-height: 44px; display: inline-flex; align-items: center; }
.btn-cta-w:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-cta-s { border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.9); font-size: .81rem; font-weight: 700; padding: .68rem 1.6rem; border-radius: var(--r3); transition: all .25s; min-height: 44px; display: inline-flex; align-items: center; }
.btn-cta-s:hover { border-color: #60a5fa; color: #60a5fa; }

/* ──────── 23. FOOTER ──────── */
footer { background: var(--navy3); padding: 3rem 0 0; border-top: 3px solid var(--blue); }
html.dark footer { background: #030d1a; }
.ft-g { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; }
@media (min-width: 640px) { .ft-g { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .ft-g { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; } }
.ft-nm { font-family: 'Libre Baskerville', serif; color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: .35rem; }
.ft-sb { color: rgba(255,255,255,.3); font-size: .78rem; line-height: 1.65; font-style: italic; max-width: 240px; margin-bottom: 1rem; }
.ft-soc { display: flex; gap: 7px; }
.soc-b { width: 38px; height: 38px; border-radius: var(--r3); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: .88rem; transition: all .2s; }
.soc-b:hover { background: var(--blue); border-color: transparent; }
.ft-ct { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 800; margin-bottom: .85rem; opacity: .9; }
.ft-a { display: block; color: rgba(255,255,255,.3); font-size: .8rem; padding: .28rem 0; transition: color .2s; }
.ft-a:hover { color: #93c5fd; }
.ft-ci { display: flex; gap: 7px; margin-bottom: .6rem; color: rgba(255,255,255,.3); font-size: .78rem; align-items: flex-start; }
.ft-bot { border-top: 1px solid rgba(255,255,255,.07); padding: 1.2rem var(--sp4); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
@media (min-width: 768px) { .ft-bot { padding: 1.2rem 0; } }
.ft-cp { color: rgba(255,255,255,.25); font-size: .7rem; }
.ft-dev { color: rgba(255,255,255,.25); font-size: .7rem; }
.ft-dev a { color: rgba(99,179,237,.6); transition: color .2s; }
.ft-dev a:hover { color: #93c5fd; }

/* ──────── 24. UTILITIES ──────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

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

.tag { display: inline-block; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: .2rem .65rem; border-radius: 5px; }
.tag-blue   { background: var(--bluel); color: var(--blue); border: 1px solid var(--bdr2); }
.tag-green  { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.tag-gold   { background: var(--goldl); color: #92400e; border: 1px solid #fde68a; }
.tag-red    { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
html.dark .tag-blue { background: rgba(29,93,181,.2); color: #93c5fd; border-color: #1e3a5c; }

.text-center { text-align: center; }
.mt-4  { margin-top: 1rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--bdr2), transparent); margin: var(--sp8) 0; }

.badge-wip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--goldl); color: #92400e; border: 1px solid #fde68a;
  font-size: .65rem; font-weight: 800; letter-spacing: .06em;
  padding: .3rem .75rem; border-radius: 100px;
}

/* ──────── 25. PRINT ──────── */
@media print {
  .topbar, nav.mn, .ticker, .cta, footer, .hamburger, .mobile-menu, .btn-daftar { display: none !important; }
  body { background: #fff; color: #000; }
  .hero { min-height: 0; padding: 1rem 0; background: #f0f4f8 !important; }
  .hero-h, .hero-p { color: #000 !important; }
}
