/* ============================================================
   SPMB SMK NU 04 PATEBON KENDAL
   Professional Redesign v5.0 — Inspired by PMB UAD
   Clean · Institutional · Modern
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --navy:      #0d3b7a;
  --navy-dark: #082b5e;
  --navy-mid:  #1256a8;
  --blue:      #1e6bc4;
  --blue-lt:   #e8f1fb;
  --red:       #c0392b;
  --red-lt:    #e74c3c;
  --red-pale:  #fdf0ef;
  --amber:     #f39c12;
  --green:     #27ae60;
  --white:     #ffffff;
  --off-white: #f8f9fa;
  --gray-100:  #f1f3f4;
  --gray-200:  #e8eaed;
  --gray-300:  #dadce0;
  --gray-400:  #9aa0a6;
  --gray-500:  #5f6368;
  --gray-700:  #3c4043;
  --gray-900:  #202124;
  --text:      #2c3e50;
  --text-sm:   #5f6368;

  --shadow-xs: 0 1px 3px rgba(0,0,0,.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.10);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.16);

  --radius:  8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --pill:    100px;

  --ease:    cubic-bezier(.4,0,.2,1);
  --tr:      .22s var(--ease);
  --font:    'Poppins', 'Segoe UI', Arial, sans-serif;

  --topbar-h: 38px;
  --nav-h:    78px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button, input, select, textarea { font-family: inherit; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* ── TOP BAR ─────────────────────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.72);
  height: var(--topbar-h);
  font-size: .75rem;
  display: flex; align-items: center;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.topbar-left  { display: flex; align-items: center; gap: 10px; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.tb-sep   { opacity: .35; }
.tb-wa    { color: #4ade80; font-weight: 600; transition: color var(--tr); }
.tb-wa:hover { color: #86efac; }
.tb-link  { transition: color var(--tr); }
.tb-link:hover { color: var(--amber); }

/* ── NAVBAR ──────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--tr);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); gap: 16px;
}

/* Brand */
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo-box {
  width: 46px; height: 46px;
  background: var(--blue-lt); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-box img { width: 80%; height: 80%; object-fit: contain; }
.nav-brand-info { display: flex; flex-direction: column; }
.nb-name { font-size: .95rem; font-weight: 800; color: var(--navy); line-height: 1.1; letter-spacing: -.3px; }
.nb-sub  { font-size: .66rem; color: var(--gray-400); letter-spacing: .3px; font-weight: 500; }

/* Menu */
.nav-menu { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nl {
  display: block; padding: 9px 13px; border-radius: var(--radius);
  font-size: .855rem; font-weight: 500; color: var(--gray-700);
  transition: all var(--tr); white-space: nowrap;
}
.nl:hover { color: var(--navy); background: var(--blue-lt); }
.chev { font-size: .55rem; display: inline-block; margin-left: 2px; transition: transform var(--tr); }

/* Dropdown */
.has-drop { position: relative; }
.nav-drop {
  display: none; position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 6px; min-width: 230px; z-index: 10;
}
.has-drop:hover .nav-drop { display: block; animation: dropIn .15s var(--ease); }
.has-drop:hover .chev { transform: rotate(180deg); }
@keyframes dropIn { from { opacity:0; transform:translateX(-50%) translateY(-6px); } to { opacity:1; transform:translateX(-50%) translateY(0); } }
.nd-link {
  display: block; padding: 9px 14px; border-radius: var(--radius);
  font-size: .845rem; color: var(--gray-700); font-weight: 500;
  transition: all var(--tr);
}
.nd-link:hover { background: var(--blue-lt); color: var(--navy); }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nl-cek {
  font-size: .845rem; font-weight: 500; color: var(--gray-500);
  padding: 8px 12px; border-radius: var(--radius); transition: all var(--tr);
}
.nl-cek:hover { color: var(--navy); background: var(--blue-lt); }
.nav-cta-btn {
  background: var(--red-lt); color: var(--white);
  font-weight: 700; font-size: .845rem;
  padding: 9px 22px; border-radius: var(--pill);
  box-shadow: 0 2px 12px rgba(231,76,60,.3);
  transition: all var(--tr); white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--red); box-shadow: 0 4px 20px rgba(231,76,60,.45); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--gray-200); padding: 9px 10px;
  border-radius: var(--radius); cursor: pointer;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all var(--tr); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  /* fallback jika gambar gagal load */
  background: linear-gradient(135deg,#050c2e 0%,#0a1f6e 50%,#1256a8 100%);
}

/* Banner image — tampil langsung tanpa JS */
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background:
    url('/public/images/banner.png') center top / cover no-repeat;
  opacity: 1;
}

/* Gradient overlay: kiri gelap (teks terbaca), kanan terbuka (foto siswa terlihat) */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(4,10,35,1.00)   0%,
    rgba(6,20,65,0.97)  15%,
    rgba(10,35,95,0.93) 30%,
    rgba(12,50,120,0.82) 45%,
    rgba(10,40,100,0.55) 60%,
    rgba(5,20,50,0.20)   78%,
    rgba(0,0,0,0.05)    100%
  );
}

/* Mobile */
@media (max-width:1024px) {
  .hero { min-height: auto; padding-top: 0; }
  .hero-bg-img { background-position: 65% top; }
}
@media (max-width:768px) {
  .hero-bg-img { background-position: 72% top; }
}

/* Dekorasi geometri — background visual */
.hero-decor { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hd-circle {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
}
.hd-c1 { width: 600px; height: 600px; right: -100px; top: -160px; }
.hd-c2 { width: 380px; height: 380px; right: 80px;  top: 0; }
.hd-c3 { width: 200px; height: 200px; right: 200px; bottom: 40px; }
.hd-dot {
  position: absolute; background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.hd-d1 { width: 300px; height: 300px; left: -80px; bottom: -60px; }
.hd-d2 { width: 160px; height: 160px; left: 55%;  top: -40px; }

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 55% 45%;
  align-items: center; gap: 0;
  max-width: 1160px; margin: 0 auto;
  padding: 100px 28px 80px;
  width: 100%; min-height: 100vh;
}

/* LEFT: Text */
.hero-text {}

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88); padding: 6px 16px;
  border-radius: var(--pill); font-size: .74rem; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase; margin-bottom: 20px;
}
.hero-label-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; flex-shrink: 0;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-spmb-txt {
  font-size: clamp(3.4rem,8vw,6.2rem);
  font-weight: 900; color: #fff; line-height: .92;
  letter-spacing: -2px; margin-bottom: 6px;
}
.hero-spmb-txt span {
  color: var(--amber);
  display: block;
}

.hero-sub-label {
  font-size: .82rem; font-weight: 500;
  color: rgba(255,255,255,.6); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 16px;
}

.hero-school-nm {
  font-size: clamp(1.35rem,3.2vw,2rem);
  font-weight: 800; color: #fff;
  line-height: 1.2; letter-spacing: -.4px;
  text-transform: uppercase; margin-bottom: 16px;
}
.hero-school-nm strong { color: var(--amber); }

.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px;
}
.hero-tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.82); padding: 5px 13px;
  border-radius: var(--pill); font-size: .78rem; font-weight: 500;
}

.hero-btns {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px;
}
.btn-hero-main {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red-lt); color: var(--white);
  font-weight: 700; font-size: .92rem;
  padding: 13px 30px; border-radius: var(--pill);
  box-shadow: 0 4px 20px rgba(231,76,60,.4);
  transition: all var(--tr);
}
.btn-hero-main:hover { background: var(--red); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(231,76,60,.5); }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; color: #fff;
  font-weight: 600; font-size: .88rem;
  padding: 12px 24px; border-radius: var(--pill);
  border: 1.5px solid rgba(255,255,255,.38);
  transition: all var(--tr);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
}
.hero-meta-item {
  display: flex; flex-direction: column;
}
.hmi-num  { font-size: 1.6rem; font-weight: 900; color: var(--amber); line-height: 1; }
.hmi-lbl  { font-size: .7rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .6px; margin-top: 2px; }

/* RIGHT: Visual Cards */
.hero-visual {
  display: flex; flex-direction: column; gap: 14px;
}
.hv-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  transition: all var(--tr);
}
.hv-card:hover { background: rgba(255,255,255,.14); transform: translateX(5px); }
.hvc-top {
  display: flex; align-items: center; gap: 13px; margin-bottom: 8px;
}
.hvc-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.12); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.hvc-name { font-size: .9rem; font-weight: 700; color: #fff; }
.hvc-cat  { font-size: .72rem; color: rgba(255,255,255,.55); margin-top: 2px; font-weight: 500; }
.hvc-bar  {
  height: 3px; background: rgba(255,255,255,.12); border-radius: 3px;
  overflow: hidden;
}
.hvc-bar-fill {
  height: 100%; border-radius: 3px; background: var(--amber);
  transition: width 1.2s ease;
}

.hv-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hvb-item {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: all var(--tr);
}
.hvb-item:hover { background: rgba(255,255,255,.15); }
.hvbi-num { font-size: 1.5rem; font-weight: 900; color: var(--amber); line-height: 1; }
.hvbi-lbl { font-size: .72rem; color: rgba(255,255,255,.58); margin-top: 4px; line-height: 1.4; }

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

/* ── PROMO BAR ───────────────────────────────────────────────── */
.promo-bar {
  background: var(--red-lt);
  padding: 13px 0; text-align: center;
  font-size: .84rem; font-weight: 600; color: var(--white);
  letter-spacing: .2px;
}
.promo-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ── SECTION COMMONS ─────────────────────────────────────────── */
.section { padding: 88px 0; }
.section-sm { padding: 64px 0; }
.bg-white { background: var(--white); }
.bg-light { background: var(--off-white); }
.bg-navy  { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%); }

.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head.left { text-align: left; }
.sec-eyebrow {
  display: inline-block;
  color: var(--red-lt); font-size: .74rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px;
}
.sec-eyebrow.white { color: rgba(255,255,255,.65); }
.sec-title {
  font-size: clamp(1.65rem,3.2vw,2.3rem); font-weight: 800;
  color: var(--navy); line-height: 1.2; letter-spacing: -.5px; margin-bottom: 14px;
}
.sec-title.white { color: #fff; }
.sec-desc { font-size: .93rem; color: var(--gray-500); max-width: 540px; margin: 0 auto; line-height: 1.78; }
.sec-desc.white { color: rgba(255,255,255,.68); }
.sec-line {
  display: flex; justify-content: center; gap: 5px; align-items: center; margin-top: 18px;
}
.sec-line span { display: block; height: 3px; border-radius: 2px; }
.sec-line .l1, .sec-line .l3 { width: 20px; background: var(--gray-200); }
.sec-line .l2 { width: 44px; background: var(--red-lt); }
.sec-line.left { justify-content: flex-start; }

/* ── WHY CARDS ───────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 20px; }
.why-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow-xs); transition: all var(--tr); position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--red-lt); transform: scaleX(0); transform-origin: center; transition: transform var(--tr);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-card:hover::after { transform: scaleX(1); }
.why-ico {
  width: 60px; height: 60px; border-radius: var(--radius-md);
  background: var(--blue-lt); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.7rem; transition: all var(--tr);
}
.why-card:hover .why-ico { background: var(--navy); }
.why-card h3 { font-size: .98rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p  { font-size: .84rem; color: var(--gray-500); line-height: 1.72; }

/* ── PROGRAM CARDS ───────────────────────────────────────────── */
.prg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 22px; }
.prg-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--tr);
}
.prg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.prg-head {
  height: 120px; display: flex; align-items: center; padding: 24px 28px;
  position: relative; overflow: hidden; justify-content: space-between;
}
.prg-head::after {
  content: ''; position: absolute; right: -20px; bottom: -20px;
  width: 90px; height: 90px; border-radius: 50%; background: rgba(255,255,255,.1);
}
.prg-ico {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  background: rgba(255,255,255,.18); border: 2px solid rgba(255,255,255,.28);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; position: relative; z-index: 1; transition: transform var(--tr);
}
.prg-card:hover .prg-ico { transform: scale(1.1) rotate(6deg); }
.prg-badge {
  background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.28);
  color: #fff; padding: 4px 12px; border-radius: var(--pill);
  font-size: .7rem; font-weight: 700; letter-spacing: .4px;
  position: relative; z-index: 1;
}
.prg-body { padding: 24px 28px; }
.prg-body h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -.2px; }
.prg-body p  { font-size: .84rem; color: var(--gray-500); line-height: 1.72; margin-bottom: 16px; }
.prg-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--red-lt); font-size: .82rem; font-weight: 700; transition: gap var(--tr);
}
.prg-link:hover { gap: 10px; }

/* ── BEASISWA ────────────────────────────────────────────────── */
.bea-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 16px; }
.bea-card {
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px); border-radius: var(--radius-lg);
  padding: 28px 22px; text-align: center; color: #fff; transition: all var(--tr);
}
.bea-card:hover { background: rgba(255,255,255,.15); transform: translateY(-4px); }
.bea-ico {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 14px; transition: all var(--tr);
}
.bea-card:hover .bea-ico { background: rgba(255,255,255,.22); transform: scale(1.08); }
.bea-card h4 { font-size: .94rem; font-weight: 700; margin-bottom: 6px; }
.bea-card p  { font-size: .82rem; opacity: .74; line-height: 1.65; }

/* ── BIAYA SPLIT ─────────────────────────────────────────────── */
.biaya-wrap {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 0;
  border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.biaya-left {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 48px 44px; color: #fff; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.biaya-left::before {
  content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,.04); top: -80px; right: -80px;
}
.bl-eyebrow { font-size: .72rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.bl-price   { font-size: clamp(2.4rem,5vw,3.4rem); font-weight: 900; color: var(--amber); letter-spacing: -1px; line-height: 1; margin-bottom: 8px; }
.bl-price sup { font-size: .95rem; vertical-align: super; font-weight: 700; }
.bl-note    { font-size: .84rem; color: rgba(255,255,255,.65); margin-bottom: 24px; line-height: 1.7; }
.biaya-right { background: var(--off-white); padding: 36px 36px; display: flex; flex-direction: column; gap: 12px; justify-content: center; }
.bonus-row {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 14px 18px;
  transition: all var(--tr); cursor: default;
}
.bonus-row:hover { border-color: var(--red-lt); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.br-ico { font-size: 1.4rem; flex-shrink: 0; }
.br-txt { display: flex; flex-direction: column; }
.br-title { font-size: .88rem; font-weight: 700; color: var(--navy); }
.br-desc  { font-size: .76rem; color: var(--gray-400); margin-top: 1px; }

/* ── TIMELINE ────────────────────────────────────────────────── */
.timeline-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 860px; margin: 0 auto 32px; }
.tl-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-xs); transition: all var(--tr);
}
.tl-card.active { border-color: var(--red-lt); box-shadow: 0 0 0 1px var(--red-lt), var(--shadow-sm); }
.tl-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tl-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gray-100); color: var(--gray-500); font-weight: 800;
  font-size: .96rem; margin-bottom: 14px;
}
.tl-card.active .tl-num { background: var(--red-lt); color: #fff; }
.tl-wave {
  display: inline-block; padding: 3px 12px; border-radius: var(--pill);
  font-size: .72rem; font-weight: 700; letter-spacing: .3px;
  background: var(--blue-lt); color: var(--navy); margin-bottom: 8px;
}
.tl-card.active .tl-wave { background: var(--red-pale); color: var(--red-lt); }
.tl-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.tl-card p  { font-size: .83rem; color: var(--gray-500); margin-bottom: 14px; line-height: 1.72; }
.tl-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .74rem; font-weight: 700; padding: 5px 13px;
  border-radius: var(--pill); background: var(--gray-100); color: var(--gray-500);
  border: 1px solid var(--gray-200);
}
.tl-card.active .tl-status {
  background: var(--red-lt); color: #fff; border-color: transparent;
  box-shadow: 0 2px 10px rgba(231,76,60,.3);
}
.tl-offline {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 22px 28px;
  max-width: 860px; margin: 0 auto; box-shadow: var(--shadow-xs); flex-wrap: wrap;
}
.tl-off-ico {
  width: 48px; height: 48px; background: var(--blue-lt);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; flex-shrink: 0;
}
.tl-off-text h4 { font-size: .93rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.tl-off-text p  { font-size: .83rem; color: var(--gray-500); }

/* ── PERSYARATAN ─────────────────────────────────────────────── */
.syarat-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.syarat-items  { display: flex; flex-direction: column; gap: 12px; }
.sy-item {
  display: flex; align-items: flex-start; gap: 15px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); padding: 16px 18px;
  box-shadow: var(--shadow-xs); transition: all var(--tr);
}
.sy-item:hover { border-color: var(--navy); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.sy-num {
  width: 38px; height: 38px; border-radius: var(--radius);
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800; flex-shrink: 0;
}
.sy-text strong { font-size: .92rem; color: var(--navy); display: block; margin-bottom: 2px; font-weight: 700; }
.sy-text span   { font-size: .79rem; color: var(--gray-400); }

.online-card {
  background: var(--white); border: 1.5px solid var(--navy);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.online-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red-lt); }
.online-card h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.online-card p  { font-size: .84rem; color: var(--gray-500); margin-bottom: 12px; line-height: 1.7; }
.fmt-list { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.fmt-tag {
  background: var(--navy); color: #fff;
  padding: 3px 12px; border-radius: var(--pill);
  font-size: .72rem; font-weight: 700; letter-spacing: .4px;
}
.online-card ul { margin-bottom: 14px; }
.online-card ul li {
  display: flex; align-items: center; gap: 8px;
  font-size: .84rem; color: var(--gray-500); padding: 5px 0;
}
.online-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; }
.online-note {
  font-size: .79rem; font-weight: 600; color: var(--navy);
  background: var(--blue-lt); padding: 9px 14px; border-radius: var(--radius); margin-top: 12px;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px,1fr)); gap: 18px; }
.testi-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 26px 22px;
  box-shadow: var(--shadow-xs); transition: all var(--tr); position: relative;
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testi-card::before {
  content: open-quote; position: absolute; top: 14px; right: 18px;
  font-size: 3.5rem; color: var(--gray-200); line-height: 1; font-family: Georgia, serif;
}
.testi-av {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; margin-bottom: 14px;
  border: 3px solid var(--blue-lt);
}
.testi-q  { font-size: .85rem; color: var(--gray-500); line-height: 1.76; margin-bottom: 16px; font-style: italic; }
.testi-nm { font-size: .88rem; font-weight: 700; color: var(--navy); }
.testi-rl { font-size: .74rem; color: var(--red-lt); font-weight: 600; margin-top: 2px; }
.testi-badge {
  display: inline-block; background: var(--red-pale); color: var(--red-lt);
  border: 1px solid rgba(231,76,60,.2); padding: 3px 10px;
  border-radius: var(--pill); font-size: .71rem; font-weight: 700; margin-top: 8px;
}

/* ── PARTNER ─────────────────────────────────────────────────── */
.partner-wrap {
  display: flex; align-items: flex-start; gap: 24px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 36px 40px;
  max-width: 800px; margin: 0 auto; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden; flex-wrap: wrap;
}
.partner-wrap::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--navy) 0%, var(--amber) 100%); }
.partner-ico { font-size: 3rem; flex-shrink: 0; }
.pw-lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray-400); margin-bottom: 4px; }
.pw-name { font-size: 1.18rem; font-weight: 800; color: var(--navy); margin-bottom: 7px; letter-spacing: -.3px; }
.pw-desc { font-size: .84rem; color: var(--gray-500); line-height: 1.72; }

/* ── STEPS ───────────────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 0; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 36px; left: 8%; right: 8%;
  height: 1.5px; background: var(--gray-200); z-index: 0;
}
.step-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 14px; position: relative; z-index: 1;
}
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; box-shadow: var(--shadow-xs); transition: all var(--tr);
}
.step-circle span {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; transition: all var(--tr);
}
.step-item:hover .step-circle { border-color: var(--red-lt); }
.step-item:hover .step-circle span { background: var(--red-lt); transform: scale(1.08); }
.step-item h4 { font-size: .93rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.step-item p  { font-size: .82rem; color: var(--gray-400); line-height: 1.72; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); overflow: hidden; transition: all var(--tr);
}
.faq-item.open { border-color: var(--navy); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 22px; cursor: pointer; gap: 12px;
  font-size: .9rem; font-weight: 600; color: var(--gray-700); transition: all var(--tr);
}
.faq-q:hover { color: var(--navy); background: var(--off-white); }
.faq-item.open .faq-q { color: var(--navy); background: var(--blue-lt); }
.faq-plus {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center;
  justify-content: center; font-size: .8rem; font-weight: 700;
  color: var(--gray-500); flex-shrink: 0; transition: all var(--tr);
}
.faq-item.open .faq-plus { background: var(--navy); color: #fff; transform: rotate(45deg); }
.faq-a {
  display: none; padding: 14px 22px 18px;
  font-size: .86rem; color: var(--gray-500); line-height: 1.78;
  border-top: 1px solid var(--gray-200);
}
.faq-a a { color: var(--red-lt); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.faq-item.open .faq-a { display: block; animation: slideIn .2s var(--ease); }
@keyframes slideIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }

/* ── CTA ─────────────────────────────────────────────────────── */
.cta-sec { position: relative; padding: 90px 0; overflow: hidden; }
.cta-bg  { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%); }
.cta-bg::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='%23fff' fill-opacity='0.035'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner { position: relative; z-index: 1; text-align: center; color: #fff; }
.cta-label {
  display: inline-block;
  background: rgba(231,76,60,.3); border: 1px solid rgba(231,76,60,.5);
  color: #fff; padding: 5px 18px; border-radius: var(--pill);
  font-size: .73rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 18px;
}
.cta-inner h2 { font-size: clamp(1.7rem,4vw,2.7rem); font-weight: 900; letter-spacing: -.5px; margin-bottom: 12px; line-height: 1.2; }
.cta-inner p  { font-size: .94rem; opacity: .78; margin-bottom: 32px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 16px; }
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red-lt); color: #fff; font-weight: 700; font-size: .94rem;
  padding: 13px 36px; border-radius: var(--pill);
  box-shadow: 0 4px 18px rgba(231,76,60,.4); transition: all var(--tr);
}
.btn-cta-primary:hover { background: var(--red); box-shadow: 0 8px 28px rgba(231,76,60,.5); transform: translateY(-2px); }
.btn-cta-wa {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg,#1ebe57,#25D366); color: #fff;
  font-weight: 700; font-size: .9rem; padding: 12px 28px;
  border-radius: var(--pill); transition: all var(--tr);
}
.btn-cta-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.cta-note { font-size: .74rem; opacity: .5; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: var(--gray-900); color: rgba(255,255,255,.68); padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 40px; margin-bottom: 48px;
}
.fb-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.fb-logo-box {
  width: 44px; height: 44px; background: var(--navy);
  border-radius: var(--radius-md); overflow: hidden; border: 1.5px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fb-logo-box img { width: 100%; height: 100%; object-fit: contain; }
.fb-school-name  { font-size: .98rem; font-weight: 800; color: #fff; line-height: 1.15; }
.fb-school-name span { color: var(--amber); display: block; }
.fb-about { font-size: .8rem; line-height: 1.75; color: rgba(255,255,255,.52); margin-bottom: 14px; }
.fb-tagline {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(243,156,18,.1); border: 1px solid rgba(243,156,18,.22);
  color: var(--amber); padding: 4px 13px; border-radius: var(--pill);
  font-size: .75rem; font-weight: 600;
}
.footer-col h5 {
  color: #fff; font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px;
}
.foot-links { display: flex; flex-direction: column; gap: 7px; }
.foot-links a {
  font-size: .8rem; color: rgba(255,255,255,.52); transition: all var(--tr);
  display: flex; align-items: center; gap: 5px;
}
.foot-links a:hover { color: var(--amber); padding-left: 4px; }
.foot-contact { display: flex; flex-direction: column; gap: 9px; }
.foot-contact li { font-size: .8rem; color: rgba(255,255,255,.56); display: flex; align-items: flex-start; gap: 7px; line-height: 1.55; }
.foot-contact a:hover { color: var(--amber); }
.foot-social { display: flex; gap: 8px; margin-top: 14px; }
.foot-social a {
  width: 34px; height: 34px; border-radius: var(--radius);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: all var(--tr);
}
.foot-social a:hover { background: var(--navy); transform: translateY(-2px); }
.foot-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: linear-gradient(135deg,#1ebe57,#25D366); color: #fff;
  font-weight: 700; font-size: .82rem; padding: 10px 18px;
  border-radius: var(--pill); margin-top: 13px; transition: all var(--tr);
}
.foot-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,211,102,.4); }

/* Support bar */
.footer-support {
  border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0;
}
.fs-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.fs-copy { font-size: .76rem; color: rgba(255,255,255,.32); }
.fs-brand {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(30,107,196,.25); border: 1px solid rgba(30,107,196,.4);
  padding: 6px 16px; border-radius: var(--pill); font-size: .79rem;
  font-weight: 700; color: var(--amber); transition: all var(--tr);
}
.fs-brand span { color: rgba(255,255,255,.45); font-weight: 400; }
.fs-brand:hover { background: rgba(30,107,196,.4); transform: translateY(-1px); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 24px; border-radius: var(--pill); font-weight: 700;
  font-size: .88rem; border: 1.5px solid transparent; cursor: pointer;
  transition: all var(--tr);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 3px 12px rgba(13,59,122,.25); }
.btn-primary:hover { background: var(--navy-mid); box-shadow: 0 6px 20px rgba(13,59,122,.38); }
.btn-red { background: var(--red-lt); color: #fff; box-shadow: 0 3px 12px rgba(231,76,60,.25); }
.btn-red:hover { background: var(--red); box-shadow: 0 6px 20px rgba(231,76,60,.4); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--blue-lt); }
.btn-white { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-white:hover { background: var(--amber); }
.btn-wa { background: linear-gradient(135deg,#1ebe57,#25D366); color: #fff; }
.btn-wa:hover { box-shadow: 0 6px 18px rgba(37,211,102,.4); }
.btn-gold { background: linear-gradient(135deg,#f39c12,#f1c40f); color: var(--navy); }
.btn-lg { padding: 13px 32px; font-size: .93rem; }
.btn-xl { padding: 15px 40px; font-size: .98rem; }
.btn-block { width: 100%; }
.mt-2 { margin-top: 16px; }

/* ── WA FLOAT ────────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 1000;
  background: linear-gradient(135deg,#18be53,#25D366); color: #fff;
  border-radius: var(--pill); padding: 12px 20px 12px 15px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 22px rgba(37,211,102,.42); font-weight: 700; font-size: .84rem;
  transition: all var(--tr);
}
.wa-float:hover { transform: scale(1.05) translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,.55); }

/* ── PWA ─────────────────────────────────────────────────────── */
.pwa-banner { display:none; position:fixed; bottom:0; left:0; right:0; z-index:998; background:var(--navy); color:#fff; padding:12px 20px; }
.pwa-banner.show { display:block; animation:slideUp .28s var(--ease); }
@keyframes slideUp { from{transform:translateY(100%)} to{transform:translateY(0)} }
.pwa-banner-inner { display:flex; align-items:center; justify-content:space-between; gap:12px; max-width:640px; margin:0 auto; font-size:.84rem; flex-wrap:wrap; }
.btn-pwa-install { background:var(--amber); color:var(--navy); border:none; padding:7px 18px; border-radius:var(--pill); font-weight:700; font-size:.8rem; }
.btn-pwa-dismiss { background:transparent; color:rgba(255,255,255,.5); border:none; padding:7px; cursor:pointer; }

/* ── PAGE HERO (inner) ───────────────────────────────────────── */
.page-hero { background:linear-gradient(135deg,var(--navy-dark),var(--navy),var(--navy-mid)); color:#fff; text-align:center; padding:58px 20px; position:relative; overflow:hidden; }
.page-hero::after { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); pointer-events:none; }
.page-hero-success { background:linear-gradient(135deg,#1a4731,#2e7d32); }
.page-hero-icon,.success-anim { position:relative; z-index:1; font-size:2.8rem; margin-bottom:12px; }
.success-anim { animation:pop .5s cubic-bezier(.34,1.56,.64,1); }
@keyframes pop { 0%{transform:scale(0);opacity:0}100%{transform:scale(1);opacity:1} }
.page-hero h1 { font-size:clamp(1.5rem,4vw,2.2rem); font-weight:800; margin-bottom:8px; position:relative; z-index:1; letter-spacing:-.3px; }
.page-hero p  { opacity:.78; font-size:.93rem; position:relative; z-index:1; }

/* ── FORM ────────────────────────────────────────────────────── */
.form-container { max-width:780px; }
.step-indicator { display:flex; align-items:center; justify-content:center; margin-bottom:30px; padding:15px 18px; background:var(--white); border:1px solid var(--gray-200); border-radius:var(--radius-lg); box-shadow:var(--shadow-xs); }
.step-dot { display:flex; flex-direction:column; align-items:center; gap:5px; }
.step-dot span { width:36px; height:36px; border-radius:50%; background:var(--gray-100); color:var(--gray-400); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.84rem; border:2px solid var(--gray-200); transition:all var(--tr); }
.step-dot.active span { background:var(--navy); color:#fff; border-color:var(--navy); box-shadow:0 0 0 4px rgba(13,59,122,.12); }
.step-dot.done span  { background:var(--green); color:#fff; border-color:var(--green); }
.step-dot label { font-size:.66rem; color:var(--gray-400); font-weight:600; white-space:nowrap; }
.step-dot.active label { color:var(--navy); font-weight:700; }
.step-line { flex:1; height:2px; background:var(--gray-200); min-width:28px; margin:0 2px; }
.form-step { display:none; }
.form-step.active { display:block; }
.form-card { background:var(--white); border:1px solid var(--gray-200); border-radius:var(--radius-lg); padding:30px; box-shadow:var(--shadow-sm); margin-bottom:14px; }
.form-card-header { display:flex; align-items:center; gap:11px; margin-bottom:22px; padding-bottom:16px; border-bottom:1px solid var(--gray-100); }
.form-card-icon { font-size:1.7rem; }
.form-card-header h3 { font-size:1.08rem; font-weight:800; color:var(--navy); }
.form-group { margin-bottom:16px; }
.form-group label { display:block; font-size:.82rem; font-weight:600; color:var(--gray-700); margin-bottom:5px; }
.required { color:var(--red-lt); }
.optional  { color:var(--gray-400); font-weight:400; font-size:.78rem; }
.form-group input,.form-group select,.form-group textarea { width:100%; padding:10px 14px; border:1.5px solid var(--gray-200); border-radius:var(--radius); font-family:var(--font); font-size:.89rem; color:var(--text); background:var(--white); transition:all var(--tr); }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { outline:none; border-color:var(--blue); box-shadow:0 0 0 3px rgba(30,107,196,.1); }
.form-group textarea { resize:vertical; min-height:82px; line-height:1.6; }
.form-group.has-error input,.form-group.has-error select,.form-group.has-error textarea { border-color:var(--red-lt); background:#fff8f7; }
.error-msg { display:block; color:var(--red-lt); font-size:.77rem; margin-top:4px; font-weight:500; }
.form-hint { display:block; color:var(--gray-400); font-size:.75rem; margin-top:4px; }
.form-hint a { color:var(--navy); text-decoration:underline; }
.form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.radio-group { display:flex; gap:14px; margin-top:5px; flex-wrap:wrap; }
.radio-label { display:flex; align-items:center; gap:7px; cursor:pointer; font-size:.87rem; font-weight:500; }
.input-with-check { position:relative; }
.nisn-status { position:absolute; right:12px; top:50%; transform:translateY(-50%); font-size:.77rem; font-weight:600; white-space:nowrap; }
.nisn-status.checking { color:var(--gray-400); }
.nisn-status.available { color:var(--green); }
.nisn-status.taken     { color:var(--red-lt); }
.program-choice-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-top:6px; }
.program-choice { display:flex; flex-direction:column; align-items:center; gap:6px; border:1.5px solid var(--gray-200); border-radius:var(--radius-md); padding:14px 8px; cursor:pointer; transition:all var(--tr); text-align:center; }
.program-choice input[type=radio] { display:none; }
.program-choice.selected,.program-choice:has(input:checked) { border-color:var(--navy); background:var(--blue-lt); box-shadow:0 0 0 2px rgba(13,59,122,.1); }
.program-choice:hover { border-color:var(--blue); background:var(--blue-lt); }
.choice-icon { font-size:1.8rem; }
.choice-name { font-size:.73rem; font-weight:700; color:var(--navy); line-height:1.3; }
.upload-info-box { background:var(--blue-lt); border:1px solid rgba(30,107,196,.15); border-radius:var(--radius); padding:10px 15px; margin-bottom:14px; font-size:.81rem; color:var(--navy); font-weight:500; }
.file-hint { font-size:.72rem; color:var(--gray-400); font-weight:400; margin-left:4px; }
.file-drop-zone { border:1.5px dashed var(--gray-300); border-radius:var(--radius-lg); padding:30px 16px; text-align:center; cursor:pointer; transition:all var(--tr); position:relative; overflow:hidden; background:var(--off-white); }
.file-drop-zone:hover,.file-drop-zone.drag-over { border-color:var(--blue); background:var(--blue-lt); box-shadow:0 0 0 3px rgba(30,107,196,.08); }
.file-drop-zone.file-selected { border-color:var(--green); border-style:solid; background:rgba(39,174,96,.04); }
.file-drop-zone input[type=file] { position:absolute; inset:0; opacity:0; cursor:pointer; z-index:2; }
.drop-content { pointer-events:none; }
.drop-icon { font-size:2.2rem; display:block; margin-bottom:8px; }
.drop-content p     { font-size:.86rem; color:var(--gray-600); font-weight:600; margin-bottom:4px; }
.drop-content small { color:var(--gray-400); font-size:.74rem; }
.drop-content.has-file p { color:var(--green); }
.foto-zone { border-color:#7c3aed; }
.foto-zone:hover { border-color:#6d28d9; background:#f5f3ff; }
.foto-preview-wrap { text-align:center; padding:6px; }
.foto-preview-wrap img { max-width:138px; max-height:138px; border-radius:var(--radius); border:2px solid var(--gray-200); margin:0 auto 5px; }
.foto-name { font-size:.76rem; color:var(--gray-400); }
.form-note { background:#fefce8; border:1px solid #fde68a; border-radius:var(--radius); padding:12px 16px; }
.form-note strong { color:#92400e; }
.form-note ul { margin-top:6px; padding-left:17px; list-style:disc; }
.form-note ul li { font-size:.81rem; color:#78350f; margin-bottom:3px; }
.step-nav { display:flex; justify-content:space-between; align-items:center; margin-top:6px; }
.review-card { border:1.5px solid var(--green); }
.review-table { width:100%; border-collapse:collapse; }
.review-table tr td { padding:8px 0; border-bottom:1px solid var(--gray-100); font-size:.84rem; }
.review-table tr td:first-child { color:var(--gray-400); font-weight:600; width:166px; font-size:.79rem; }

/* Alerts */
.alert { padding:11px 16px; border-radius:var(--radius); margin-bottom:14px; font-size:.86rem; border-left:3px solid; }
.alert-danger  { background:rgba(183,28,28,.05); border-color:var(--red-lt); color:var(--red-lt); }
.alert-success { background:rgba(39,174,96,.05); border-color:var(--green); color:var(--green); }
.alert-info    { background:rgba(30,107,196,.05); border-color:var(--blue); color:var(--blue); }

/* Success & check */
.success-card { background:var(--white); border-radius:var(--radius-xl); box-shadow:var(--shadow-xl); border:1px solid var(--gray-200); overflow:hidden; }
.success-card-header { background:linear-gradient(135deg,#1a4731,#2e7d32); color:#fff; padding:24px 30px; }
.success-card-header h3 { font-size:1.18rem; font-weight:800; margin-bottom:4px; }
.success-card-header p  { opacity:.8; }
.reg-detail-table { padding:0 30px; }
.reg-row { display:flex; border-bottom:1px solid var(--gray-100); padding:12px 0; gap:14px; flex-wrap:wrap; align-items:center; }
.reg-key  { font-size:.78rem; font-weight:600; color:var(--gray-400); min-width:148px; flex-shrink:0; }
.reg-val  { font-size:.88rem; color:var(--text); }
.reg-nisn { font-size:1.1rem; font-weight:900; color:var(--navy); font-family:monospace; letter-spacing:1px; }
.success-next { padding:18px 30px; background:var(--off-white); }
.success-next h4 { font-size:.93rem; font-weight:700; color:var(--navy); margin-bottom:10px; }
.success-next ol { padding-left:17px; }
.success-next ol li { font-size:.83rem; color:var(--gray-500); margin-bottom:6px; line-height:1.7; }
.success-actions { padding:18px 30px; display:flex; gap:10px; flex-wrap:wrap; }
.check-form-card { background:var(--white); border-radius:var(--radius-lg); padding:30px; box-shadow:var(--shadow-sm); margin-bottom:18px; border:1px solid var(--gray-200); }
.check-result { animation:fadeUp .32s var(--ease); }
@keyframes fadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.result-found,.result-not-found { background:var(--white); border-radius:var(--radius-lg); padding:24px; box-shadow:var(--shadow-sm); border:1px solid var(--gray-200); }
.result-header { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.result-icon   { font-size:1.8rem; }
.result-header h3 { font-size:1.08rem; font-weight:700; color:var(--navy); }
.status-banner { padding:11px 16px; border-radius:var(--radius); margin-bottom:16px; font-size:.86rem; border:1px solid; }
.status-menunggu-verifikasi { background:rgba(30,107,196,.05); border-color:rgba(30,107,196,.25); color:var(--blue); }
.status-diverifikasi { background:rgba(243,156,18,.05); border-color:rgba(243,156,18,.25); color:var(--amber); }
.status-diterima { background:rgba(39,174,96,.05); border-color:rgba(39,174,96,.25); color:var(--green); }
.status-ditolak  { background:rgba(183,28,28,.05); border-color:rgba(183,28,28,.25); color:var(--red-lt); }
.result-not-found { text-align:center; }
.result-icon-lg { font-size:3.4rem; margin-bottom:12px; }
.result-not-found h3 { font-size:1.18rem; font-weight:700; color:var(--gray-700); margin-bottom:10px; }
.result-not-found p { color:var(--gray-400); margin-bottom:20px; }
.check-actions { display:flex; gap:9px; flex-wrap:wrap; margin-top:16px; }
.badge { display:inline-block; padding:3px 11px; border-radius:var(--pill); font-size:.72rem; font-weight:700; }
.badge-pending { background:rgba(30,107,196,.08); color:var(--blue); }
.badge-success { background:rgba(39,174,96,.08); color:var(--green); }
.badge-danger  { background:rgba(183,28,28,.08); color:var(--red-lt); }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
[data-aos] { opacity:0; transform:translateY(20px); transition:opacity .55s var(--ease),transform .55s var(--ease); }
[data-aos].aos-visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .hero { min-height:auto; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1/-1; }
  .biaya-wrap { grid-template-columns:1fr; }
}
@media (max-width:768px) {
  :root { --nav-h:64px; }
  .topbar { display:none; }
  .nav-menu { display:none; position:absolute; top:var(--nav-h); left:0; right:0; background:var(--white); border:1px solid var(--gray-200); flex-direction:column; padding:8px 10px 14px; gap:2px; box-shadow:var(--shadow-lg); z-index:100; }
  .nav-menu.open { display:flex; }
  .hamburger { display:flex; }
  .nl { width:100%; }
  .nav-cta-btn { padding:8px 16px; font-size:.8rem; }
  .nl-cek { display:none; }
  .nav-drop { position:static; transform:none; box-shadow:none; border:none; padding:2px 0 2px 14px; background:var(--off-white); border-radius:0; display:block!important; }
  .has-drop:not(:hover) .nav-drop { display:none!important; }
  .section,.section-sm { padding:56px 0; }
  .hero-inner { padding:52px 22px 56px; }
  .hero-btns { flex-direction:column; align-items:flex-start; }
  .btn-hero-main,.btn-hero-ghost { width:100%; justify-content:center; }
  .timeline-cards { grid-template-columns:1fr; }
  .syarat-layout  { grid-template-columns:1fr; }
  .footer-grid    { grid-template-columns:1fr; }
  .success-actions,.check-actions { flex-direction:column; }
  .reg-key { min-width:105px; }
  .form-card { padding:20px 15px; }
  .reg-detail-table { padding:0 15px; }
  .success-next,.success-actions { padding:14px; }
  .form-row-2 { grid-template-columns:1fr; }
  .program-choice-grid { grid-template-columns:1fr; }
  .wa-float span { display:none; }
  .wa-float { padding:13px; border-radius:50%; }
  .steps-grid::before { display:none; }
  .cta-btns { flex-direction:column; align-items:center; }
  .btn-cta-primary,.btn-cta-wa { width:100%; justify-content:center; }
  .biaya-left { padding:32px 22px; }
  .biaya-right { padding:24px 22px; }
  .step-line { min-width:14px; }
  .testi-grid { grid-template-columns:1fr 1fr; }
  .fs-inner { flex-direction:column; text-align:center; }
}
@media (max-width:480px) {
  .why-grid { grid-template-columns:1fr 1fr; }
  .bea-grid { grid-template-columns:1fr 1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .prg-grid { grid-template-columns:1fr; }
  .step-indicator { padding:10px; }
  .step-dot label { display:none; }
  .step-dot span { width:34px; height:34px; font-size:.78rem; }
  .step-line { min-width:10px; }
  .hero-meta { gap:12px; }
  .hero-tags { gap:6px; }
  .cta-btns { width:100%; }
}
