/* ================================================================
   PANDAI – Complete Landing Page Styles
   ================================================================ */

:root {
  --bi-blue:       #003087;
  --bi-blue-light: #0047b3;
  --accent-teal:   #00B2A9;
  --accent-green:  #1a8a5a;
  --accent-gold:   #B8860B;
  --text-dark:     #1a1a2e;
  --text-mid:      #4b5563;
  --text-light:    #6b7280;
  --bg-light:      #f4f7fb;
  --bg-white:      #ffffff;
  --border:        #e5eaf2;
  --shadow-sm:     0 2px 8px rgba(0,48,135,0.07);
  --shadow-md:     0 8px 32px rgba(0,48,135,0.12);
  --shadow-lg:     0 20px 60px rgba(0,48,135,0.16);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --font:          'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-dark); background: var(--bg-white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; border-radius: 8px;
  font-family: var(--font); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: all 0.2s; border: 2px solid transparent;
}
.btn-primary  { background: var(--bi-blue);  color: #fff; border-color: var(--bi-blue); }
.btn-primary:hover { background: var(--bi-blue-light); border-color: var(--bi-blue-light); }
.btn-outline  { background: transparent; color: var(--bi-blue); border-color: var(--bi-blue); }
.btn-outline:hover { background: var(--bi-blue); color: #fff; }
.btn-outline-dark { background: transparent; color: var(--text-dark); border-color: #c5cfe0; }
.btn-outline-dark:hover { border-color: var(--bi-blue); color: var(--bi-blue); }
.btn-teal  { background: var(--accent-teal);  color: #fff; border-color: var(--accent-teal); }
.btn-teal:hover  { background: #008f87; }
.btn-gold  { background: var(--accent-gold);  color: #fff; border-color: var(--accent-gold); }
.btn-gold:hover  { background: #9a6f09; }
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 10px; }
.btn-outline-pandai {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 22px; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  background: transparent; color: var(--bi-blue); border: 2px solid var(--bi-blue);
  cursor: pointer; transition: all 0.2s;
}
.btn-outline-pandai:hover { background: var(--bi-blue); color: #fff; }
.btn-bismo {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 22px; border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  background: var(--accent-green); color: #fff; border: 2px solid var(--accent-green);
  cursor: pointer; transition: all 0.2s;
}
.btn-bismo:hover { background: #167a4e; }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,48,135,0.06);
}
.navbar-inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.navbar-brand { flex-shrink: 0; }
.brand-logo { display: flex; align-items: center; gap: 16px; }
.bi-logo { display: flex; align-items: center; gap: 10px; }
.bi-text { display: flex; flex-direction: column; }
.bi-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.03em; color: var(--bi-blue); line-height: 1.2; }
.bi-subtitle { font-size: 0.48rem; font-weight: 500; color: var(--text-light); letter-spacing: 0.02em; line-height: 1.2; }
.divider-v { width: 1px; height: 36px; background: var(--border); }
.pandai-brand { display: flex; flex-direction: column; }
.pandai-name { font-size: 1.6rem; font-weight: 800; color: var(--bi-blue); letter-spacing: -0.02em; line-height: 1; }
.pandai-tagline { font-size: 12px; color: var(--text-light); line-height: 1.4; margin-top: 2px; }
.navbar-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link { padding: 8px 14px; font-size: 0.9rem; font-weight: 500; color: var(--text-mid); border-radius: 6px; transition: all 0.15s; display: flex; align-items: center; gap: 4px; }
.nav-link:hover { color: var(--bi-blue); background: #f0f4ff; }
.nav-link.active { color: var(--bi-blue); font-weight: 600; border-bottom: 2px solid var(--bi-blue); border-radius: 0; }
.chevron { font-size: 1.1rem; line-height: 1; }
.navbar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* ================================================================
   HERO SLIDER
   ================================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.hero-slider {
  position: relative;
  width: 100%;
}

/* Each slide is stacked, only .active is visible */
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  min-height: 560px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateX(30px);
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.hero-slide.exit-left  { opacity: 0; transform: translateX(-30px); }
.hero-slide.enter-right { opacity: 0; transform: translateX(30px); }

/* Slide backgrounds */
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.slide-bg--1 { background: linear-gradient(135deg, #eef3fc 0%, #f4f8ff 50%, #e8f5f4 100%); }
.slide-bg--2 { background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf8 50%, #e0f7f5 100%); }
.slide-bg--3 { background: linear-gradient(135deg, #fefce8 0%, #fffbeb 50%, #fef3c7 100%); }

/* Hero inner layout */
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}

.hero-content { max-width: 520px; }
.hero-badge {
  display: inline-block;
  background: var(--bi-blue); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 18px;
}
.hero-badge--teal  { background: var(--accent-green); }
.hero-badge--gold  { background: var(--accent-gold); }
.hero-title { font-size: 2.8rem; font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; color: var(--text-dark); margin-bottom: 18px; }
.hero-title-accent { color: var(--bi-blue); }
.hero-desc { font-size: 1rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; max-width: 440px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-social-proof { display: flex; align-items: center; gap: 12px; }
.avatars { display: flex; }
.avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; margin-left: -8px; object-fit: cover; }
.avatar:first-child { margin-left: 0; }
.hero-social-proof p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }

/* Hero visual side */
.hero-visual {
  position: relative;
  height: 460px;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-img-bg {
  position: absolute; bottom: 0; right: 0;
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-img-circle {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 380px; height: 380px; border-radius: 50%;
  background: linear-gradient(135deg, #c8d8f5, #d6f0ee);
  z-index: 0;
}
.hero-img {
  position: relative; z-index: 1;
  height: 430px; width: auto;
  object-fit: cover; object-position: top;
  filter: drop-shadow(0 12px 32px rgba(0,48,135,0.18));
}

/* Float Cards */
.float-card {
  position: absolute; background: #fff;
  border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 14px 18px; display: flex; align-items: center; gap: 14px;
  z-index: 10;
  animation: fcFloat 0.7s ease both;
}
.float-card--top   { top: 20px; right: 20px; min-width: 215px; animation-delay: 0.15s; }
.float-card--right { bottom: 130px; right: 0; min-width: 215px; animation-delay: 0.3s; }
.float-card--bottom { bottom: 16px; left: 0; flex-direction: column; align-items: flex-start; padding: 16px 20px; min-width: 200px; animation-delay: 0.45s; }
.float-card-icon {
  width: 42px; height: 42px; background: #eef3fc;
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-card-icon--gold  { background: #fef9e7; }
.float-card-title { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }
.float-card-desc  { font-size: 0.72rem; color: var(--text-light); line-height: 1.5; margin-top: 2px; }
.progress-header { margin-bottom: 10px; }
.progress-label { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); }
.progress-body { display: flex; align-items: center; gap: 14px; }
.progress-circle svg { display: block; }
.progress-info { flex: 1; }
.progress-level { font-size: 0.85rem; font-weight: 700; color: var(--bi-blue); margin-bottom: 6px; }
.progress-bar-track { width: 110px; height: 5px; background: #e0e7ef; border-radius: 99px; overflow: hidden; }
.progress-bar-fill { height: 100%; background: linear-gradient(90deg, #003087, #00B2A9); border-radius: 99px; }
.progress-modules { font-size: 0.72rem; color: var(--text-light); margin-top: 5px; }

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

/* Slider Controls */
.slider-arrow {
  position: absolute; top: 50%; z-index: 20;
  transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--bi-blue); transition: all 0.2s;
}
.slider-arrow:hover { background: var(--bi-blue); color: #fff; border-color: var(--bi-blue); }
.slider-arrow--prev { left: 16px; }
.slider-arrow--next { right: 16px; }

/* Dot Indicators */
.hero-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 20;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(0,48,135,0.2); border: none; cursor: pointer;
  transition: all 0.25s; padding: 0;
}
.dot--active { background: var(--bi-blue); width: 28px; border-radius: 6px; }

/* ================================================================
   FEATURES STRIP
   ================================================================ */
.features-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 28px 0; }
.features-strip-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; flex: 1; min-width: 180px; }
.feature-icon { width: 46px; height: 46px; background: #eef3fc; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon--green  { background: #ecfdf5; }
.feature-icon--purple { background: #f5f3ff; }
.feature-icon--orange { background: #fff7ed; }
.feature-icon--teal   { background: #ecfeff; }
.feature-title { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.feature-desc  { font-size: 0.75rem; color: var(--text-light); line-height: 1.5; }

/* ================================================================
   TWO PILLARS
   ================================================================ */
.pillars { padding: 72px 0 80px; background: #f8fafd; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-title { font-size: 2rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; margin-bottom: 10px; }
.section-subtitle { font-size: 0.95rem; color: var(--text-light); }
.pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pillar-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px; display: flex; align-items: center; gap: 40px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  overflow: hidden; position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.pillar-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pillar-card--pandai::before, .pillar-card--bismo::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.pillar-card--pandai::before { background: linear-gradient(90deg, var(--bi-blue), var(--accent-teal)); }
.pillar-card--bismo::before  { background: linear-gradient(90deg, var(--accent-green), var(--accent-teal)); }
.pillar-card-content { flex: 1; }
.pillar-icon { width: 50px; height: 50px; background: #eef3fc; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pillar-icon--bismo { background: #ecfdf5; }
.pillar-label { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.pandai-label { color: var(--bi-blue); }
.bismo-label  { color: var(--accent-green); }
.pillar-sublabel { font-size: 0.78rem; font-weight: 600; color: var(--bi-blue); margin-bottom: 16px; }
.bismo-sublabel  { color: var(--accent-green); }
.pillar-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }
.pillar-mockup { flex-shrink: 0; position: relative; }
.mockup-window { width: 200px; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,48,135,0.14); border: 1px solid var(--border); background: #fff; }
.mockup-bar { background: #f3f4f6; padding: 8px 12px; display: flex; gap: 6px; align-items: center; border-bottom: 1px solid var(--border); }
.mockup-bar span { width: 8px; height: 8px; border-radius: 50%; }
.mockup-bar span:nth-child(1) { background: #fca5a5; }
.mockup-bar span:nth-child(2) { background: #fcd34d; }
.mockup-bar span:nth-child(3) { background: #6ee7b7; }
.mockup-body { padding: 12px; }
.mock-header-strip { height: 26px; background: linear-gradient(90deg, #003087, #0047b3); border-radius: 6px; margin-bottom: 10px; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 10px; }
.mock-card { height: 38px; background: linear-gradient(135deg, #eef3fc, #e0eaff); border-radius: 6px; }
.mock-text-line { height: 8px; background: #e5eaf2; border-radius: 4px; }
.mock-text-line--short { width: 60%; }
.mock-bismo-logo { font-size: 0.85rem; font-weight: 800; color: var(--accent-green); margin-bottom: 8px; }
.mock-label { font-size: 0.65rem; color: var(--text-light); margin-bottom: 8px; }
.mock-form { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.mock-input { height: 22px; background: #f3f4f6; border-radius: 5px; border: 1px solid #e5e7eb; }
.mock-btn-sm { height: 22px; background: var(--accent-green); border-radius: 5px; }
.mock-avatar-row { display: flex; gap: 5px; }
.mock-avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, #d1fae5, #a7f3d0); border: 2px solid #fff; }
.bismo-badge {
  position: absolute; bottom: -10px; right: -10px;
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 14px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
.badge-title { font-size: 0.72rem; font-weight: 700; color: var(--text-dark); }
.badge-desc  { font-size: 0.65rem; color: var(--text-light); }

/* ================================================================
   STATS
   ================================================================ */
.stats { background: #fff; padding: 56px 0; border-top: 1px solid var(--border); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.stat-icon { width: 56px; height: 56px; background: #eef3fc; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--bi-blue); letter-spacing: -0.03em; margin-bottom: 6px; }
.stat-label  { font-size: 0.88rem; color: var(--text-mid); font-weight: 500; }

/* ================================================================
   MATERI PEMBELAJARAN
   ================================================================ */
.materi { padding: 72px 0 80px; background: #f8fafd; }

/* Filter Tabs */
.materi-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.materi-tab {
  padding: 10px 20px; border: none; background: transparent;
  font-family: var(--font); font-size: 0.88rem; font-weight: 600;
  color: var(--text-light); cursor: pointer; border-radius: 8px 8px 0 0;
  transition: all 0.2s; position: relative; bottom: -2px;
  border-bottom: 2px solid transparent;
}
.materi-tab:hover  { color: var(--bi-blue); background: #f0f4ff; }
.materi-tab.active { color: var(--bi-blue); border-bottom-color: var(--bi-blue); background: #fff; }

/* Cards Grid */
.materi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.materi-card {
  background: #fff; border-radius: var(--radius-md);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.materi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.materi-card.hidden { display: none; }

.materi-card-img {
  height: 120px; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.materi-card-img-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.materi-grid-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 16px;
  color: var(--text-light);
  font-size: 0.9rem;
}
.materi-card-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 3px 10px; border-radius: 20px;
}
.materi-badge--dasar     { background: #dbeafe; color: #1e40af; }
.materi-badge--moneter   { background: #ffedd5; color: #c2410c; }
.materi-badge--sp        { background: #d1fae5; color: #065f46; }
.materi-badge--perbankan { background: #ede9fe; color: #5b21b6; }
.materi-badge--digital   { background: #cffafe; color: #0e7490; }

.materi-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.materi-card-cat  { font-size: 0.72rem; font-weight: 600; color: var(--bi-blue); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.materi-card-title { font-size: 0.92rem; font-weight: 700; color: var(--text-dark); line-height: 1.45; margin-bottom: 10px; }
.materi-card-desc  { font-size: 0.78rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.materi-card-meta  { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: var(--text-light); }
.materi-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.materi-level { font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.materi-level--pemula   { background: #dbeafe; color: #1e40af; }
.materi-level--menengah { background: #fed7aa; color: #c2410c; }
.materi-level--lanjut   { background: #ede9fe; color: #5b21b6; }
.btn-materi {
  font-size: 0.75rem; font-weight: 700; color: var(--bi-blue);
  border: 1.5px solid var(--bi-blue); padding: 5px 14px;
  border-radius: 6px; transition: all 0.2s; cursor: pointer;
}
.btn-materi:hover { background: var(--bi-blue); color: #fff; }

/* CTA */
.materi-cta { text-align: center; }
.materi-cta-note { font-size: 0.82rem; color: var(--text-light); margin-top: 12px; }

/* ================================================================
   INNER PAGES (Tentang, Program, dll.)
   ================================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background: linear-gradient(135deg, #eef3fc 0%, #f8fafc 45%, #e8f5f0 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,48,135,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,138,90,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero--program {
  background: linear-gradient(135deg, #eef3fc 0%, #f0fdf4 50%, #eef3fc 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.page-hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0,48,135,0.1);
  color: var(--bi-blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero-badge--green { background: rgba(26,138,90,0.12); color: var(--accent-green); }
.page-hero-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.page-hero-title span { color: var(--bi-blue); }
.page-hero-title .accent-green { color: var(--accent-green); }
.page-hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.page-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  border: 1px solid var(--border);
  max-width: 400px;
  width: 100%;
}
.page-hero-card__logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bi-blue);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.page-hero-card__sub {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 20px;
}
.page-hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.page-hero-stat {
  text-align: center;
  padding: 12px 8px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}
.page-hero-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bi-blue);
  line-height: 1.2;
}
.page-hero-stat span {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 600;
}

.inner-section { padding: 72px 0; }
.inner-section--alt { background: var(--bg-light); }
.inner-section--dark {
  background: linear-gradient(135deg, var(--bi-blue) 0%, #002060 100%);
  color: #fff;
}
.inner-section--dark .section-title { color: #fff; }
.inner-section--dark .section-subtitle { color: rgba(255,255,255,0.75); }

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #c8d8f5, #eef3fc);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-intro-img img { width: 75%; object-fit: contain; }
.about-intro-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bi-blue);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.about-intro-text p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.vm-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.vm-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bi-blue), var(--accent-teal));
}
.vm-card--mission::before { background: linear-gradient(90deg, var(--accent-green), var(--accent-teal)); }
.vm-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #eef3fc;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.vm-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; color: var(--text-dark); }
.vm-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
}
.value-card-icon--blue { background: #eef3fc; }
.value-card-icon--green { background: #ecfdf5; }
.value-card-icon--gold { background: #fffbeb; }
.value-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }

.timeline { max-width: 720px; margin: 0 auto; }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 39px; top: 48px; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-year {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bi-blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.timeline-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; padding-top: 8px; }
.timeline-body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

.cta-banner {
  text-align: center;
  padding: 56px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #eef3fc, #fff);
  border: 1px solid var(--border);
}
.cta-banner h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; color: var(--bi-blue); }
.cta-banner p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* Program page */
.program-showcase { display: flex; flex-direction: column; gap: 48px; }
.program-card-lg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.program-card-lg--reverse .program-card-lg-visual { order: 2; }
.program-card-lg--reverse .program-card-lg-body { order: 1; }
.program-card-lg-visual {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}
.program-card-lg-visual--pandai {
  background: linear-gradient(145deg, #eef3fc 0%, #dbeafe 100%);
}
.program-card-lg-visual--bismo {
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
}
.program-card-lg-logo {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.program-card-lg-logo--pandai { color: var(--bi-blue); }
.program-card-lg-logo--bismo { color: var(--accent-green); }
.program-card-lg-tagline {
  font-size: 0.82rem;
  color: var(--text-mid);
  text-align: center;
  max-width: 280px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.program-card-lg-features {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.program-chip {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255,255,255,0.85);
  color: var(--text-dark);
  border: 1px solid rgba(0,0,0,0.06);
}
.program-card-lg-body { padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.program-card-lg-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.program-card-lg-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.02em; }
.program-card-lg-desc { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
.program-step-list { list-style: none; margin-bottom: 28px; }
.program-step-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.88rem; color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.program-step-list li:last-child { border-bottom: none; }
.program-step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--bi-blue);
  font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.program-card-lg--bismo .program-step-num { color: var(--accent-green); }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  text-align: center;
}
.compare-card h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.compare-card .compare-for {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.compare-card ul {
  list-style: none;
  text-align: left;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.compare-card ul li {
  padding: 6px 0 6px 22px;
  position: relative;
}
.compare-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-visual { display: none; }
  .about-intro { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .program-card-lg { grid-template-columns: 1fr; }
  .program-card-lg--reverse .program-card-lg-visual { order: 0; }
  .program-card-lg--reverse .program-card-lg-body { order: 0; }
  .compare-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .value-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0 56px; }
  .inner-section { padding: 48px 0; }
  .program-card-lg-body { padding: 28px 24px; }
  .artikel-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.page-hero--faq {
  background: linear-gradient(135deg, #eef3fc 0%, #faf5ff 50%, #eef3fc 100%);
}
.faq-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
.faq-nav {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-nav-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.15s;
}
.faq-nav-btn:hover { border-color: var(--bi-blue); color: var(--bi-blue); }
.faq-nav-btn.active {
  background: var(--bi-blue);
  border-color: var(--bi-blue);
  color: #fff;
}
.faq-group { margin-bottom: 40px; scroll-margin-top: 88px; }
.faq-group-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--bi-blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq-group-title--bismo { color: var(--accent-green); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: #c5d4f0; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  line-height: 1.45;
}
.faq-q:hover { color: var(--bi-blue); }
.faq-chevron {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s, background 0.15s;
  font-size: 1rem;
  color: var(--bi-blue);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: #eef3fc; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px solid transparent;
}
.faq-item.open .faq-a-inner { border-top-color: var(--border); padding-top: 14px; }
.faq-contact {
  margin-top: 32px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #eef3fc, #fff);
  border: 1px solid var(--border);
  text-align: center;
}
.faq-contact p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 12px; }
.faq-state-loading,
.faq-state-error,
.faq-empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--text-light);
  font-size: 0.9rem;
}
.faq-state-error { color: #b91c1c; }

/* Artikel */
.page-hero--artikel {
  background: linear-gradient(135deg, #fffbeb 0%, #eef3fc 50%, #f0fdf4 100%);
}
.artikel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
  margin-top: -30px;
}
.artikel-tab {
  padding: 8px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.15s;
}
.artikel-tab:hover { border-color: var(--bi-blue); color: var(--bi-blue); }
.artikel-tab.active { background: var(--bi-blue); border-color: var(--bi-blue); color: #fff; }
.artikel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.artikel-grid-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 16px;
  color: var(--text-light);
  font-size: 0.9rem;
}
.artikel-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.artikel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.artikel-card.hidden { display: none; }
.artikel-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.artikel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.artikel-card:hover .artikel-card-img img { transform: scale(1.05); }
.artikel-card-cat {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.artikel-card-cat--bi { background: var(--bi-blue); color: #fff; }
.artikel-card-cat--pandai { background: #4f46e5; color: #fff; }
.artikel-card-cat--bismo { background: var(--accent-green); color: #fff; }
.artikel-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.artikel-card-date {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 8px;
}
.artikel-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.artikel-card-title a {
  color: inherit;
  text-decoration: none;
}
.artikel-card-title a:hover {
  color: var(--bi-blue);
}
.artikel-card-excerpt {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 14px;
}
.artikel-card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--bi-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.artikel-card-link:hover { text-decoration: underline; }
.artikel-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 40px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.artikel-featured-img { min-height: 320px; position: relative; }
.artikel-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.artikel-featured-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.artikel-featured-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 10px;
}
.artikel-featured-title {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.artikel-featured-excerpt {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-nav { position: static; flex-direction: row; flex-wrap: wrap; }
  .faq-nav-btn { width: auto; flex: 1; min-width: 120px; text-align: center; }
  .artikel-grid { grid-template-columns: repeat(2, 1fr); }
  .artikel-featured { grid-template-columns: 1fr; }
  .artikel-featured-img { min-height: 220px; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: var(--text-dark); color: #fff; padding: 56px 0 0; }
.footer-inner { display: flex; gap: 64px; flex-wrap: wrap; padding-bottom: 48px; }
.footer-brand { flex: 0 0 326px; }
.footer-brand .bi-logo { gap: 14px; }
.footer-tagline { font-size: 0.8rem; color: #9ca3af; line-height: 1.6; margin-top: 8px; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  flex: 1;
  min-width: 0;
  align-items: start;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; width:310px }
.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #e5e7eb;
  margin: 0 0 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.55;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom p { font-size: 0.8rem; color: #6b7280; text-align: center; }

/* ================================================================
   SLIDER CONTROLS – Arrows & Dots
   ================================================================ */

/* Arrow buttons */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--bi-blue);
  transition: all 0.2s;
}
.slider-arrow:hover { background: var(--bi-blue); color: #fff; border-color: var(--bi-blue); box-shadow: var(--shadow-lg); }
.slider-arrow--prev { left: 20px; }
.slider-arrow--next { right: 20px; }

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(0,48,135,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.dot--active {
  background: var(--bi-blue);
  width: 28px;
  border-radius: 6px;
}

/* Slide transition classes added by JS */
.hero-slide.slide-out-left  { animation: slideOutLeft  0.55s ease forwards; }
.hero-slide.slide-in-right  { animation: slideInRight  0.55s ease forwards; }
.hero-slide.slide-out-right { animation: slideOutRight 0.55s ease forwards; }
.hero-slide.slide-in-left   { animation: slideInLeft   0.55s ease forwards; }

@keyframes slideOutLeft  { from { opacity:1; transform:translateX(0);    } to { opacity:0; transform:translateX(-60px); } }
@keyframes slideInRight  { from { opacity:0; transform:translateX(60px); } to { opacity:1; transform:translateX(0);    } }
@keyframes slideOutRight { from { opacity:1; transform:translateX(0);    } to { opacity:0; transform:translateX(60px); } }
@keyframes slideInLeft   { from { opacity:0; transform:translateX(-60px);} to { opacity:1; transform:translateX(0);    } }

/* Float card entrance per slide */
.hero-slide.active .float-card {
  animation: floatUp 0.65s ease both;
}
.hero-slide.active .float-card--top    { animation-delay: 0.15s; }
.hero-slide.active .float-card--right  { animation-delay: 0.30s; }
.hero-slide.active .float-card--bottom { animation-delay: 0.45s; }

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

/* ================================================================
   MATERI PANDAI (halaman publik)
   ================================================================ */
.page-hero--materi {
  padding: 56px 0 48px;
  background: linear-gradient(135deg, #eef3fc 0%, #f8fafc 55%, #eef3fc 100%);
}
.page-hero--materi .page-hero-inner {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
}
.page-hero--materi .page-hero-title {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}
.page-hero--materi .page-hero-desc {
  margin-bottom: 0;
  max-width: 560px;
  font-size: 0.98rem;
}

.mp-hero-visual { justify-content: flex-end; }
.mp-hero-illus {
  position: relative;
  width: min(100%, 300px);
  margin-left: auto;
}
.mp-hero-illus__glow {
  position: absolute;
  inset: 10% 5%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.18) 0%, transparent 70%);
}
.mp-hero-illus__svg { width: 100%; height: auto; display: block; }

.mp-main {
  padding: 0 0 72px;
  background: #f8fafd;
}
.mp-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 40px;
}

/* Filter sidebar */
.mp-filter {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 84px;
}
.mp-filter__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.mp-filter__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
}
.mp-filter__reset {
  border: 0;
  background: none;
  color: var(--bi-blue);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-family: var(--font);
}
.mp-filter__reset:hover { text-decoration: underline; }
.mp-filter__group { margin-bottom: 18px; }
.mp-filter__group--sort { margin-bottom: 0; }
.mp-filter__label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.mp-filter__list {
  list-style: none;
  display: grid;
  gap: 8px;
}
.mp-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-mid);
  cursor: pointer;
  font-weight: 500;
  line-height: 1.35;
}
.mp-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--bi-blue);
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
}
.mp-check__ic {
  width: 18px;
  text-align: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  color: var(--bi-blue);
}
.mp-select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  background: #fff;
  cursor: pointer;
}
.mp-select--sm {
  width: auto;
  min-width: 120px;
  padding: 7px 10px;
  font-size: 0.78rem;
}

/* Section headers */
.mp-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.mp-section-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.mp-section-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bi-blue);
  white-space: nowrap;
}
.mp-section-link:hover { text-decoration: underline; }

/* Kategori cards */
.mp-cat-section { margin-bottom: 28px; }
.mp-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.mp-cat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 14px 12px;
  min-height: 148px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.mp-cat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #c5d4f0;
}
button.mp-cat-card {
  appearance: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.mp-filter-empty,
.mp-state-loading,
.mp-state-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 28px 16px;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 600;
}
.mp-filter-count { font-style: normal; color: #94a3b8; font-weight: 600; }
.mp-materi-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.mp-materi-card__kategori {
  display: inline-block;
  max-width: 100%;
  font-size: 0.62rem;
  font-weight: 700;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 2px 8px;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mp-cat-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.mp-cat-card__icon--blue   { background: #dbeafe; color: #1d4ed8; }
.mp-cat-card__icon--teal   { background: #ccfbf1; color: #0f766e; }
.mp-cat-card__icon--green  { background: #d1fae5; color: #047857; }
.mp-cat-card__icon--purple { background: #ede9fe; color: #6d28d9; }
.mp-cat-card__icon--cyan   { background: #cffafe; color: #0e7490; }
.mp-cat-card__title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 4px;
}
.mp-cat-card__desc {
  font-size: 0.7rem;
  color: var(--text-light);
  line-height: 1.45;
  flex: 1;
}
.mp-cat-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
}
.mp-cat-card__arrow {
  color: var(--bi-blue);
  font-size: 0.9rem;
}

/* List section */
.mp-list-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.mp-list-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.mp-list-count {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 2px;
}
.mp-list-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mp-view-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.mp-view-btn {
  width: 34px;
  height: 34px;
  border: 0;
  background: #fff;
  color: var(--text-light);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s, color 0.15s;
}
.mp-view-btn + .mp-view-btn { border-left: 1px solid var(--border); }
.mp-view-btn.active {
  background: var(--bi-blue);
  color: #fff;
}

/* Materi grid cards */
.mp-materi-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.mp-materi-grid--list {
  grid-template-columns: 1fr;
}
.mp-materi-grid--list .mp-materi-card {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
}
.mp-materi-grid--list .mp-materi-card__thumb {
  min-height: 130px;
  border-radius: 12px 0 0 12px;
}
.mp-materi-grid--list .mp-materi-card__body {
  padding-top: 18px;
}
.mp-materi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.mp-materi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.mp-materi-card__thumb {
  position: relative;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mp-materi-card__thumb--1 { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 55%, #60a5fa 100%); }
.mp-materi-card__thumb--2 { background: linear-gradient(135deg, #0f766e 0%, #14b8a6 55%, #5eead4 100%); }
.mp-materi-card__thumb--3 { background: linear-gradient(135deg, #1d4ed8 0%, #6366f1 55%, #a78bfa 100%); }
.mp-materi-card__thumb--4 { background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 55%, #7dd3fc 100%); }
.mp-materi-card__thumb--5 { background: linear-gradient(135deg, #4338ca 0%, #6366f1 55%, #818cf8 100%); }
.mp-materi-card__thumb--6 { background: linear-gradient(135deg, #b45309 0%, #f59e0b 55%, #fcd34d 100%); }
.mp-materi-card__thumb--7 { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 55%, #d8b4fe 100%); }
.mp-materi-card__thumb--8 { background: linear-gradient(135deg, #be123c 0%, #f43f5e 55%, #fda4af 100%); }
.mp-materi-card__thumb--9 { background: linear-gradient(135deg, #15803d 0%, #22c55e 55%, #86efac 100%); }
.mp-materi-card__thumb--10 { background: linear-gradient(135deg, #0e7490 0%, #06b6d4 55%, #67e8f9 100%); }
.mp-materi-card__thumb-art {
  width: 80%;
  max-width: 120px;
  opacity: 0.9;
}
.mp-materi-card__thumb-art svg { width: 100%; height: auto; }
.mp-materi-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 6px;
  background: #fbbf24;
  color: #78350f;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  z-index: 1;
}
.mp-materi-card__body {
  position: relative;
  padding: 14px 12px 12px;
}
.mp-materi-card__type {
  position: absolute;
  top: -14px;
  left: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--bi-blue);
  box-shadow: 0 2px 6px rgba(0,48,135,0.1);
}
.mp-materi-card__title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mp-materi-card__desc {
  font-size: 0.7rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.1em;
}
.mp-materi-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-light);
}
.mp-level {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mp-level i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.mp-level--dasar i    { background: #22c55e; }
.mp-level--menengah i { background: #f59e0b; }
.mp-level--lanjutan i { background: #8b5cf6; }
.mp-meta-item { white-space: nowrap; }

/* Pagination */
.mp-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.mp-pager {
  display: flex;
  align-items: center;
  gap: 4px;
}
.mp-pager__btn,
.mp-pager__num {
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.15s;
}
.mp-pager__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.mp-pager__num.active {
  background: var(--bi-blue);
  border-color: var(--bi-blue);
  color: #fff;
}
.mp-pager__num:hover:not(.active),
.mp-pager__btn:hover:not(:disabled) {
  border-color: var(--bi-blue);
  color: var(--bi-blue);
}
.mp-pager__dots {
  padding: 0 4px;
  color: var(--text-light);
  font-weight: 700;
}
.mp-pagination__info {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ================================================================
   DETAIL MATERI PANDAI (halaman publik)
   ================================================================ */
.dm-page { background: #f8fafd; }
.dm-main-wrap {
  padding: 24px 0 72px;
}

.dm-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 18px;
}
.dm-breadcrumb a {
  color: var(--bi-blue);
  transition: opacity 0.15s;
}
.dm-breadcrumb a:hover { opacity: 0.8; }
.dm-breadcrumb__home {
  display: grid;
  place-items: center;
  color: var(--bi-blue);
}
.dm-breadcrumb__sep { color: #94a3b8; }
.dm-breadcrumb__current { color: var(--text-mid); }

.dm-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
}

.dm-hero-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.dm-hero-card__thumb {
  position: relative;
  min-height: 200px;
  background: linear-gradient(145deg, #15803d 0%, #22c55e 45%, #4ade80 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.dm-hero-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.92);
  color: #15803d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.dm-hero-card__thumb-art {
  width: 85%;
  max-width: 180px;
}
.dm-hero-card__thumb-art svg { width: 100%; height: auto; }
.dm-hero-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.dm-loading,
.dm-error {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-mid);
}
.dm-error .btn { margin-top: 16px; }
.dm-hero-card__medal {
  position: absolute;
  bottom: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.dm-hero-card__body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
}
.dm-hero-card__title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.dm-hero-card__desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 560px;
}
.dm-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-bottom: 18px;
}
.dm-hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 600;
}
.dm-hero-stat b {
  font-weight: 800;
  color: var(--text-dark);
  margin-right: 2px;
}
.dm-hero-stat__ic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.dm-hero-stat__ic--green { background: #dcfce7; color: #16a34a; }
.dm-hero-stat__ic--blue  { background: #dbeafe; color: #1d4ed8; }
.dm-hero-stat__ic--gold  { background: #fef3c7; color: #b45309; }
.dm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
.dm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid transparent;
  text-decoration: none;
}
.dm-btn--primary {
  background: var(--bi-blue);
  color: #fff;
  border-color: var(--bi-blue);
}
.dm-btn--primary:hover {
  background: var(--bi-blue-light);
  border-color: var(--bi-blue-light);
}
.dm-btn--outline {
  background: #fff;
  color: var(--bi-blue);
  border-color: #c5d4f0;
}
.dm-btn--outline:hover {
  border-color: var(--bi-blue);
  background: #f0f4ff;
}

.dm-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0 22px 22px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.dm-panel--kurikulum-preview {
  padding: 20px 22px 22px;
}

.dm-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin: 0 -22px 20px;
  padding: 0 22px;
  overflow-x: auto;
}
.dm-tab {
  border: 0;
  background: none;
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
}
.dm-tab:hover { color: var(--bi-blue); }
.dm-tab.active {
  color: var(--bi-blue);
  border-bottom-color: var(--bi-blue);
}

.dm-section-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.dm-section-sub {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 2px;
}
.dm-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.dm-section-link {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bi-blue);
  white-space: nowrap;
  flex-shrink: 0;
}
.dm-section-link:hover { text-decoration: underline; }

.dm-prose {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.dm-prose p + p { margin-top: 12px; }

.dm-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}
.dm-feature-card {
  background: #f8fafd;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.dm-feature-card__ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.dm-feature-card__ic--green  { background: #dcfce7; color: #16a34a; }
.dm-feature-card__ic--blue   { background: #dbeafe; color: #1d4ed8; }
.dm-feature-card__ic--purple { background: #ede9fe; color: #7c3aed; }
.dm-feature-card__ic--orange { background: #ffedd5; color: #ea580c; }
.dm-feature-card__text {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.dm-callout {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  align-items: flex-start;
}
.dm-callout--blue {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}
.dm-callout--gold {
  background: #fffbeb;
  border: 1px solid #fde68a;
  margin-top: 16px;
  align-items: center;
}
.dm-callout__ic { font-size: 1.25rem; flex-shrink: 0; line-height: 1; }
.dm-callout__title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.dm-callout__text {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}
.dm-callout__text--solo { flex: 1; }

.dm-modul-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 4px;
}
.dm-modul-step {
  background: #f8fafd;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 10px 12px;
  text-align: center;
  position: relative;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dm-modul-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bi-blue);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}
.dm-modul-step__title {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 4px;
  flex: 1;
}
.dm-modul-step__dur {
  font-size: 0.62rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 6px;
}
.dm-modul-step__lock {
  font-size: 0.75rem;
  opacity: 0.45;
}

.dm-checklist {
  list-style: none;
  display: grid;
  gap: 10px;
}
.dm-checklist li {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}
.dm-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 800;
}

.dm-instruktur {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.dm-instruktur__avatar {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bi-blue);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.dm-instruktur__name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
}
.dm-instruktur__role {
  font-size: 0.78rem;
  color: var(--bi-blue);
  font-weight: 700;
  margin-bottom: 8px;
}
.dm-instruktur__bio {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Sidebar */
.dm-col-side {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 84px;
}
.dm-side-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}
.dm-side-card__title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.dm-info-list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.dm-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 600;
  line-height: 1.45;
}
.dm-info-list b {
  font-weight: 800;
  color: var(--text-dark);
  margin-right: 4px;
}
.dm-info-list__ic {
  width: 22px;
  text-align: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.dm-side-card--green {
  background: #f0fdf4;
  border-color: #bbf7d0;
  padding: 0;
}
.dm-side-green {
  display: flex;
  gap: 12px;
  padding: 16px;
  align-items: flex-start;
}
.dm-side-green__ic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.dm-side-green__title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #15803d;
  margin-bottom: 4px;
}
.dm-side-green__text {
  font-size: 0.76rem;
  color: #166534;
  line-height: 1.55;
  margin: 0;
}

.dm-audience-list {
  list-style: none;
  display: grid;
  gap: 10px;
}
.dm-audience-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
}
.dm-audience-list__ic {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #eff6ff;
  color: var(--bi-blue);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.dm-side-card--promo {
  background: linear-gradient(160deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #bfdbfe;
  text-align: center;
  padding: 20px 16px;
}
.dm-promo-illus {
  width: 100px;
  margin: 0 auto 12px;
}
.dm-promo-illus svg { width: 100%; height: auto; }
.dm-promo-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bi-blue);
  line-height: 1.55;
  margin: 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .mp-cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mp-materi-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .dm-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dm-modul-track { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1100px) {
  .materi-grid { grid-template-columns: repeat(3, 1fr); }
  .mp-layout { grid-template-columns: 220px minmax(0, 1fr); }
  .mp-materi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-mockup { display: none; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .navbar-nav { display: none; }
  .hero-title { font-size: 2.2rem; }
  .materi-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero--materi .page-hero-inner { grid-template-columns: 1fr; }
  .mp-hero-visual { display: none; }
  .mp-layout { grid-template-columns: 1fr; }
  .mp-filter { position: static; }
  .mp-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dm-layout { grid-template-columns: 1fr; }
  .dm-col-side { position: static; }
  .dm-hero-card { grid-template-columns: 1fr; }
  .dm-hero-card__thumb { min-height: 160px; }
  .dm-modul-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .features-strip-inner { gap: 20px; }
  .feature-item { min-width: 100%; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-brand { flex: none; }
  .footer-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .materi-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.9rem; }
  .mp-cat-grid { grid-template-columns: 1fr; }
  .mp-materi-grid { grid-template-columns: 1fr; }
  .mp-materi-grid--list .mp-materi-card { grid-template-columns: 1fr; }
  .mp-materi-grid--list .mp-materi-card__thumb { border-radius: 12px 12px 0 0; }
  .mp-pagination { flex-direction: column; align-items: flex-start; }
  .dm-feature-grid { grid-template-columns: 1fr; }
  .dm-modul-track { grid-template-columns: 1fr; }
  .dm-hero-stats { flex-direction: column; gap: 10px; }
}

/* ================================================================
   DETAIL BERITA (detail-berita.html)
   ================================================================ */
.db-page { background: #f8fafd; }
.db-main-wrap {
  padding: 28px 0 56px;
  min-height: 60vh;
}
.db-breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  font-size: 0.8125rem; font-weight: 600; color: var(--text-muted, #64748b);
  margin-bottom: 20px;
}
.db-breadcrumb a { color: var(--bi-blue); text-decoration: none; }
.db-breadcrumb a:hover { text-decoration: underline; }
.db-breadcrumb__home {
  display: inline-flex; align-items: center; color: var(--bi-blue);
}
.db-breadcrumb__sep { color: #94a3b8; }
.db-breadcrumb__current { color: var(--text-mid, #475569); max-width: 280px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.db-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}
.db-article {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 32px 32px;
  box-shadow: 0 4px 24px rgba(0, 48, 135, 0.05);
}
.db-article__head { margin-bottom: 20px; }
.db-cat {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; padding: 4px 10px; border-radius: 999px;
  margin-bottom: 12px;
}
.db-cat--bi { background: var(--bi-blue); color: #fff; }
.db-cat--pandai { background: #4f46e5; color: #fff; }
.db-cat--bismo { background: var(--accent-green, #00B2A9); color: #fff; }
.db-article__title {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800; color: var(--bi-blue-dark, #003087);
  line-height: 1.3; letter-spacing: -0.02em; margin: 0 0 14px;
}
.db-meta {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 0.8125rem; font-weight: 600; color: var(--text-muted, #64748b);
}
.db-meta__item {
  display: inline-flex; align-items: center; gap: 6px;
}
.db-meta__item svg { flex-shrink: 0; opacity: 0.7; }

.db-hero {
  margin: 0 0 24px; border-radius: 12px; overflow: hidden;
  background: #eef3fc; border: 1px solid #e2e8f0;
}
.db-hero img {
  display: block; width: 100%; max-height: 380px;
  object-fit: cover;
}
.db-lead {
  font-size: 1.05rem; font-weight: 600; line-height: 1.65;
  color: #334155; margin-bottom: 24px;
  padding-bottom: 20px; border-bottom: 1px solid #e2e8f0;
}
.db-content {
  font-size: 0.9375rem; line-height: 1.75; color: #374151;
}
.db-content h2 {
  font-size: 1.125rem; font-weight: 800; color: var(--bi-blue-dark, #003087);
  margin: 28px 0 12px;
}
.db-content p { margin: 0 0 16px; }
.db-content ul {
  margin: 0 0 16px; padding-left: 1.25rem;
}
.db-content li { margin-bottom: 8px; }
.db-content strong { color: #1e293b; }

.db-tags {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-top: 28px; padding-top: 20px; border-top: 1px solid #e2e8f0;
}
.db-tags__label {
  font-size: 0.75rem; font-weight: 700; color: var(--text-muted, #64748b);
}
.db-tags__list { display: flex; flex-wrap: wrap; gap: 8px; }
.db-tag {
  font-size: 0.72rem; font-weight: 700; padding: 4px 10px;
  border-radius: 999px; background: #f1f5f9; color: #475569;
}

.db-article__foot {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-top: 28px; padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}
.db-back {
  font-size: 0.875rem; font-weight: 700; color: var(--bi-blue);
  text-decoration: none;
}
.db-back:hover { text-decoration: underline; }
.db-share {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 8px; border: 1px solid #e2e8f0;
  background: #fff; font-size: 0.8125rem; font-weight: 700;
  color: #374151; cursor: pointer;
}
.db-share:hover { border-color: var(--bi-blue); color: var(--bi-blue); }

.db-sidebar { display: grid; gap: 16px; position: sticky; top: 88px; }
.db-side-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 14px;
  padding: 20px; box-shadow: 0 2px 12px rgba(0, 48, 135, 0.04);
}
.db-side-card__title {
  font-size: 0.9375rem; font-weight: 800; color: var(--bi-blue-dark, #003087);
  margin: 0 0 14px;
}
.db-related { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.db-related a {
  display: block; text-decoration: none; padding: 10px 12px;
  border-radius: 10px; border: 1px solid #f1f5f9;
  transition: border-color 0.15s, background 0.15s;
}
.db-related a:hover {
  border-color: #dbeafe; background: #f8fafc;
}
.db-related__date {
  display: block; font-size: 0.68rem; font-weight: 700;
  color: var(--text-muted, #64748b); margin-bottom: 4px;
}
.db-related__title {
  display: block; font-size: 0.8125rem; font-weight: 700;
  color: #1e293b; line-height: 1.4;
}
.db-state-error,
.db-related-empty {
  color: var(--text-mid, #64748b);
  font-size: 0.875rem;
}
.db-state-error { color: #b91c1c; }
.db-side-card--cta {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #bfdbfe;
}
.db-side-card--cta h3 {
  font-size: 1rem; font-weight: 800; color: var(--bi-blue-dark, #003087);
  margin: 0 0 8px;
}
.db-side-card--cta p {
  font-size: 0.8125rem; color: #475569; line-height: 1.55; margin: 0 0 14px;
}
.btn-block { display: block; width: 100%; text-align: center; }

@media (max-width: 960px) {
  .db-layout { grid-template-columns: 1fr; }
  .db-sidebar { position: static; }
  .db-article { padding: 20px 18px 24px; }
}
