/* ================================================================
   LSP UNDIRA — style.css
   Warna: Biru Navy #1B3A8C · Hijau #2E8B3A · Putih · Abu
   Font : Merriweather (heading) · Source Sans 3 (body)
   ================================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --blue:        #1B3A8C;
  --blue-dark:   #122970;
  --blue-mid:    #234CB8;
  --blue-light:  #3D68D8;
  --blue-pale:   #EEF2FB;
  --green:       #2E8B3A;
  --green-dark:  #1F6028;
  --green-mid:   #3AAD48;
  --green-pale:  #EBF7EC;
  --gold:        #C9920A;
  --gold-pale:   #FEF3DC;

  /* Neutrals */
  --white:       #FFFFFF;
  --gray-50:     #F8F9FA;
  --gray-100:    #F1F3F7;
  --gray-200:    #E2E6EF;
  --gray-300:    #C8CFDD;
  --gray-400:    #9BA7BD;
  --gray-500:    #6B7A99;
  --gray-600:    #4A5568;
  --gray-700:    #2D3748;
  --gray-800:    #1A202C;
  --gray-900:    #0F1520;

  /* Text */
  --text-main:   #1A2540;
  --text-muted:  #5A6A88;
  --text-light:  #8A98B0;

  /* Semantic */
  --success:     #2E8B3A;
  --warning:     #C9920A;
  --danger:      #C0392B;
  --info:        #1B3A8C;

  /* Shadows */
  --shadow-xs:   0 1px 3px rgba(27,58,140,.08);
  --shadow-sm:   0 2px 8px rgba(27,58,140,.10);
  --shadow-md:   0 4px 20px rgba(27,58,140,.13);
  --shadow-lg:   0 8px 40px rgba(27,58,140,.16);
  --shadow-xl:   0 16px 64px rgba(27,58,140,.20);

  /* Border Radius */
  --r-sm:        4px;
  --r-md:        8px;
  --r-lg:        12px;
  --r-xl:        20px;
  --r-2xl:       28px;
  --r-full:      9999px;

  /* Spacing */
  --nav-h:       72px;
  --topbar-h:    36px;
  --container:   1160px;

  /* Transitions */
  --ease:        cubic-bezier(.4,0,.2,1);
  --t-fast:      .15s;
  --t-base:      .25s;
  --t-slow:      .4s;
}

/* ── 2. RESET ─────────────────────────────────────────────────── */
*, *::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: 'Source Sans 3', system-ui, sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
table { border-collapse: collapse; }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.22;
  color: var(--text-main);
  font-weight: 700;
}
h4, h5, h6 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-main);
}
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }
h5 { font-size: .9rem; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted); }
p  { color: var(--text-muted); line-height: 1.75; }

strong { color: var(--text-main); font-weight: 600; }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
}
.section-label--light {
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.15);
}

/* ── 4. LAYOUT UTILITIES ──────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}
.section--gray  { background: var(--gray-50); }
.section--blue  { background: var(--blue-dark); }

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p  { max-width: 560px; margin: 0 auto; }
.section-header--white h2 { color: var(--white); }
.section-header--white p  { color: rgba(255,255,255,.7); }
.section-header--row {
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.section-header--row h2 { margin-bottom: 4px; }

/* ── 5. BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--blue);
  color: var(--white);
  font-size: .92rem;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: background var(--t-base) var(--ease),
              transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-size: .92rem;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all var(--t-base) var(--ease);
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

.btn-primary-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--white);
  color: var(--blue);
  font-size: .92rem;
  font-weight: 700;
  border-radius: var(--r-full);
  transition: all var(--t-base) var(--ease);
}
.btn-primary-white:hover { background: var(--blue-pale); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  font-size: .92rem;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all var(--t-base) var(--ease);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ── 6. TOPBAR ────────────────────────────────────────────────── */
#topbar {
  height: var(--topbar-h);
  background: var(--blue-dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  z-index: 200;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.topbar-left span {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.topbar-left span svg { width: 11px; height: 11px; opacity: .6; flex-shrink: 0; }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.topbar-right a {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--t-fast);
}
.topbar-right a:hover { color: var(--white); }
.topbar-right a svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ── 7. NAVBAR ────────────────────────────────────────────────── */
#navbar {
  position: sticky;
  top: var(--topbar-h);
  z-index: 100;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-base);
}
#navbar.scrolled { box-shadow: var(--shadow-sm); }

.navbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--t-base);
}
.navbar-brand:hover .brand-logo { opacity: .85; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-lsp {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green);
}
.brand-full {
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}
.brand-univ {
  font-size: .68rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Nav Menu */
.navbar-nav { flex: 1; }
.navbar-nav > ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
  white-space: nowrap;
}
.nav-link svg { width: 10px; height: 10px; transition: transform var(--t-base); }
.nav-link:hover { color: var(--blue); background: var(--blue-pale); }
.nav-link.active { color: var(--blue); font-weight: 600; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 12px; right: 12px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px 2px 0 0;
}

/* Dropdown */
.has-drop { position: relative; }
.has-drop:hover .nav-link svg { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--t-base) var(--ease),
              transform var(--t-base) var(--ease),
              visibility var(--t-base);
  list-style: none;
  z-index: 50;
}
.has-drop:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 9px 20px;
  font-size: .855rem;
  color: var(--text-muted);
  transition: color var(--t-fast), background var(--t-fast), padding-left var(--t-fast);
}
.dropdown li a:hover { color: var(--blue); background: var(--blue-pale); padding-left: 26px; }

/* Navbar Right */
.navbar-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.btn-register {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  background: var(--blue);
  color: var(--white);
  font-size: .84rem;
  font-weight: 600;
  border-radius: var(--r-full);
  white-space: nowrap;
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.btn-register:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; border-radius: var(--r-sm); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: transform var(--t-base), opacity var(--t-base); }
.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); }

/* ── 8. PAGE HERO ─────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(18,41,112,.92) 0%,
    rgba(27,58,140,.78) 50%,
    rgba(27,58,140,.45) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 44px;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 8px; }
.page-hero-content p  { color: rgba(255,255,255,.75); font-size: 1.05rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.breadcrumb svg { width: 6px; height: 10px; opacity: .5; flex-shrink: 0; }
.breadcrumb a { color: rgba(255,255,255,.7); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.55); }

/* ── 9. HERO (index) ──────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h) - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(12,28,80,.93) 0%,
    rgba(18,41,112,.82) 45%,
    rgba(27,58,140,.4)  80%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(46,139,58,.15);
  border: 1px solid rgba(46,139,58,.3);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 22px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-mid);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(1.5); }
}
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,.2);
}
.hero-title-accent { color: #7BADF0; display: block; }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 560px;
}
/* .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-cta .btn-primary { background: var(--blue-mid); }
.hero-cta .btn-primary:hover { background: var(--blue-dark); }
.hero-cta .btn-outline-white { } */
/* ── FIX HERO CTA ─────────────────────────────────────────────── */
.hero-cta {
  display: flex;
  gap: 16px; /* Jarak antar tombol yang lebih konsisten */
  flex-wrap: wrap;
  margin-bottom: 48px;
  align-items: center; /* Memastikan sejajar secara vertikal */
}

/* Memaksa tinggi tombol sama persis */
.hero-cta .btn-primary, 
.hero-cta .btn-outline-white {
  height: 48px; /* Fixed height untuk presisi visual */
  padding: 0 28px; /* Padding samping saja karena tinggi sudah diatur */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box; /* Sangat penting agar border tidak menambah tinggi */
  white-space: nowrap;
}

/* Perbaikan ukuran SVG di dalam tombol */
.hero-cta .btn-primary svg {
  width: 18px; 
  height: 18px;
  margin-left: 4px; /* Memberi jarak halus dari teks */
  flex-shrink: 0;
}

/* Pastikan tombol outline tidak lebih tinggi karena border */
.btn-outline-white {
  border: 2px solid rgba(255,255,255,.6);
  /* Padding dikurangi secara internal oleh browser karena box-sizing: border-box */
}

/* Responsif untuk Mobile */
@media (max-width: 576px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch; /* Tombol jadi full width di mobile */
  }
  .hero-cta .btn-primary, 
  .hero-cta .btn-outline-white {
    width: 100%;
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  padding: 20px 28px;
  width: fit-content;
}
.hero-stat { text-align: center; padding: 0 24px; }
.hero-stat strong {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span { font-size: .72rem; color: rgba(255,255,255,.65); letter-spacing: .04em; white-space: nowrap; }
.hero-stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,.18); flex-shrink: 0; }

/* ── 10. ANNOUNCEMENT ─────────────────────────────────────────── */
#announcement {
  background: var(--green-pale);
  border-bottom: 2px solid var(--green);
  padding: 12px 0;
}
.announce-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.announce-badge {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--white);
  padding: 3px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
}
#announcement p {
  font-size: .875rem;
  color: var(--green-dark);
  margin: 0;
}
#announcement a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }

/* ── 11. ABOUT SNIPPET (index) ────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}
.about-text h2 { margin: 8px 0 16px; }
.about-text > p { margin-bottom: 12px; }
.about-features { display: flex; flex-direction: column; gap: 18px; margin: 28px 0 32px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon {
  width: 40px; height: 40px;
  background: var(--blue-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-item strong { display: block; font-size: .95rem; color: var(--text-main); margin-bottom: 2px; }
.feature-item span { font-size: .85rem; color: var(--text-muted); }

.about-visual { position: relative; }
.visual-card-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.visual-card-main img { width: 100%; height: 100%; object-fit: cover; }
.visual-card-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--gray-200);
}
.visual-card-badge img { height: 36px; width: auto; object-fit: contain; }
.badge-info strong { display: block; font-size: .85rem; color: var(--text-main); }
.badge-info span   { font-size: .75rem; color: var(--text-muted); }

/* ── 12. LAYANAN (index) ──────────────────────────────────────── */
#layanan { background: var(--gray-50); }
.layanan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.layanan-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base);
  position: relative;
  overflow: hidden;
}
.layanan-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}
.layanan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gray-300); }
.layanan-card:hover::before { transform: scaleX(1); }
.layanan-icon {
  width: 52px; height: 52px;
  background: var(--blue-pale);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
  transition: background var(--t-base), color var(--t-base);
}
.layanan-icon svg { width: 26px; height: 26px; }
.layanan-card:hover .layanan-icon { background: var(--blue); color: var(--white); }
.layanan-card h3 { font-family: 'Source Sans 3', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text-main); }
.layanan-card p  { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }
.layanan-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--t-base);
}
.layanan-link span { transition: transform var(--t-base); }
.layanan-link:hover { gap: 8px; }
.layanan-link:hover span { transform: translateX(4px); }

/* ── 13. SKEMA TABS (index) ───────────────────────────────────── */
#skema-preview { }
.skema-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.stab {
  padding: 9px 22px;
  font-size: .855rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  color: var(--gray-500);
  border-radius: var(--r-full);
  background: var(--white);
  transition: all var(--t-base) var(--ease);
}
.stab:hover { border-color: var(--blue); color: var(--blue); }
.stab.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

.skema-panels { }
.skema-panel { display: none; animation: fadeUp .3s var(--ease); }
.skema-panel.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.skema-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.skema-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.skema-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.skema-card-top {
  padding: 18px 22px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.badge-level {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.badge-junior { background: var(--blue-pale); color: var(--blue); }
.badge-madya  { background: var(--gold-pale);  color: var(--gold); }
.badge-status {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
}
.badge-open { background: var(--green-pale); color: var(--green); }
.badge-soon { background: var(--gold-pale);  color: var(--gold); }

.skema-card h3 { font-family: 'Source Sans 3', sans-serif; font-size: 1rem; font-weight: 700; color: var(--text-main); padding: 18px 22px 8px; }
.skema-card > p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; padding: 0 22px 16px; flex: 1; }

.skema-meta {
  padding: 12px 22px 16px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}
.skema-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-muted);
}
.skema-meta svg { width: 13px; height: 13px; color: var(--blue); flex-shrink: 0; }

.btn-skema {
  display: block;
  text-align: center;
  padding: 11px 22px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: .855rem;
  font-weight: 600;
  border-top: 1px solid var(--gray-200);
  transition: background var(--t-base), color var(--t-base);
}
.btn-skema:hover { background: var(--blue); color: var(--white); }

.skema-cta { text-align: center; margin-top: 40px; }

/* ── 14. ALUR (index) ─────────────────────────────────────────── */
#alur { background: var(--gray-50); }
.alur-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.alur-list::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}
.alur-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.alur-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--blue-pale);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.alur-item:hover .alur-number { transform: scale(1.1); box-shadow: 0 0 0 4px var(--white), 0 0 0 8px var(--blue); }
.alur-connector { display: none; }
.alur-content h4 { font-size: .9rem; color: var(--text-main); margin-bottom: 8px; }
.alur-content p  { font-size: .8rem; line-height: 1.6; }

/* ── 15. BERITA (index) ───────────────────────────────────────── */
#berita { background: var(--gray-50); }
.berita-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.berita-card { background: var(--white); border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--gray-200); transition: box-shadow var(--t-base); }
.berita-card:hover { box-shadow: var(--shadow-md); }
.berita-img { position: relative; overflow: hidden; }
.berita-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.berita-card:hover .berita-img img { transform: scale(1.04); }
.berita-cat {
  position: absolute; top: 14px; left: 14px;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-full);
}
.berita-cat--pengumuman { background: var(--blue);    color: var(--white); }
.berita-cat--kegiatan   { background: var(--green);   color: var(--white); }
.berita-cat--kerjasama  { background: var(--gold);    color: var(--white); }
.berita-cat--prestasi   { background: #8B1A8C;        color: var(--white); }

.berita-card--featured .berita-img { aspect-ratio: 16/9; }
.berita-body { padding: 24px; }
.news-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.news-meta time { font-size: .78rem; color: var(--text-light); }
.news-dot { font-size: .78rem; color: var(--gray-300); }
.news-meta span { font-size: .78rem; color: var(--text-light); }
.berita-body h2 { font-size: 1.2rem; line-height: 1.35; margin-bottom: 12px; }
.berita-body h2 a { color: inherit; transition: color var(--t-fast); }
.berita-body h2 a:hover { color: var(--blue); }
.berita-body p { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.berita-readmore {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .855rem; font-weight: 600; color: var(--blue);
  transition: gap var(--t-base);
}
.berita-readmore svg { width: 14px; height: 14px; transition: transform var(--t-base); }
.berita-readmore:hover { gap: 10px; }
.berita-readmore:hover svg { transform: translateX(3px); }

.berita-side { display: flex; flex-direction: column; gap: 16px; }
.berita-card--small { display: flex; gap: 0; flex-direction: column; }
.berita-card--small .berita-img { aspect-ratio: 16/8; }
.berita-card--small .berita-body { padding: 16px 20px; }
.berita-card--small h3 { font-family: 'Source Sans 3', sans-serif; font-size: .92rem; font-weight: 700; margin-bottom: 8px; }
.berita-card--small h3 a { color: var(--text-main); transition: color var(--t-fast); }
.berita-card--small h3 a:hover { color: var(--blue); }
.berita-readmore-sm { font-size: .8rem; font-weight: 600; color: var(--blue); transition: color var(--t-fast); }
.berita-readmore-sm:hover { color: var(--blue-dark); }

/* ── 16. CTA SECTION ─────────────────────────────────────────── */
#cta { background: var(--blue-dark); padding: 64px 0; }
.cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); font-size: clamp(1.3rem, 2.5vw, 1.9rem); margin-bottom: 8px; }
.cta-text p  { color: rgba(255,255,255,.72); max-width: 500px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ── 17. MITRA SECTION ────────────────────────────────────────── */
#mitra { background: var(--white); padding: 48px 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.mitra-label { text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-light); margin-bottom: 28px; }
.mitra-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.mitra-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .55;
  filter: grayscale(1);
  transition: opacity var(--t-base), filter var(--t-base), transform var(--t-base);
}
.mitra-item:hover { opacity: 1; filter: grayscale(0); transform: translateY(-2px); }
.mitra-item img { height: 44px; width: auto; object-fit: contain; }
.mitra-item span { font-size: .7rem; color: var(--text-light); letter-spacing: .06em; }
.mitra-item--text { opacity: .6; }
.mitra-text-logo {
  height: 44px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 16px;
  background: var(--gray-100);
  border-radius: var(--r-md);
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-500);
  white-space: nowrap;
}

/* ── 18. FOOTER ───────────────────────────────────────────────── */
#footer { background: var(--gray-900); }
.footer-main { padding: 64px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand { }
.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo-wrap img { height: 44px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .85; }
.footer-brand > p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: var(--blue); border-color: var(--blue); color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-contact { gap: 14px !important; }
.footer-contact li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .855rem; color: rgba(255,255,255,.5); line-height: 1.6;
}
.footer-contact svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--blue-light); }
.footer-contact a { color: rgba(255,255,255,.5); transition: color var(--t-fast); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  background: rgba(0,0,0,.3);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.45); transition: color var(--t-fast); }
.footer-bottom a:hover { color: var(--white); }

/* ── 19. BACK TO TOP ──────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  width: 44px; height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--t-base), visibility var(--t-base), transform var(--t-base), background var(--t-fast);
}
#back-to-top svg { width: 18px; height: 18px; }
#back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--blue-dark); }

/* ── 20. ABOUT PAGE ──────────────────────────────────────────── */
.identity-strip {
  background: var(--blue-dark);
  border-bottom: 3px solid var(--green);
  padding: 0;
}
.identity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.identity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background var(--t-base);
}
.identity-item:last-child { border-right: none; }
.identity-item:hover { background: rgba(255,255,255,.05); }
.identity-item svg { width: 22px; height: 22px; color: var(--green-mid); flex-shrink: 0; }
.identity-item strong { display: block; font-size: .88rem; color: var(--white); margin-bottom: 2px; }
.identity-item span   { font-size: .75rem; color: rgba(255,255,255,.55); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col-text h2 { margin: 8px 0 16px; }
.two-col-text > p { margin-bottom: 12px; }
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--gray-200); }
.stat-box { text-align: center; }
.stat-box strong { display: block; font-family: 'Merriweather', serif; font-size: 1.6rem; font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.stat-box span   { font-size: .75rem; color: var(--text-muted); letter-spacing: .04em; }

.img-stack { position: relative; }
.img-stack-main { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); }
.img-stack-main img { width: 100%; height: 100%; object-fit: cover; }
.img-stack-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--blue);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-year { font-family: 'Merriweather', serif; font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1; }
.badge-label { font-size: .72rem; color: rgba(255,255,255,.7); margin-top: 4px; }

/* Visi Misi */
.vm-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; }
.vm-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 40px 36px;
}
.vm-icon { width: 48px; height: 48px; color: var(--green-mid); margin-bottom: 20px; }
.vm-icon svg { width: 100%; height: 100%; }
.vm-card h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 16px; }
.vm-card p  { color: rgba(255,255,255,.7); line-height: 1.8; }
.vm-list { display: flex; flex-direction: column; gap: 12px; }
.vm-list li {
  padding-left: 20px;
  position: relative;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  line-height: 1.65;
}
.vm-list li::before { content: '→'; position: absolute; left: 0; color: var(--green-mid); font-weight: 700; }

/* Nilai */
.nilai-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.nilai-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
}
.nilai-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.nilai-num { font-family: 'Merriweather', serif; font-size: 2.2rem; font-weight: 700; color: var(--gray-100); line-height: 1; margin-bottom: 12px; }
.nilai-icon { font-size: 2rem; margin-bottom: 14px; }
.nilai-card h4 { font-size: 1rem; color: var(--blue); margin-bottom: 10px; }
.nilai-card p  { font-size: .85rem; line-height: 1.65; }

/* Layanan About */
.layanan-about-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.layanan-about-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.layanan-about-card:hover { box-shadow: var(--shadow-sm); border-color: var(--blue-light); }
.la-number { font-family: 'Merriweather', serif; font-size: 2rem; font-weight: 700; color: var(--gray-200); line-height: 1; flex-shrink: 0; }
.la-body h4 { font-size: .95rem; color: var(--blue); margin-bottom: 8px; }
.la-body p  { font-size: .855rem; line-height: 1.65; margin-bottom: 12px; }
.la-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.la-tags span { font-size: .7rem; font-weight: 600; background: var(--blue-pale); color: var(--blue); padding: 3px 10px; border-radius: var(--r-full); }

/* Timeline */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-pale), var(--blue), var(--green), var(--blue-pale));
}
.tl-item { width: 46%; padding-bottom: 40px; position: relative; }
.tl-left  { margin-left: 0; text-align: right; padding-right: 52px; }
.tl-right { margin-left: 54%; text-align: left; padding-left: 52px; }
.tl-dot {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--blue-pale);
  top: 4px;
}
.tl-left .tl-dot  { right: -7px; }
.tl-right .tl-dot { left: -7px; }
.tl-dot--active { background: var(--green); box-shadow: 0 0 0 3px var(--green-pale); }
.tl-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-base);
}
.tl-card:hover { box-shadow: var(--shadow-sm); }
.tl-card--active { border-color: var(--green); }
.tl-year {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  color: var(--blue); background: var(--blue-pale);
  padding: 2px 10px; border-radius: var(--r-full); margin-bottom: 8px;
}
.tl-card h4 { font-size: .95rem; color: var(--text-main); margin-bottom: 6px; }
.tl-card p  { font-size: .845rem; line-height: 1.65; }

/* FAQ */
.faq-wrap { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--t-base);
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--blue-light); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-size: .92rem; font-weight: 600;
  color: var(--text-main);
  background: none;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.faq-q:hover { background: var(--gray-50); }
.faq-item.open .faq-q { color: var(--blue); background: var(--blue-pale); }
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--t-base) var(--ease); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.faq-a p { padding: 0 22px 20px; font-size: .9rem; line-height: 1.75; }
.faq-a a { color: var(--blue); font-weight: 600; text-decoration: underline; }
.faq-item.open .faq-a { max-height: 400px; }

/* Mitra list (about page) */
.partners-section { }

/* ── 21. SKEMA PAGE ───────────────────────────────────────────── */
.skema-intro-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  margin-bottom: 36px;
}
.skema-intro-text h2 { margin: 8px 0 12px; }
.skema-intro-text p  { max-width: 520px; }
.skema-intro-stats { display: flex; gap: 24px; }
.skema-istat { text-align: center; padding: 16px 24px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--r-lg); }
.skema-istat strong { display: block; font-family: 'Merriweather', serif; font-size: 1.6rem; font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.skema-istat span   { font-size: .72rem; color: var(--text-muted); letter-spacing: .04em; white-space: nowrap; }

.skema-cat-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.skema-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--r-lg);
  font-size: .875rem; font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--t-base) var(--ease);
  text-decoration: none;
}
.skema-pill--ti        { background: var(--blue-pale);  color: var(--blue);   border-color: rgba(27,58,140,.2);  }
.skema-pill--bisnis    { background: var(--green-pale); color: var(--green);  border-color: rgba(46,139,58,.2);  }
.skema-pill--akuntansi { background: var(--gold-pale);  color: var(--gold);   border-color: rgba(201,146,10,.2); }
.skema-pill--komunikasi{ background: #F5E8F8; color: #7B1FA2; border-color: rgba(123,31,162,.2); }
.skema-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.pill-count { font-size: .72rem; font-weight: 700; opacity: .7; }

/* Skema Bidang */
.skema-bidang { padding: 64px 0; }
.skema-bidang--alt { background: var(--gray-50); }
.bidang-header {
  display: flex; gap: 20px; align-items: flex-start;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--gray-200);
}
.bidang-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
}
.bidang-icon svg { width: 28px; height: 28px; }
.bidang-icon--ti        { background: var(--blue);  }  .bidang-icon--ti svg        { color: var(--white); }
.bidang-icon--bisnis    { background: var(--green); }  .bidang-icon--bisnis svg    { color: var(--white); }
.bidang-icon--akuntansi { background: var(--gold);  }  .bidang-icon--akuntansi svg { color: var(--white); }
.bidang-icon--komunikasi{ background: #7B1FA2; }       .bidang-icon--komunikasi svg{ color: var(--white); }
.bidang-header span { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; display: block; }
.bidang-header h2 { font-size: 1.5rem; margin-bottom: 6px; }
.bidang-header p  { font-size: .88rem; }

.skema-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px,1fr)); gap: 28px; }

/* Skema Card V2 */
.skema-card-v2 {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.skema-card-v2:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gray-300); }
.skema-card-header { padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; }
.skema-card-header--ti        { background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid)); }
.skema-card-header--bisnis    { background: linear-gradient(135deg, var(--green-dark), var(--green-mid)); }
.skema-card-header--akuntansi { background: linear-gradient(135deg, #7a5800, var(--gold)); }
.skema-card-header--komunikasi{ background: linear-gradient(135deg, #4a0d72, #7B1FA2); }
.skema-card-badges { display: flex; gap: 8px; align-items: center; }
.skema-card-icon { color: rgba(255,255,255,.6); }
.skema-card-icon svg { width: 28px; height: 28px; }

.skema-card-body { padding: 24px; flex: 1; }
.skema-card-body h3 { font-family: 'Source Sans 3', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text-main); margin-bottom: 10px; }
.skema-card-body > p { font-size: .875rem; line-height: 1.7; margin-bottom: 18px; }

.skema-units h5 { margin-bottom: 10px; }
.skema-units ul { display: flex; flex-direction: column; gap: 6px; }
.skema-units ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .82rem; color: var(--text-muted); line-height: 1.5;
}
.skema-units ul li::before { content: '·'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.skema-info-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin: 18px 0;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--r-lg);
}
.skema-info-item { display: flex; align-items: center; gap: 10px; }
.skema-info-item svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.skema-info-item strong { display: block; font-size: .88rem; color: var(--text-main); line-height: 1.2; }
.skema-info-item span  { font-size: .72rem; color: var(--text-muted); }

.skema-target h5, .skema-syarat h5 { margin-bottom: 8px; margin-top: 16px; }
.target-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.target-tags span { font-size: .72rem; font-weight: 600; background: var(--blue-pale); color: var(--blue); padding: 3px 10px; border-radius: var(--r-full); }
.skema-syarat ul { display: flex; flex-direction: column; gap: 6px; }
.skema-syarat ul li { font-size: .82rem; color: var(--text-muted); padding-left: 14px; position: relative; line-height: 1.5; }
.skema-syarat ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: .8rem; }

.skema-card-footer {
  padding: 18px 24px;
  border-top: 1px solid var(--gray-100);
  display: flex; gap: 12px; align-items: center;
}
.btn-daftar-skema {
  display: inline-flex; align-items: center;
  padding: 10px 22px;
  background: var(--blue);
  color: var(--white);
  font-size: .855rem; font-weight: 600;
  border-radius: var(--r-full);
  transition: background var(--t-base), transform var(--t-base);
  flex: 1; justify-content: center;
}
.btn-daftar-skema:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-daftar-skema--soon { background: var(--gray-400); }
.btn-daftar-skema--soon:hover { background: var(--gray-500); }
.btn-konsultasi {
  display: inline-flex; align-items: center;
  padding: 10px 18px;
  border: 1.5px solid var(--gray-200);
  color: var(--text-muted);
  font-size: .855rem; font-weight: 600;
  border-radius: var(--r-full);
  transition: all var(--t-base);
  white-space: nowrap;
}
.btn-konsultasi:hover { border-color: var(--blue); color: var(--blue); }

/* Alur Sertifikasi (skema page) */
#alur-sertifikasi { }

/* Tabel Perbandingan */
.table-wrap { overflow-x: auto; border-radius: var(--r-xl); border: 1px solid var(--gray-200); }
.skema-table { width: 100%; min-width: 640px; }
.skema-table thead tr { background: var(--blue-dark); }
.skema-table thead th { padding: 14px 18px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.8); text-align: left; white-space: nowrap; }
.skema-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: background var(--t-fast); }
.skema-table tbody tr:last-child { border-bottom: none; }
.skema-table tbody tr:hover { background: var(--blue-pale); }
.skema-table tbody td { padding: 13px 18px; font-size: .875rem; color: var(--text-muted); vertical-align: middle; }
.skema-table tbody td:first-child a { color: var(--blue); font-weight: 600; }
.skema-table tbody td:first-child a:hover { text-decoration: underline; }
.tbadge { font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: var(--r-full); white-space: nowrap; }
.tbadge--ti        { background: var(--blue-pale);  color: var(--blue);  }
.tbadge--bisnis    { background: var(--green-pale); color: var(--green); }
.tbadge--akuntansi { background: var(--gold-pale);  color: var(--gold);  }
.tbadge--komunikasi{ background: #F5E8F8; color: #7B1FA2; }
.tstatus { font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: var(--r-full); }
.tstatus--open { background: var(--green-pale); color: var(--green); }
.tstatus--soon { background: var(--gold-pale);  color: var(--gold);  }
.tlink { color: var(--blue); font-weight: 700; font-size: .82rem; }
.tlink:hover { text-decoration: underline; }

/* ── 22. PROFIL PAGE ──────────────────────────────────────────── */
.profil-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.profil-table-wrap { border: 1px solid var(--gray-200); border-radius: var(--r-xl); overflow: hidden; }
.profil-table { width: 100%; }
.profil-table th, .profil-table td { padding: 13px 20px; font-size: .875rem; text-align: left; border-bottom: 1px solid var(--gray-100); vertical-align: top; }
.profil-table tr:last-child th, .profil-table tr:last-child td { border-bottom: none; }
.profil-table th { background: var(--gray-50); font-weight: 600; color: var(--gray-600); width: 42%; }
.profil-table td { color: var(--text-muted); }
.profil-table tr:hover td, .profil-table tr:hover th { background: var(--blue-pale); }

.profil-side { display: flex; flex-direction: column; gap: 20px; }
.profil-logo-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 28px;
  text-align: center;
}
.profil-logo-card > img { max-height: 70px; width: auto; object-fit: contain; margin: 0 auto 20px; }
.profil-lisensi {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--gray-100);
}
.profil-lisensi img { height: 32px; width: auto; object-fit: contain; }
.profil-lisensi strong { display: block; font-size: .85rem; color: var(--text-main); }
.profil-lisensi span   { font-size: .75rem; color: var(--text-muted); }
.profil-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.profil-stat {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 16px;
  text-align: center;
}
.profil-stat strong { display: block; font-family: 'Merriweather', serif; font-size: 1.35rem; font-weight: 700; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.profil-stat span   { font-size: .72rem; color: var(--text-muted); letter-spacing: .04em; }

/* Org Chart */
.org-chart { display: flex; flex-direction: column; align-items: center; gap: 0; }
.org-level { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; width: 100%; }
.org-level--1 { }
.org-level--2 { margin-top: 0; }
.org-level--3 { margin-top: 0; }
.org-vline { width: 2px; height: 32px; background: var(--gray-300); }
.org-hline-3 { display: none; }
.org-branch { display: flex; flex-direction: column; align-items: center; }
.org-vline-branch { width: 2px; height: 28px; background: var(--gray-300); }
.org-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.org-box:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.org-box--head { border-color: var(--blue); border-width: 2px; min-width: 260px; display: flex; align-items: center; gap: 16px; text-align: left; }
.org-box--mid  { min-width: 200px; }
.org-box--team {
  padding: 16px 20px; min-width: 160px;
  background: var(--gray-50);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.org-box--team svg { width: 22px; height: 22px; color: var(--blue); opacity: .6; }
.org-box--team strong { font-size: .875rem; color: var(--text-main); }
.org-box--team span   { font-size: .75rem; color: var(--text-muted); }
.org-avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; border: 2px solid var(--blue-pale); flex-shrink: 0; }
.org-avatar img { width: 100%; height: 100%; object-fit: cover; }
.org-avatar--sm { width: 48px; height: 48px; margin: 0 auto 12px; }
.org-photo-fallback {
  width: 100%; height: 100%;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--blue); font-size: 1rem;
}
.org-jabatan { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 4px; }
.org-nama    { font-size: .92rem; font-weight: 700; color: var(--text-main); display: block; margin-bottom: 2px; }
.org-sub     { font-size: .75rem; color: var(--text-muted); display: block; }

/* Asesor Grid */
.asesor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.asesor-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.asesor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.asesor-photo { aspect-ratio: 4/3; overflow: hidden; }
.asesor-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform var(--t-slow); }
.asesor-card:hover .asesor-photo img { transform: scale(1.04); }
.asesor-body { padding: 22px 24px; }
.asesor-bidang {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-full); margin-bottom: 10px;
}
.asesor-bidang--ti        { background: var(--blue-pale);  color: var(--blue);  }
.asesor-bidang--bisnis    { background: var(--green-pale); color: var(--green); }
.asesor-bidang--akuntansi { background: var(--gold-pale);  color: var(--gold);  }
.asesor-bidang--komunikasi{ background: #F5E8F8; color: #7B1FA2; }
.asesor-body h4 { font-size: 1rem; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.asesor-jabatan { font-size: .78rem; color: var(--text-muted); display: block; margin-bottom: 10px; }
.asesor-body p  { font-size: .855rem; line-height: 1.65; margin-bottom: 14px; }
.asesor-certs   { display: flex; flex-wrap: wrap; gap: 6px; }
.asesor-certs span { font-size: .7rem; font-weight: 600; background: var(--gray-100); color: var(--gray-600); padding: 3px 10px; border-radius: var(--r-full); }

/* Fasilitas */
.fasilitas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.fasilitas-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: box-shadow var(--t-base);
}
.fasilitas-card:hover { box-shadow: var(--shadow-md); }
.fasilitas-img { aspect-ratio: 16/9; overflow: hidden; }
.fasilitas-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.fasilitas-card:hover .fasilitas-img img { transform: scale(1.04); }
.fasilitas-body { padding: 24px; }
.fasilitas-icon { width: 40px; height: 40px; background: var(--blue-pale); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 14px; }
.fasilitas-icon svg { width: 20px; height: 20px; }
.fasilitas-body h4 { font-size: 1rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.fasilitas-body p  { font-size: .875rem; line-height: 1.65; margin-bottom: 14px; }
.fasilitas-body ul { display: flex; flex-direction: column; gap: 6px; }
.fasilitas-body ul li { font-size: .82rem; color: var(--text-muted); padding-left: 14px; position: relative; }
.fasilitas-body ul li::before { content: '·'; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* Penghargaan */
.penghargaan-list { display: flex; flex-direction: column; gap: 20px; }
.penghargaan-item {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 28px 32px;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.penghargaan-item:hover { box-shadow: var(--shadow-sm); border-color: var(--blue-light); }
.penghargaan-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--blue-pale); border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.penghargaan-icon svg { width: 28px; height: 28px; }
.penghargaan-tahun {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  color: var(--blue); background: var(--blue-pale);
  padding: 2px 10px; border-radius: var(--r-full); margin-bottom: 8px;
}
.penghargaan-body h4 { font-size: 1rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.penghargaan-body p  { font-size: .875rem; line-height: 1.65; margin-bottom: 8px; }
.penghargaan-dari { font-size: .78rem; font-weight: 600; color: var(--text-muted); font-style: italic; }

/* Kerjasama */
.kerjasama-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.kerjasama-kategori {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 28px 32px;
}
.kerjasama-kategori h4 {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; font-weight: 700; color: var(--white); margin-bottom: 18px;
}
.kerjasama-kategori h4 svg { width: 18px; height: 18px; color: var(--green-mid); flex-shrink: 0; }
.kerjasama-kategori ul { display: flex; flex-direction: column; gap: 10px; }
.kerjasama-kategori ul li {
  font-size: .875rem; color: rgba(255,255,255,.65);
  padding-left: 16px; position: relative;
}
.kerjasama-kategori ul li::before { content: '→'; position: absolute; left: 0; color: var(--green-mid); font-size: .8rem; }

/* ── 23. NEWS PAGE ────────────────────────────────────────────── */
.news-featured-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
.news-feature-main {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-xl); overflow: hidden;
}
.news-img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.news-feature-main:hover .news-img img { transform: scale(1.03); }
.news-cat {
  position: absolute; top: 14px; left: 14px;
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-full);
}
.news-cat--pengumuman { background: var(--blue);  color: var(--white); }
.news-cat--kegiatan   { background: var(--green); color: var(--white); }
.news-cat--kerjasama  { background: var(--gold);  color: var(--white); }
.news-cat--prestasi   { background: #7B1FA2;      color: var(--white); }
.news-body { padding: 28px 32px; }
.news-body h2 { font-size: 1.35rem; line-height: 1.3; margin-bottom: 14px; }
.news-body h2 a { color: var(--text-main); transition: color var(--t-fast); }
.news-body h2 a:hover { color: var(--blue); }
.news-body > p { font-size: .9rem; line-height: 1.75; margin-bottom: 12px; }
.news-readmore {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .875rem; font-weight: 600; color: var(--blue); margin-top: 8px;
  transition: gap var(--t-base);
}
.news-readmore svg { width: 14px; height: 14px; transition: transform var(--t-base); }
.news-readmore:hover { gap: 10px; }
.news-readmore:hover svg { transform: translateX(4px); }

.news-feature-side { display: flex; flex-direction: column; gap: 16px; }
.news-side-card {
  display: flex; gap: 0; flex-direction: row;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); overflow: hidden;
  transition: box-shadow var(--t-base);
}
.news-side-card:hover { box-shadow: var(--shadow-sm); }
.news-side-img { width: 120px; flex-shrink: 0; position: relative; overflow: hidden; }
.news-side-img img { width: 100%; height: 100%; object-fit: cover; }
.news-side-img .news-cat { top: 8px; left: 8px; font-size: .62rem; padding: 2px 8px; }
.news-side-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.news-side-body h3 { font-family: 'Source Sans 3', sans-serif; font-size: .875rem; font-weight: 700; color: var(--text-main); line-height: 1.4; }
.news-side-body h3 a { color: inherit; transition: color var(--t-fast); }
.news-side-body h3 a:hover { color: var(--blue); }
.news-readmore-sm { font-size: .8rem; font-weight: 600; color: var(--blue); transition: color var(--t-fast); margin-top: auto; }
.news-readmore-sm:hover { color: var(--blue-dark); }

/* Filter Bar */
.news-filter-bar {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: 36px;
}
.news-filter-bar h2 { margin-top: 4px; }
.news-filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.news-ftab {
  padding: 8px 20px; font-size: .835rem; font-weight: 600;
  border: 1.5px solid var(--gray-200); color: var(--gray-500);
  border-radius: var(--r-full); background: var(--white);
  transition: all var(--t-base);
}
.news-ftab:hover { border-color: var(--blue); color: var(--blue); }
.news-ftab.active { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* News Grid */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.news-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-xl); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.news-card-body h3 { font-family: 'Source Sans 3', sans-serif; font-size: .92rem; font-weight: 700; line-height: 1.4; }
.news-card-body h3 a { color: var(--text-main); transition: color var(--t-fast); }
.news-card-body h3 a:hover { color: var(--blue); }
.news-card-body p { font-size: .845rem; line-height: 1.65; flex: 1; }

.news-load-more { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.btn-load-more {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 32px; border: 2px solid var(--gray-200);
  color: var(--gray-500); font-size: .875rem; font-weight: 600;
  border-radius: var(--r-full); background: var(--white);
  transition: all var(--t-base);
}
.btn-load-more svg { width: 16px; height: 16px; }
.btn-load-more:hover { border-color: var(--blue); color: var(--blue); }
.news-count-info { font-size: .78rem; color: var(--text-light); }

/* Pengumuman */
.pengumuman-list { display: flex; flex-direction: column; gap: 16px; }
.pengumuman-item {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 24px 28px;
  transition: box-shadow var(--t-base);
}
.pengumuman-item:hover { box-shadow: var(--shadow-sm); }
.pengumuman-item--penting { border-left: 4px solid var(--blue); }
.pengumuman-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blue-pale); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.pengumuman-icon svg { width: 22px; height: 22px; }
.pengumuman-label-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.pengumuman-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 2px 10px; border-radius: var(--r-full);
  background: var(--blue); color: var(--white);
}
.pengumuman-label--jadwal { background: var(--green); }
.pengumuman-label--info   { background: var(--gold);  color: var(--white); }
.pengumuman-label-wrap time { font-size: .78rem; color: var(--text-light); }
.pengumuman-body h4 { font-size: .95rem; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.pengumuman-body p  { font-size: .875rem; line-height: 1.65; margin-bottom: 14px; }
.btn-pengumuman {
  display: inline-flex; align-items: center;
  padding: 8px 20px; background: var(--blue-pale); color: var(--blue);
  font-size: .82rem; font-weight: 600; border-radius: var(--r-full);
  transition: all var(--t-base);
}
.btn-pengumuman:hover { background: var(--blue); color: var(--white); }

/* Subscribe */
#subscribe { }
.subscribe-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.subscribe-text h2 { color: var(--white); margin-bottom: 12px; }
.subscribe-text p  { color: rgba(255,255,255,.7); }
.subscribe-input-group { display: flex; gap: 0; border-radius: var(--r-full); overflow: hidden; border: 2px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); margin-bottom: 12px; }
#subscribeEmail {
  flex: 1; padding: 12px 20px;
  background: transparent; border: none;
  color: var(--white); font-size: .9rem;
  outline: none;
}
#subscribeEmail::placeholder { color: rgba(255,255,255,.4); }
.btn-subscribe {
  padding: 12px 24px;
  background: var(--green); color: var(--white);
  font-size: .875rem; font-weight: 700;
  border-radius: 0; flex-shrink: 0;
  transition: background var(--t-base);
}
.btn-subscribe:hover { background: var(--green-dark); }
.subscribe-note { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: rgba(255,255,255,.5); }
.subscribe-note svg { width: 12px; height: 12px; flex-shrink: 0; }
.subscribe-success {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: var(--green-pale);
  border-radius: var(--r-md); color: var(--green); font-size: .875rem; font-weight: 600;
}
.subscribe-success svg { width: 20px; height: 20px; }

/* ── 24. CONTACT PAGE ─────────────────────────────────────────── */
.contact-strip {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}
.contact-strip-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.contact-strip-item {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid var(--gray-200);
  transition: background var(--t-fast);
  text-decoration: none;
}
.contact-strip-item--nolink { cursor: default; }
.contact-strip-item:not(.contact-strip-item--nolink):hover { background: var(--blue-pale); }
.contact-strip-item:last-child { border-right: none; }
.contact-strip-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--blue-pale); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.contact-strip-icon--green { background: var(--green-pale); color: var(--green); }
.contact-strip-icon svg { width: 20px; height: 20px; }
.contact-strip-item strong { display: block; font-size: .875rem; color: var(--text-main); margin-bottom: 2px; }
.contact-strip-item span   { font-size: .8rem; color: var(--text-muted); }

.contact-main-grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start; }
.contact-form-wrap h2 { margin: 8px 0 12px; }
.contact-form-wrap > p { margin-bottom: 32px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .845rem; font-weight: 600; color: var(--gray-700); }
.req { color: var(--danger); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: .9rem; color: var(--text-main);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,58,140,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236B7A99' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}
.form-err { font-size: .78rem; color: var(--danger); min-height: 18px; }

.form-group--check { }
.form-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; cursor: pointer; }
.form-check span { font-size: .845rem; color: var(--text-muted); line-height: 1.55; }

.btn-form-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 32px;
  background: var(--blue); color: var(--white);
  font-size: .95rem; font-weight: 700;
  border-radius: var(--r-full);
  width: 100%;
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.btn-form-submit svg { width: 18px; height: 18px; }
.btn-form-submit:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-success {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 22px;
  background: var(--green-pale);
  border: 1px solid var(--green);
  border-radius: var(--r-lg);
}
.form-success-icon { width: 28px; height: 28px; color: var(--green); flex-shrink: 0; }
.form-success strong { display: block; font-size: .92rem; color: var(--green-dark); margin-bottom: 4px; }
.form-success p { font-size: .855rem; color: var(--green-dark); line-height: 1.6; }

/* Contact Info Card */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-xl);
  padding: 32px;
  position: sticky; top: calc(var(--topbar-h) + var(--nav-h) + 24px);
}
.contact-info-card h3 { font-family: 'Source Sans 3', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-100); }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--blue-pale); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.ci-icon--green { background: var(--green-pale); color: var(--green); }
.ci-icon svg { width: 18px; height: 18px; }
.ci-body strong { display: block; font-size: .855rem; color: var(--text-main); margin-bottom: 4px; }
.ci-body p, .ci-body span { font-size: .845rem; color: var(--text-muted); line-height: 1.6; }
.ci-body a { color: var(--blue); font-size: .845rem; transition: color var(--t-fast); }
.ci-body a:hover { color: var(--blue-dark); }
.ci-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .8rem; font-weight: 600; color: var(--blue); margin-top: 6px;
  transition: gap var(--t-base);
}
.ci-link svg { width: 12px; height: 12px; }
.ci-link:hover { gap: 6px; }
.ci-link--wa {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; margin-top: 8px;
  background: var(--green); color: var(--white);
  border-radius: var(--r-full); font-size: .82rem; font-weight: 700;
  transition: background var(--t-base), transform var(--t-base);
  width: fit-content;
}
.ci-link--wa svg { width: 16px; height: 16px; }
.ci-link--wa:hover { background: var(--green-dark); transform: translateY(-1px); }

.jam-table { margin-top: 4px; }
.jam-table td { font-size: .82rem; color: var(--text-muted); padding: 2px 0; vertical-align: top; }
.jam-table td:first-child { padding-right: 16px; white-space: nowrap; }

.ci-sosmed { padding-top: 20px; border-top: 1px solid var(--gray-100); }
.ci-sosmed strong { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.ci-sosmed-links { display: flex; flex-direction: column; gap: 8px; }
.ci-sosmed-link {
  display: flex; align-items: center; gap: 10px;
  font-size: .845rem; color: var(--text-muted);
  padding: 7px 12px; border-radius: var(--r-md);
  transition: background var(--t-fast), color var(--t-fast);
}
.ci-sosmed-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.ci-sosmed-link:hover { background: var(--blue-pale); color: var(--blue); }

/* Map */
.map-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 32px; }
.map-info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.map-info-item { display: flex; gap: 14px; align-items: flex-start; }
.map-info-item svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.map-info-item strong { display: block; font-size: .875rem; color: var(--text-main); margin-bottom: 6px; }
.map-info-item p { font-size: .845rem; line-height: 1.65; }

/* ── 25. RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .layanan-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid   { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 420px; margin: 0 auto; }
  .berita-grid  { grid-template-columns: 1fr; }
  .berita-side  { display: grid; grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 960px) {
  /* Nav mobile */
  .hamburger { display: flex; }
  .navbar-nav {
    position: fixed;
    top: calc(var(--topbar-h) + var(--nav-h));
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    padding: 16px 0 24px;
    max-height: calc(100vh - var(--topbar-h) - var(--nav-h));
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--t-base) var(--ease), opacity var(--t-base), visibility var(--t-base);
    z-index: 99;
  }
  .navbar-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .navbar-nav > ul { flex-direction: column; gap: 2px; padding: 0 16px; }
  .nav-link { width: 100%; padding: 11px 16px; border-radius: var(--r-md); }
  .nav-link.active::after { display: none; }
  .has-drop .dropdown {
    position: static; box-shadow: none; border: none;
    background: var(--gray-50); border-radius: var(--r-md);
    margin: 4px 0 4px 8px; opacity: 1; visibility: visible;
    transform: none; padding: 4px 0;
  }
  .btn-register { display: none; }
  .identity-grid { grid-template-columns: repeat(2,1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .img-stack { max-width: 400px; }
  .img-stack-badge { right: -8px; bottom: -14px; }
  .vm-grid { grid-template-columns: 1fr; }
  .nilai-grid { grid-template-columns: repeat(2,1fr); }
  .layanan-about-grid { grid-template-columns: 1fr; }
  .asesor-grid { grid-template-columns: repeat(2,1fr); }
  .fasilitas-grid { grid-template-columns: 1fr; }
  .kerjasama-grid { grid-template-columns: 1fr; }
  .news-featured-grid { grid-template-columns: 1fr; }
  .news-feature-side { display: grid; grid-template-columns: repeat(3,1fr); }
  .news-side-card { flex-direction: column; }
  .news-side-img { width: 100%; height: 140px; }
  .news-grid { grid-template-columns: repeat(2,1fr); }
  .contact-strip-grid { grid-template-columns: repeat(2,1fr); }
  .contact-strip-item { border-bottom: 1px solid var(--gray-200); }
  .contact-strip-item:nth-child(2n) { border-right: none; }
  .contact-main-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-card { position: static; }
  .map-info-grid { grid-template-columns: 1fr; }
  .subscribe-wrap { grid-template-columns: 1fr; gap: 32px; }
  .profil-grid { grid-template-columns: 1fr; }
  .profil-side { display: grid; grid-template-columns: 1fr 1fr; }
  .skema-intro-wrap { grid-template-columns: 1fr; }
  .skema-intro-stats { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 680px) {
  :root { --nav-h: 64px; --topbar-h: 32px; }
  .section { padding: 52px 0; }
  .container { padding: 0 16px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .topbar-left span:not(:first-child) { display: none; }
  .page-hero { height: 220px; }
  .hero-stats { flex-wrap: wrap; gap: 0; }
  .hero-stat { flex: 0 0 50%; padding: 12px 16px; }
  .hero-stat-divider { display: none; }
  .identity-grid { grid-template-columns: 1fr; }
  .identity-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-row { grid-template-columns: repeat(2,1fr); }
  .alur-list { grid-template-columns: 1fr; }
  .alur-list::before { display: none; }
  .alur-item { flex-direction: row; align-items: flex-start; gap: 16px; }
  .alur-number { flex-shrink: 0; }
  .tl-item, .tl-left, .tl-right { width: 100%; text-align: left; padding-left: 40px; padding-right: 0; margin-left: 0; }
  .timeline::before { left: 10px; }
  .tl-dot, .tl-left .tl-dot, .tl-right .tl-dot { left: 3px; right: auto; }
  .nilai-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .org-level--2, .org-level--3 { flex-direction: column; align-items: center; }
  .asesor-grid { grid-template-columns: 1fr; }
  .news-feature-side { grid-template-columns: 1fr; }
  .news-side-card { flex-direction: row; }
  .news-side-img { width: 110px; height: auto; }
  .news-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-strip-grid { grid-template-columns: 1fr; }
  .contact-strip-item { border-right: none; }
  .berita-side { grid-template-columns: 1fr; }
  .skema-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; }
  #cta .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

/* ── 26. UTILITIES ────────────────────────────────────────────── */
/* .sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border-width:0; }
::selection { background: var(--blue-pale); color: var(--blue); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-light); } */

/* ================================================================
   31. LOADING SKELETON (opsional untuk gambar lambat)
   ================================================================ */
 
.img-skeleton {
  background: linear-gradient(
    90deg,
    var(--gray-100) 25%,
    var(--gray-200) 50%,
    var(--gray-100) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}
 
/* ================================================================
   32. TOOLTIP
   ================================================================ */
 
[data-tooltip] {
  position: relative;
}
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%; transform: translateX(-50%);
  background: var(--gray-800);
  color: var(--white);
  font-size: .72rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--r-md);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-fast);
  z-index: 10;
}
[data-tooltip]:hover::after { opacity: 1; }
 
/* ================================================================
   33. IMAGE SAFE LOAD — mencegah broken image layout
   ================================================================ */
 
img {
  /* Sembunyikan broken-image icon bawaan browser */
  font-size: 0;
  color: transparent;
}
 
/* Placeholder saat gambar belum/gagal load */
.img-placeholder {
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
}
.img-placeholder svg { width: 32px; height: 32px; }
 
/* ================================================================
   34. STICKY HEADER OFFSET untuk anchor link
   ================================================================ */
 
:target {
  scroll-margin-top: calc(var(--topbar-h) + var(--nav-h) + 24px);
}
 
/* ================================================================
   35. PRINT STYLES
   ================================================================ */
 
@media print {
  #topbar, #navbar, #back-to-top, #cta, #footer { display: none; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
  .section { padding: 24pt 0; }
  .container { max-width: 100%; padding: 0; }
}
 
/* ================================================================
   36. FOCUS VISIBLE — aksesibilitas keyboard
   ================================================================ */
 
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
 
/* ================================================================
   37. MOBILE MENU OVERLAY
   ================================================================ */
 
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 98;
  backdrop-filter: blur(2px);
}
.nav-overlay.show { display: block; }
 
/* ================================================================
   38. SKEMA PAGE — BIDANG SECTION SCROLL TARGET
   ================================================================ */
 
.skema-bidang + .skema-bidang { border-top: 1px solid var(--gray-200); }
 
/* ================================================================
   39. CONTACT PAGE — FORM INPUT STATES
   ================================================================ */
 
.form-group input.is-error,
.form-group select.is-error,
.form-group textarea.is-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}
.form-group input.is-valid,
.form-group select.is-valid,
.form-group textarea.is-valid {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,139,58,.1);
}
 
/* ================================================================
   40. PROFIL PAGE — ORG CHART RESPONSIVE TAMBAHAN
   ================================================================ */
 
@media (max-width: 680px) {
  .org-box--head {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .org-level--2 { gap: 12px; }
  .org-level--3 { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .profil-side { grid-template-columns: 1fr; }
}
 
/* ================================================================
   41. NEWS PAGE — FILTER HIDE/SHOW ANIMATION
   ================================================================ */
 
.news-card.hidden,
.gallery-item.hidden {
  display: none;
}
.news-card.fade-in {
  animation: fadeUp .3s var(--ease) forwards;
}
 
/* ================================================================
   42. HERO PAGE — SCROLL INDICATOR
   ================================================================ */
 
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounceScroll 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
}
@keyframes bounceScroll {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: .5; }
  50%      { transform: translateX(-50%) translateY(6px); opacity: 1; }
}
@media (max-width: 680px) { .hero-scroll { display: none; } }
 
/* ================================================================
   43. IDENTITY STRIP — RESPONSIF TAMBAHAN
   ================================================================ */
 
@media (max-width: 480px) {
  .identity-grid { grid-template-columns: 1fr; }
  .identity-item { padding: 16px 20px; }
}
 
/* ================================================================
   44. TABLE RESPONSIVE WRAPPER
   ================================================================ */
 
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
 
/* ================================================================
   45. BERITA PAGE — CARD LOADING STATE
   ================================================================ */
 
.news-card.is-loading .news-card-img,
.news-card.is-loading .news-card-body h3,
.news-card.is-loading .news-card-body p {
  background: var(--gray-100);
  border-radius: var(--r-md);
  color: transparent;
  animation: shimmer 1.5s infinite;
  background-size: 200% 100%;
}
 
/* ================================================================
   46. CUSTOM SCROLLBAR — Warna Biru UNDIRA
   ================================================================ */
 
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gray-300) transparent;
}
 
/* ================================================================
   47. HIGHLIGHT TEXT — Selection warna brand
   ================================================================ */
 
::selection {
  background: var(--blue-pale);
  color: var(--blue-dark);
}
::-moz-selection {
  background: var(--blue-pale);
  color: var(--blue-dark);
}
 
/* ================================================================
   48. GALERI — STATS STRIP
   ================================================================ */
 
.gallery-stats {
  display: flex;
  gap: 0;
  background: var(--blue-dark);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 40px;
}
.gallery-stat {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.gallery-stat:last-child { border-right: none; }
.gallery-stat strong {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.gallery-stat span {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .06em;
  text-transform: uppercase;
}
 
/* ================================================================
   49. SKEMA PAGE — STICKY FILTER BAR
   ================================================================ */
 
.skema-filter-sticky {
  position: sticky;
  top: calc(var(--topbar-h) + var(--nav-h));
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
  box-shadow: var(--shadow-xs);
}
 
/* ================================================================
   50. SEMUA HALAMAN — CARD HOVER LIFT UTILITY
   ================================================================ */
 
.card-lift {
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}
.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
 
/* ================================================================
   51. RESPONSIVE — MEDIUM BREAKPOINT (768px)
   ================================================================ */
 
@media (max-width: 768px) {
  /* Hero stats */
  .hero-stats { padding: 16px 20px; }
  .hero-stat { padding: 0 16px; }
 
  /* CTA */
  #cta { padding: 48px 0; }
 
  /* Alur */
  .alur-list { grid-template-columns: repeat(2,1fr); }
  .alur-list::before { display: none; }
 
  /* Gallery */
  .gallery-grid { columns: 2; }
 
  /* Berita side */
  .berita-side { grid-template-columns: 1fr 1fr; }
 
  /* Skema info grid */
  .skema-info-grid { grid-template-columns: 1fr; }
 
  /* Contact form row */
  .form-row { grid-template-columns: 1fr; gap: 16px; }
}
 
/* ================================================================
   52. SMALL MOBILE (< 400px)
   ================================================================ */
 
@media (max-width: 400px) {
  :root { --nav-h: 60px; }
  .hero-cta { flex-direction: column; }
  .hero-cta a { width: 100%; justify-content: center; }
  .skema-card-footer { flex-direction: column; }
  .btn-daftar-skema { width: 100%; }
  .btn-konsultasi { width: 100%; justify-content: center; }
  .gallery-grid { columns: 1; }
  .news-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions a { width: 100%; justify-content: center; }
}
 
/* ================================================================
   53. DARK MODE PLACEHOLDER (opsional, siap dikembangkan)
   ================================================================ */
 
/* @media (prefers-color-scheme: dark) {
  :root {
    --white:     #0F1520;
    --gray-50:   #161E2E;
    --gray-100:  #1E2A3E;
    --text-main: #E8EBF0;
    --text-muted:#9BA7BD;
  }
} */
 
/* ================================================================
   END OF style.css — LSP UNDIRA
   ================================================================ */
 