/* FE */
/* ============================================================
   DESIGN TOKENS — Amber dominant, Blue accent
   REVISI: amber lebih soft & seimbang, footer navy
   ============================================================ */
:root {
  --gold-900: #D97706;
  --gold-800: #F59E0B;
  --gold-700: #FBBF24;
  --gold-600: #FCD34D;
  --gold:     #F59E0B;
  --gold-light: #FDE68A;
  --gold-100: #FEF3C7;
  --gold-50:  #FFFBEB;

  --blue-950: #0F172A;
  --blue-900: #0A2244;
  --blue-800: #1E3A5F;
  --blue-700: #10408A;
  --blue-600: #1565C0;
  --blue-400: #42A5F5;
  --blue-100: #E3F2FD;
  --blue-50:  #EBF5FB;

  --white:    #FFFFFF;
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;

  --amber-text: #92400E;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
  --shadow-gold: 0 8px 32px rgba(245,158,11,.25);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* CRITICAL FIX: pastikan cb-fab dan cb-window benar-benar fixed */
body > .cb-fab,
body > .cb-window,
body > .back-top {
  position: fixed !important;
  transform: none !important;
  will-change: auto !important;
}

body > .cb-window {
  bottom: 96px !important;
  right: 28px !important;
  top: auto !important;
  left: auto !important;
  width: 360px !important;
  max-height: 540px !important;
  z-index: 9999 !important;
}

body > .cb-fab {
  bottom: 28px !important;
  right: 28px !important;
  top: auto !important;
  left: auto !important;
  z-index: 9999 !important;
}

body > .back-top {
  bottom: 88px !important;
  right: 28px !important;
  top: auto !important;
  left: auto !important;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: 'Inter', sans-serif; color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: clip; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
.section { padding: 96px 0; }

/* ============================================================
   CEK SERTIFIKAT SECTION
   ============================================================ */
.section-sertifikat {
  background: var(--white);
}

.sertifikat__form-wrap {
  max-width: 760px;
  margin: 0 auto 24px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.sertifikat__line {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 32px;
  transition: background var(--transition);
}

.sertifikat__line:hover {
  background: var(--gray-50);
}

.sertifikat__line label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--blue-900);
  flex-shrink: 0;
}

.sertifikat__line label i {
  color: var(--gold-900);
  font-size: 1rem;
  width: 18px;
  text-align: center;
}

.sertifikat__optional {
  font-weight: 400;
  font-size: .78rem;
  color: var(--gray-400);
}

.sertifikat__line input {
  flex: 1;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: .95rem;
  color: var(--gray-800);
  background: transparent;
  padding: 4px 0;
}

.sertifikat__line input::placeholder {
  color: var(--gray-400);
}

.sertifikat__divider {
  height: 1px;
  background: var(--gray-200);
  margin: 0 32px;
}

.sertifikat__action {
  padding: 24px 32px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: center;
}

.btn-cek-sertifikat {
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-900);
  color: var(--white);
  border: none;
  padding: 15px 48px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(10,34,68,.2);
}

.btn-cek-sertifikat:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,101,192,.3);
}

.sertifikat__note {
  text-align: center;
  font-size: .82rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  max-width: 760px;
  margin: 0 auto;
}

.sertifikat__note i {
  color: var(--gold-900);
}

@media (max-width: 600px) {
  .sertifikat__line {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 20px;
  }
  .sertifikat__line label {
    min-width: unset;
  }
  .sertifikat__line input {
    width: 100%;
  }
  .sertifikat__divider {
    margin: 0 20px;
  }
  .sertifikat__action {
    padding: 20px;
  }
  .btn-cek-sertifikat {
    width: 100%;
    justify-content: center;
  }
}

/* EYEBROW variants */
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-text);
  background: var(--gold-100);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section-eyebrow--light {
  color: var(--amber-text);
  background: rgba(253,230,138,.5);
}
.section-eyebrow--gold {
  color: var(--amber-text);
  background: rgba(253,230,138,.5);
}
.section-eyebrow--blue {
  color: var(--blue-600);
  background: var(--blue-100);
}

.section-program .section-eyebrow,
.section-program .section-eyebrow--light {
  color: var(--amber-text);
  background: var(--gold-100);
}

.section-metode .section-eyebrow,
.section-metode .section-eyebrow--light,
.section-metode .section-eyebrow--gold,
.testi-section .section-eyebrow,
.testi-section .section-eyebrow--light,
.testi-section .section-eyebrow--gold {
  color: var(--amber-text);
  background: #FBBF24;
  border: none;
}

.section-heading { margin-bottom: 12px; }
.section-heading--light { color: var(--white); }
.section-heading--dark { color: var(--amber-text); }

.section-sub { color: var(--gray-600); font-size: 1.05rem; max-width: 560px; }
.section-sub--light { color: rgba(255,255,255,.9); }
.section-sub--muted { color: rgba(255,255,255,.75); }
.section-sub--dark { color: var(--gray-600); }

.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* ============================================================
   SECTION COLOR THEMES — revisi
   ============================================================ */

.section-tentang {
  background: linear-gradient(170deg, var(--gold-50) 0%, var(--white) 55%);
}

.section-program {
  background: #FFFDE7;
}

.section-metode {
  background: linear-gradient(145deg, var(--blue-950) 0%, var(--blue-800) 100%);
}

.section-galeri {
  background: var(--white);
}

.section-marketing {
  background: var(--gray-50);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .95rem; padding: 13px 28px; border-radius: var(--radius-sm); border: 2px solid transparent; cursor: pointer; transition: var(--transition); white-space: nowrap; }

.btn-primary { background: var(--blue-600); color: var(--white); border-color: var(--blue-600); }
.btn-primary:hover { background: var(--blue-700); border-color: var(--blue-700); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,.35); }

.btn-gold { background: var(--gold); color: var(--amber-text); border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: var(--gold-700); border-color: var(--gold-700); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--blue-600); border-color: #90CAF9; padding: 9px 20px; font-size: .875rem; }
.btn-ghost:hover { background: var(--blue-100); }

.btn-ghost-light { background: rgba(255,255,255,.15); color: var(--white); border-color: rgba(255,255,255,.4); padding: 9px 20px; font-size: .875rem; }
.btn-ghost-light:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.7); }

/* ============================================================
   NAVBAR — REVISI: scrolled lebih gelap sedikit
   ============================================================ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; transition: var(--transition); }
.navbar.scrolled { background: var(--gold-900); box-shadow: 0 4px 24px rgba(0,0,0,.18); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 8px; }
.navbar__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.navbar__logo-mark { width: 36px; height: 36px; background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; color: #F59E0B; font-family: 'Plus Jakarta Sans', sans-serif; }
.navbar__logo-text { line-height: 1.15; }
.navbar__logo-text strong { display: block; color: var(--white); font-size: .82rem; font-weight: 700; white-space: nowrap; }
.navbar__logo-text span { color: rgba(255,255,255,.75); font-size: .68rem; letter-spacing: .04em; }
.navbar__links { display: flex; align-items: center; gap: 0; }
.navbar__links a { position: relative; color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 500; padding: 7px 10px; border-radius: var(--radius-sm); transition: var(--transition); white-space: nowrap; }
.navbar__links a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--gold-700);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.navbar__links a:hover { color: var(--white); }
.navbar__links a:hover::after,
.navbar__links a.active::after { transform: scaleX(1); }
.navbar__cta { display: flex; gap: 6px; flex-shrink: 0; }
.navbar__cta .btn { padding: 8px 14px; font-size: .78rem; border-radius: 7px; border-width: 1.5px; }
.navbar__cta .btn-gold { background: var(--white); color: #F59E0B; border-color: var(--white); }
.navbar__cta .btn-gold:hover { background: var(--gold-100); border-color: var(--gold-100); }

.navbar__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.navbar__hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--gold-900); padding: 16px 24px 24px; border-top: 1px solid rgba(255,255,255,.2); z-index: 999; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; color: rgba(255,255,255,.9); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.18); font-weight: 500; }
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ============================================================
   HERO BADGE
   ============================================================ */
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(253,230,138,.2); border: 1px solid rgba(253,230,138,.5); color: var(--gold-light); font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 7px 16px; border-radius: 99px; margin-bottom: 24px; }
.hero__badge-dot { width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .5; transform: scale(1.3); } }

/* ============================================================
   TRUST BAR — REVISI: border top amber-600
   ============================================================ */
.trustbar { background: var(--blue-950); padding: 28px 0; border-top: 4px solid var(--gold-900); }
.trustbar__inner { display: flex; align-items: center; justify-content: flex-start; gap: 28px; flex-wrap: wrap; }
.trustbar__logo { width: 110px; height: 110px; object-fit: contain; flex-shrink: 0; }
.trustbar__name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.8rem; line-height: 1.2; color: var(--white); text-transform: uppercase; }
.trustbar__divider { width: 2px; height: 60px; background: rgba(253,230,138,.4); flex-shrink: 0; }
.trustbar__stat-val { font-size: 2rem; font-weight: 800; color: #FBBF24; font-family: 'Plus Jakarta Sans', sans-serif; }
.trustbar__stat-val span { color: rgba(255,255,255,.5); }
.trustbar__stat-lbl { font-size: .8rem; color: rgba(255,255,255,.65); font-weight: 600; }
.trustbar__stats { display: flex; gap: 40px; margin-left: auto; flex-wrap: wrap; }

/* ============================================================
   TENTANG KAMI
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about__image-wrap { position: relative; align-self: stretch; }
.about__image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 100%; }
.about__image img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; object-position: center top; }
.about__floating-card { position: absolute; bottom: -24px; right: -24px; background: var(--white); border-radius: var(--radius-md); padding: 18px 24px; box-shadow: var(--shadow-md); border-left: 4px solid #F59E0B; }
.about__floating-card strong { display: block; font-size: 1.6rem; color: var(--amber-text); font-family: 'Plus Jakarta Sans', sans-serif; }
.about__floating-card span { font-size: .8rem; color: var(--gray-600); }
.about__badge-certified { position: absolute; top: 20px; left: -20px; background: #F59E0B; color: var(--white); border-radius: var(--radius-md); padding: 12px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; }
.about__badge-certified i { color: var(--white); }
.about__highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.about__highlight-item { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--gray-600); }
.about__highlight-item i { color: #F59E0B; font-size: .9rem; flex-shrink: 0; }
.about__visi-misi { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 8px; }
.vm-card { background: var(--gold-50); border-radius: var(--radius-md); padding: 20px; border-top: 3px solid #F59E0B; }
.vm-card--misi { background: var(--blue-50); border-top-color: var(--blue-600); }
.vm-card__label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber-text); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.vm-card--misi .vm-card__label { color: var(--blue-600); }
.vm-card__text { font-size: .875rem; color: var(--gray-600); }

/* ============================================================
   PROGRAM CARDS — REVISI: on amber-soft bg, card putih
   ============================================================ */
.programs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1.5px solid rgba(245,158,11,.3);
  box-shadow: 0 2px 12px rgba(245,158,11,.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.prog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.prog-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 12px 32px rgba(245,158,11,.18); }
.prog-card:hover::before { transform: scaleX(1); }
.prog-card__icon {
  width: 50px; height: 50px;
  background: var(--gold-100);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-900);
  margin-bottom: 18px;
  transition: var(--transition);
}
.prog-card:hover .prog-card__icon { background: var(--gold); color: var(--white); }
.prog-card__name { margin-bottom: 10px; color: var(--amber-text); font-size: 1.1rem; }
.prog-card__desc { font-size: .85rem; color: var(--gray-600); margin-bottom: 20px; }

/* ============================================================
   TRAINING METHODS — on blue dark bg (tidak berubah)
   ============================================================ */
.methods__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.method-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.15);
  transition: var(--transition);
  position: relative;
}
.method-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); }
.method-card__number { position: absolute; top: 14px; right: 18px; font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.2); font-family: 'Plus Jakarta Sans', sans-serif; }
.method-card__icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 18px;
  transition: var(--transition);
}
.method-card:hover .method-card__icon { background: #F59E0B; color: var(--white); border-color: #F59E0B; }
.method-card__title { margin-bottom: 8px; color: var(--white); font-size: 1rem; }
.method-card__text { font-size: .83rem; color: rgba(255,255,255,.7); line-height: 1.6; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto; gap: 16px; }
.gallery__item { border-radius: var(--radius-md); overflow: hidden; cursor: pointer; position: relative; }
.gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery__item:nth-child(5) { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4,0,.2,1); min-height: 180px; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(217,119,6,.7) 0%, transparent 60%); opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; justify-content: space-between; padding: 16px; }
.gallery__item:hover .gallery__item__overlay { opacity: 1; }
.gallery__item__overlay span { color: var(--white); font-size: .85rem; font-weight: 500; }
.gallery__item__overlay i { color: #FDE68A; font-size: 1.1rem; }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.92); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 20px; right: 24px; color: var(--white); font-size: 1.5rem; cursor: pointer; line-height: 1; background: none; border: none; transition: var(--transition); }
.lightbox__close:hover { color: #FBBF24; transform: rotate(90deg); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: var(--white); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; transition: var(--transition); }
.lightbox__nav:hover { background: #F59E0B; color: var(--white); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .875rem; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testi-section { background: var(--blue-950); }
.testi-carousel { position: relative; margin-bottom: 48px; }
.testi-track-wrap { overflow: hidden; border-radius: var(--radius-lg); }
.testi-track { display: flex; gap: 0; transition: transform .6s cubic-bezier(.4,0,.2,1); will-change: transform; }
.testi-card {
  flex: 0 0 calc(100% / 3);
  min-width: calc(100% / 3);
  box-sizing: border-box;
  padding: 28px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 0;
  transition: background var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-card + .testi-card { border-left: 1px solid rgba(255,255,255,.08); }
.testi-card:hover { background: rgba(255,255,255,.10); }
.testi-card--featured { background: rgba(251,191,36,.12); border-color: rgba(251,191,36,.4); }
.testi-card--featured:hover { background: rgba(251,191,36,.18); }
.testi-card__quote-icon { color: #FBBF24; font-size: 1.8rem; opacity: .8; line-height: 1; }
.testi-card__stars { display: flex; gap: 3px; }
.testi-card__stars i { color: #FBBF24; font-size: .85rem; }
.testi-card__text { color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.7; flex: 1; }
.testi-card--featured .testi-card__text { color: rgba(255,255,255,.95); }
.testi-card__author { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; margin-top: auto; }
.testi-card__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(251,191,36,.6); flex-shrink: 0; }
.testi-card__author strong { display: block; color: var(--white); font-size: .9rem; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; }
.testi-card__author span { font-size: .78rem; color: rgba(255,255,255,.5); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.testi-nav-btn { width: 44px; height: 44px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--white); font-size: 1rem; transition: var(--transition); }
.testi-nav-btn:hover { background: #F59E0B; border-color: #F59E0B; color: var(--white); }
.testi-dots { display: flex; gap: 8px; align-items: center; }
.testi-dot { width: 8px; height: 8px; border-radius: 99px; background: rgba(255,255,255,.25); cursor: pointer; transition: var(--transition); border: none; }
.testi-dot.active { background: #FBBF24; width: 24px; }
.testi__summary { display: flex; justify-content: center; padding-top: 12px; }
.testi__rating-big { display: flex; align-items: center; gap: 20px; background: rgba(251,191,36,.1); border: 1px solid rgba(251,191,36,.3); border-radius: var(--radius-md); padding: 20px 36px; }
.testi__rating-num { font-size: 3.5rem; font-weight: 800; color: #FBBF24; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.testi__rating-stars { display: flex; gap: 4px; margin-bottom: 6px; }
.testi__rating-stars i { color: #FBBF24; font-size: 1.1rem; }
.testi__rating-count { color: rgba(255,255,255,.55); font-size: .85rem; }

/* ============================================================
   MARKETING TEAM
   ============================================================ */
.marketing__slider { position: relative; max-width: 520px; margin: 0 auto; }
.mkt-card {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
  border: 1px solid var(--gray-200);
  animation: fadeIn .4s ease;
  flex-direction: row;
  align-items: stretch;
}
.mkt-card.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }
.mkt-card__photo { width: 185px; flex-shrink: 0; position: relative; overflow: hidden; background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.mkt-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.mkt-card__body { flex: 1; padding: 22px 20px; display: flex; flex-direction: column; justify-content: center; gap: 8px; border-left: 4px solid #F59E0B; }
.mkt-card__name { font-size: 1.1rem; font-weight: 600; color: var(--amber-text); font-family: 'Plus Jakarta Sans', sans-serif; }
.mkt-card__role { display: inline-block; background: var(--gold-100); color: var(--amber-text); font-size: .75rem; font-weight: 600; padding: 3px 10px; border-radius: 99px; width: fit-content; }
.mkt-card__cta { display: inline-flex; align-items: center; gap: 7px; background: #25D366; color: var(--white); font-weight: 600; padding: 9px 16px; font-size: .82rem; border-radius: var(--radius-sm); transition: var(--transition); margin-top: 6px; align-self: flex-start; }
.mkt-card__cta:hover { background: #1DA851; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.3); }
.marketing__controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 24px; }
.mkt-nav-btn { width: 40px; height: 40px; background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: .95rem; color: #F59E0B; transition: var(--transition); box-shadow: var(--shadow-sm); }
.mkt-nav-btn:hover { background: #F59E0B; color: var(--white); border-color: #F59E0B; }
.mkt-dots { display: flex; gap: 7px; }
.mkt-dot { width: 7px; height: 7px; border-radius: 99px; background: var(--gray-200); cursor: pointer; transition: var(--transition); }
.mkt-dot.active { background: #F59E0B; width: 22px; }
.mkt-counter { color: var(--gray-400); font-size: .82rem; }

@media (max-width: 600px) {
  .mkt-card.active { flex-direction: column; }
  .mkt-card__photo { width: 100%; height: 220px; }
  .mkt-card__body { border-left: none; border-top: 4px solid #F59E0B; }
}

/* ============================================================
   FOOTER — REVISI: navy gelap bukan amber
   ============================================================ */
.footer { background: var(--blue-800); color: rgba(255,255,255,.85); padding: 72px 0 0; border-top: 4px solid var(--gold); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.15); }
.footer__brand p { font-size: .875rem; margin-top: 12px; line-height: 1.7; color: rgba(255,255,255,.65); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 36px; height: 36px; background: rgba(255,255,255,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.75); font-size: .95rem; transition: var(--transition); }
.footer__social a:hover { background: var(--gold); color: var(--white); }
.footer__col h4 { color: var(--gold-700); font-size: .95rem; margin-bottom: 20px; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a { font-size: .875rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer__col ul a:hover { color: var(--gold-700); opacity: 1; }
.footer__contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: .875rem; color: rgba(255,255,255,.7); }
.footer__contact-item span { color: var(--gold-700); flex-shrink: 0; margin-top: 2px; }
.footer__bottom { padding: 20px 0; display: flex; justify-content: center; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: 12px; text-align: center; color: rgba(255,255,255,.4); }

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

/* ============================================================
   CHATBOT FLOATING
   ============================================================ */
.cb-fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  box-shadow: 0 4px 20px rgba(10,34,68,.35);
  transition: var(--transition); z-index: 500;
}
.cb-fab:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 28px rgba(10,34,68,.4); }
.cb-fab i { font-size: 1.5rem; color: var(--white); transition: var(--transition); }
.cb-fab.open i { transform: rotate(90deg); }

.cb-badge {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: var(--gold); border-radius: 50%;
  border: 2px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .58rem; font-weight: 800; color: var(--amber-text);
  animation: pulse 2s infinite;
}

.cb-window {
  position: fixed; bottom: 96px; right: 28px;
  width: 360px; max-height: 540px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  display: flex; flex-direction: column; overflow: hidden;
  z-index: 499;
  transform: scale(.92) translateY(16px);
  opacity: 0; pointer-events: none;
  transition: .3s cubic-bezier(.4,0,.2,1);
}

/* FIX: Gunakan !important untuk mengoverride setelan default yang menimpa animasi saat open */
.cb-window.open { 
  transform: scale(1) translateY(0) !important; 
  opacity: 1 !important; 
  pointer-events: all !important; 
}

.cb-head {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-600) 100%);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.cb-head__avatar {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.15);
  border-radius: 50%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cb-head__avatar img { width: 100%; height: 100%; object-fit: contain; }
.cb-head__info { flex: 1; }
.cb-head__info strong { display: block; color: var(--white); font-size: .88rem; font-weight: 700; }
.cb-head__info span { font-size: .72rem; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 4px; }
.cb-head__status {
  width: 8px; height: 8px;
  background: #4ade80; border-radius: 50%;
  animation: pulse 2s infinite; display: inline-block;
}
.cb-head__close {
  background: rgba(255,255,255,.15); border: none;
  width: 30px; height: 30px; border-radius: 50%;
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cb-head__close:hover { background: rgba(255,255,255,.25); }

.cb-body {
  flex: 1; overflow-y: auto;
  padding: 16px; display: flex; flex-direction: column;
  gap: 10px; background: var(--gray-50);
  min-height: 240px; max-height: 320px;
}
.cb-body::-webkit-scrollbar { width: 4px; }
.cb-body::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 99px; }

.cb-msg { display: flex; flex-direction: column; max-width: 82%; animation: cbMsgIn .25s ease; }
@keyframes cbMsgIn { from { opacity:0; transform:translateY(6px); } to { opacity:1; transform:translateY(0); } }
.cb-msg.bot { align-self: flex-start; }
.cb-msg.user { align-self: flex-end; }
.cb-msg__bubble { padding: 10px 14px; border-radius: 14px; font-size: .82rem; line-height: 1.55; }
.cb-msg.bot .cb-msg__bubble { background: var(--white); color: var(--gray-800); border: 1px solid var(--gray-200); border-bottom-left-radius: 4px; }
.cb-msg.user .cb-msg__bubble { background: var(--blue-600); color: var(--white); border-bottom-right-radius: 4px; }
.cb-msg__time { font-size: .65rem; color: var(--gray-400); margin-top: 4px; padding: 0 4px; }
.cb-msg.user .cb-msg__time { text-align: right; }

.cb-typing { display: flex; align-items: center; gap: 5px; padding: 10px 14px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; border-bottom-left-radius: 4px; align-self: flex-start; animation: cbMsgIn .25s ease; }
.cb-typing span { width: 7px; height: 7px; background: var(--gray-400); border-radius: 50%; animation: cbBounce .8s ease infinite; }
.cb-typing span:nth-child(2) { animation-delay: .15s; }
.cb-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes cbBounce { 0%,60%,100% { transform:translateY(0); } 30% { transform:translateY(-6px); } }

.cb-quick { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 16px 8px; background: var(--gray-50); border-top: 1px solid var(--gray-100); }
.cb-quick__btn { background: var(--white); border: 1px solid var(--gray-200); border-radius: 99px; padding: 5px 12px; font-family: inherit; font-size: .72rem; font-weight: 600; color: var(--blue-600); cursor: pointer; transition: var(--transition); white-space: nowrap; }
.cb-quick__btn:hover { border-color: var(--blue-600); background: var(--blue-50); }

.cb-foot { padding: 12px 14px; background: var(--white); border-top: 1px solid var(--gray-100); display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.cb-foot input { flex: 1; border: 1px solid var(--gray-200); border-radius: 99px; padding: 9px 16px; font-size: .83rem; font-family: inherit; color: var(--gray-800); background: var(--gray-50); outline: none; transition: var(--transition); }
.cb-foot input:focus { border-color: var(--blue-600); background: var(--white); }
.cb-foot input::placeholder { color: var(--gray-400); }
.cb-send { width: 36px; height: 36px; background: var(--blue-600); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; transition: var(--transition); }
.cb-send:hover { background: var(--blue-900); }
.cb-send i { color: var(--white); font-size: .9rem; }

@media (max-width: 480px) {
  .cb-window { width: calc(100vw - 24px); right: 12px; bottom: 80px; }
  .cb-fab { bottom: 18px; right: 18px; }
}

.cb-fab,
.cb-window {
  position: fixed !important;
}

.cb-window {
  bottom: 96px !important;
  right: 28px !important;
  top: auto !important;
  left: auto !important;
}

.cb-fab {
  bottom: 28px !important;
  right: 28px !important;
  top: auto !important;
  left: auto !important;
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel { position: relative; width: 100%; height: 100vh; min-height: 600px; overflow: hidden; }
.hc__track { display: flex; height: 100%; transition: transform .8s cubic-bezier(.4,0,.2,1); }
.hc__slide { position: relative; min-width: 100%; height: 100%; flex-shrink: 0; }
.hc__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hc__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,34,68,.82) 0%, rgba(30,58,95,.55) 55%, rgba(245,158,11,.15) 100%); }
.hc__content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; padding-top: 80px; padding-bottom: 100px; }
.hc__text { max-width: 640px; }
.hc__title { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 800; color: var(--white); margin-bottom: 20px; line-height: 1.15; font-family: 'Plus Jakarta Sans', sans-serif; }
.hc__title span { color: #FDE68A; }
.hc__sub { color: rgba(255,255,255,.9); font-size: 1.1rem; max-width: 500px; margin-bottom: 36px; }
.hc__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hc__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--white); font-size: 1.1rem; transition: var(--transition); z-index: 10; }
.hc__btn:hover { background: #F59E0B; border-color: #F59E0B; color: var(--white); }
.hc__btn--prev { left: 24px; }
.hc__btn--next { right: 24px; }
.hc__dots { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.hc__dot { width: 8px; height: 8px; border-radius: 99px; background: rgba(255,255,255,.45); cursor: pointer; transition: var(--transition); border: none; }
.hc__dot.active { background: #FDE68A; width: 28px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 100px; }
  .programs__grid { grid-template-columns: repeat(2, 1fr); }
  .methods__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item:nth-child(1) { grid-column: span 2; }
  .gallery__item:nth-child(5) { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .testi-card { flex: 0 0 50%; min-width: 50%; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__floating-card { display: none; }
  .about__badge-certified { display: none; }
  .about__visi-misi { grid-template-columns: 1fr; }
  .about__highlights { grid-template-columns: 1fr; }
  .programs__grid { grid-template-columns: 1fr; }
  .methods__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item:nth-child(1) { grid-column: span 2; }
  .gallery__item:nth-child(5) { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .trustbar__inner { justify-content: center; text-align: center; }
  .trustbar__name { font-size: 1.2rem; }
  .trustbar__divider { display: none; }
  .trustbar__stats { margin-left: 0; justify-content: center; }
  .hero-carousel { height: 100svh; min-height: 580px; }
  .hc__title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .hc__btn { width: 40px; height: 40px; font-size: .9rem; }
  .hc__btn--prev { left: 12px; }
  .hc__btn--next { right: 12px; }
  .testi-card { flex: 0 0 100%; min-width: 100%; }
  .testi__rating-big { flex-direction: column; text-align: center; padding: 20px 24px; }
  .back-top { bottom: 82px; right: 20px; }
}
@media (max-width: 480px) {
  .methods__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item:nth-child(1) { grid-column: span 1; }
  .gallery__item:nth-child(5) { grid-column: span 1; }
  .hc__actions { flex-direction: column; }
  .hc__actions .btn { width: 100%; justify-content: center; }
}

/* Prevent all carousels and tracks from causing horizontal overflow */
.hc__track, .testi-track, .testi-track-wrap, .hero-carousel,
.marketing__slider, #marketingCards {
  max-width: 100%;
}

/* BE */
:root{
  --gold:#F59E0B; --gold-700:#FBBF24; --gold-900:#D97706; --gold-100:#FEF3C7; --gold-50:#FFFBEB;
  --blue-950:#0F172A; --blue-800:#1E3A5F; --blue-600:#1565C0; --blue-100:#E3F2FD;
  --white:#FFFFFF; --gray-50:#F8FAFC; --gray-100:#F1F5F9; --gray-200:#E2E8F0;
  --gray-400:#94A3B8; --gray-500:#64748B; --gray-600:#475569; --gray-800:#1E293B;
  --amber-text:#92400E;
  --success:#16A34A; --success-bg:#DCFCE7;
  --danger:#DC2626; --danger-bg:#FEE2E2;
  --warning-bg:#FEF3C7;
  --radius-sm:8px; --radius-md:14px; --radius-lg:20px;
  --shadow-sm:0 2px 8px rgba(15,23,42,.05);
  --shadow-md:0 8px 28px rgba(15,23,42,.08);
  --transition:.25s cubic-bezier(.4,0,.2,1);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body{font-family:'Inter',sans-serif;color:var(--gray-800);background:var(--gray-50);line-height:1.5}
h1,h2,h3,h4{font-family:'Plus Jakarta Sans',sans-serif;line-height:1.25}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer}

/* ===== LAYOUT ===== */
.dashboard{display:flex;min-height:100vh}
.sidebar{
  width:264px;flex-shrink:0;position:fixed;top:0;left:0;height:100vh;overflow-y:auto;
  background:linear-gradient(195deg,var(--blue-950) 0%,var(--blue-800) 100%);
  color:rgba(255,255,255,.85);z-index:1000;transition:transform var(--transition);
}
.sidebar::-webkit-scrollbar{width:5px}
.sidebar::-webkit-scrollbar-thumb{background:rgba(255,255,255,.15);border-radius:99px}
.main{flex:1;margin-left:264px;min-width:0;transition:margin var(--transition)}

/* ===== SIDEBAR BRAND ===== */
.sb-brand{display:flex;align-items:center;gap:12px;padding:22px 20px;border-bottom:1px solid rgba(255,255,255,.1)}
.sb-brand__mark{width:42px;height:42px;background:var(--white);border-radius:10px;display:flex;align-items:center;justify-content:center;font-family:'Plus Jakarta Sans',sans-serif;font-weight:800;color:var(--gold);font-size:1.05rem;flex-shrink:0;overflow:hidden}
.sb-brand__mark img{width:100%;height:100%;object-fit:contain}
.sb-brand__text strong{display:block;color:var(--white);font-size:.92rem;font-weight:700}
.sb-brand__text span{display:block;color:rgba(255,255,255,.5);font-size:.7rem;letter-spacing:.04em;margin-top:2px}

/* ===== SIDEBAR NAV ===== */
.sb-nav{padding:14px 12px 24px}
.sb-label{font-size:.68rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.32);padding:16px 12px 6px}
.sb-link{display:flex;align-items:center;gap:12px;padding:10px 12px;border-radius:var(--radius-sm);font-size:.875rem;font-weight:500;color:rgba(255,255,255,.75);transition:var(--transition);position:relative;border-left:3px solid transparent;margin-bottom:2px}
.sb-link i{width:18px;text-align:center;font-size:.95rem;color:rgba(255,255,255,.5);transition:var(--transition)}
.sb-link:hover{background:rgba(255,255,255,.06);color:var(--white)}
.sb-link.active{background:rgba(251,191,36,.12);color:var(--white);border-left-color:var(--gold-700)}
.sb-link.active i{color:var(--gold-700)}
.sb-link .sb-badge{margin-left:auto;background:var(--gold);color:var(--amber-text);font-size:.68rem;font-weight:700;padding:1px 7px;border-radius:99px}

/* ===== SIDEBAR FOOTER (USER) ===== */
.sb-user{display:flex;align-items:center;gap:10px;padding:16px 18px;border-top:1px solid rgba(255,255,255,.1);margin-top:auto}
.sb-user__avatar{width:38px;height:38px;border-radius:50%;background:var(--gold);color:var(--amber-text);display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.85rem;flex-shrink:0}
.sb-user__info strong{display:block;color:var(--white);font-size:.85rem}
.sb-user__info span{display:block;color:rgba(255,255,255,.5);font-size:.72rem}

/* ===== TOPBAR ===== */
.topbar{position:sticky;top:0;z-index:900;background:var(--white);border-bottom:1px solid var(--gray-200);display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 28px}
.topbar__left{display:flex;align-items:center;gap:14px;min-width:0}
.topbar__hamburger{display:none;width:38px;height:38px;border:1px solid var(--gray-200);border-radius:var(--radius-sm);background:var(--white);align-items:center;justify-content:center;color:var(--gray-600);font-size:1rem;flex-shrink:0}
.topbar__title h1{font-size:1.2rem;font-weight:800;color:var(--gray-800)}
.topbar__title span{font-size:.8rem;color:var(--gray-500)}
.topbar__right{display:flex;align-items:center;gap:14px;flex-shrink:0}
.topbar__search{display:flex;align-items:center;gap:8px;background:var(--gray-100);border-radius:99px;padding:9px 16px;color:var(--gray-500);font-size:.85rem;min-width:220px}
.topbar__search input{background:none;border:none;outline:none;width:100%;font-size:.85rem;color:var(--gray-800)}
.topbar__icon-btn{width:38px;height:38px;border-radius:50%;background:var(--gray-100);display:flex;align-items:center;justify-content:center;color:var(--gray-600);font-size:.95rem;position:relative;border:none}
.topbar__icon-btn .dot{position:absolute;top:7px;right:8px;width:8px;height:8px;background:var(--gold);border:2px solid var(--white);border-radius:50%}

/* ===== CONTENT / PAGES ===== */
.content{padding:24px 28px 60px}
.page{display:none;animation:fadeIn .35s ease}
.page.active{display:block}
@keyframes fadeIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}

/* ===== GENERIC CARD ===== */
.card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-md);box-shadow:var(--shadow-sm)}
.card__head{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:18px 22px;border-bottom:1px solid var(--gray-100)}
.card__head h3{font-size:1rem;color:var(--gray-800)}
.card__head p{font-size:.8rem;color:var(--gray-500);margin-top:2px}
.card__body{padding:20px 22px}

/* ===== STAT GRID ===== */
.stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-bottom:22px}
.stat-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-md);padding:20px;box-shadow:var(--shadow-sm);position:relative;overflow:hidden}
.stat-card__icon{width:42px;height:42px;border-radius:11px;display:flex;align-items:center;justify-content:center;font-size:1.05rem;margin-bottom:14px}
.stat-card__icon--gold{background:var(--gold-100);color:var(--gold-900)}
.stat-card__icon--blue{background:var(--blue-100);color:var(--blue-600)}
.stat-card__icon--green{background:var(--success-bg);color:var(--success)}
.stat-card__icon--navy{background:rgba(15,23,42,.06);color:var(--blue-950)}
.stat-card__val{font-family:'Plus Jakarta Sans',sans-serif;font-size:1.7rem;font-weight:800;color:var(--gray-800)}
.stat-card__lbl{font-size:.8rem;color:var(--gray-500);margin-top:2px}
.stat-card__delta{font-size:.74rem;font-weight:700;margin-top:10px;display:inline-flex;align-items:center;gap:4px}
.stat-card__delta.up{color:var(--success)}
.stat-card__delta.down{color:var(--danger)}

/* ===== ROW / GRID HELPERS ===== */
.row-2{display:grid;grid-template-columns:1.3fr 1fr;gap:18px;margin-bottom:18px}
.row-2--rev{display:grid;grid-template-columns:1fr 1.6fr;gap:18px;margin-bottom:18px}

/* ===== BAR LIST (performa) ===== */
.bar-item{margin-bottom:14px}
.bar-item:last-child{margin-bottom:0}
.bar-item__top{display:flex;justify-content:space-between;font-size:.82rem;margin-bottom:6px}
.bar-item__top span:first-child{font-weight:600;color:var(--gray-800)}
.bar-item__top span:last-child{color:var(--gray-500)}
.bar-track{height:8px;background:var(--gray-100);border-radius:99px;overflow:hidden}
.bar-fill{height:100%;border-radius:99px;background:linear-gradient(90deg,var(--gold-900),var(--gold))}

/* ===== DONUT-ish PROGRAM LIST ===== */
.prog-item{display:flex;align-items:center;gap:12px;padding:10px 0;border-bottom:1px solid var(--gray-100)}
.prog-item:last-child{border-bottom:none}
.prog-item__dot{width:10px;height:10px;border-radius:50%;flex-shrink:0}
.prog-item__name{flex:1;font-size:.85rem;color:var(--gray-800);font-weight:500}
.prog-item__pct{font-size:.82rem;font-weight:700;color:var(--gray-600)}

/* ===== TABLE ===== */
.table-wrap{overflow-x:auto}
table{width:100%;border-collapse:collapse;font-size:.85rem}
thead th{text-align:left;font-size:.72rem;letter-spacing:.06em;text-transform:uppercase;color:var(--gray-500);padding:0 16px 12px;font-weight:700;white-space:nowrap}
tbody td{padding:13px 16px;border-top:1px solid var(--gray-100);color:var(--gray-800);white-space:nowrap}
tbody tr:hover{background:var(--gray-50)}
.cell-main{font-weight:600}
.cell-sub{font-size:.75rem;color:var(--gray-500);font-weight:400}

/* ===== BADGES ===== */
.badge{display:inline-flex;align-items:center;gap:5px;font-size:.72rem;font-weight:700;padding:4px 10px;border-radius:99px;white-space:nowrap}
.badge--success{background:var(--success-bg);color:var(--success)}
.badge--warning{background:var(--warning-bg);color:var(--amber-text)}
.badge--danger{background:var(--danger-bg);color:var(--danger)}
.badge--gray{background:var(--gray-100);color:var(--gray-600)}
.badge--blue{background:var(--blue-100);color:var(--blue-600)}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;gap:7px;font-weight:600;font-size:.82rem;padding:9px 16px;border-radius:var(--radius-sm);border:1.5px solid transparent;transition:var(--transition);white-space:nowrap}
.btn-gold{background:var(--gold);color:var(--amber-text);border-color:var(--gold)}
.btn-gold:hover{background:var(--gold-700);border-color:var(--gold-700)}
.btn-navy{background:var(--blue-950);color:var(--white);border-color:var(--blue-950)}
.btn-navy:hover{background:var(--blue-800)}
.btn-outline{background:var(--white);color:var(--gray-600);border-color:var(--gray-200)}
.btn-outline:hover{border-color:var(--gold);color:var(--amber-text)}
.btn-icon{width:34px;height:34px;padding:0;justify-content:center;border-radius:var(--radius-sm)}
.btn-sm{padding:6px 12px;font-size:.76rem}

/* ===== ACTION BAR ===== */
.action-bar{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;margin-bottom:16px}
.action-bar__search{display:flex;align-items:center;gap:8px;background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-sm);padding:9px 14px;min-width:240px;color:var(--gray-400)}
.action-bar__search input{border:none;outline:none;background:none;font-size:.85rem;width:100%;color:var(--gray-800)}
.action-bar__buttons{display:flex;gap:8px;flex-wrap:wrap}

/* ===== FORMS ===== */
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field{display:flex;flex-direction:column;gap:6px}
.field.full{grid-column:1 / -1}
.field label{font-size:.8rem;font-weight:600;color:var(--gray-700)}
.field input,.field select,.field textarea{border:1px solid var(--gray-200);border-radius:var(--radius-sm);padding:11px 14px;font-size:.875rem;font-family:inherit;color:var(--gray-800);transition:var(--transition);background:var(--white)}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(245,158,11,.15)}
.radio-group{display:flex;gap:18px;flex-wrap:wrap}
.radio-group label{display:flex;align-items:center;gap:7px;font-size:.85rem;color:var(--gray-700);font-weight:500}
.upload-box{border:1.5px dashed var(--gray-200);border-radius:var(--radius-sm);padding:22px;text-align:center;color:var(--gray-500);font-size:.82rem;background:var(--gray-50);cursor:pointer;transition:var(--transition)}
.upload-box:hover{border-color:var(--gold);color:var(--amber-text)}
.upload-box i{font-size:1.4rem;color:var(--gold);display:block;margin-bottom:8px}

/* ===== CLIENT PERORANGAN ===== */
.profile-card{text-align:center;padding:28px 22px}
.profile-card__avatar{width:84px;height:84px;border-radius:50%;background:linear-gradient(135deg,var(--gold-900),var(--gold-700));color:var(--white);display:flex;align-items:center;justify-content:center;font-size:1.7rem;font-weight:800;font-family:'Plus Jakarta Sans',sans-serif;margin:0 auto 14px}
.profile-card__name{font-size:1.05rem;color:var(--gray-800)}
.profile-card__role{font-size:.8rem;color:var(--gray-500);margin-bottom:18px}
.profile-info{text-align:left;border-top:1px solid var(--gray-100);padding-top:16px;margin-top:6px}
.profile-info__row{display:flex;justify-content:space-between;font-size:.82rem;padding:7px 0}
.profile-info__row span:first-child{color:var(--gray-500)}
.profile-info__row span:last-child{font-weight:600;color:var(--gray-800)}

/* Member digital card */
.member-card{background:linear-gradient(135deg,var(--blue-950) 0%,var(--blue-800) 60%,var(--gold-900) 130%);border-radius:var(--radius-lg);padding:22px;color:var(--white);position:relative;overflow:hidden}
.member-card::after{content:'';position:absolute;width:200px;height:200px;background:rgba(251,191,36,.12);border-radius:50%;top:-90px;right:-60px}
.member-card__top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:22px;position:relative;z-index:1}
.member-card__brand{font-size:.72rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--gold-700)}
.member-card__brand small{display:block;font-size:.62rem;letter-spacing:.06em;color:rgba(255,255,255,.55);font-weight:600;margin-top:2px}
.member-card__qr{background:var(--white);border-radius:10px;padding:6px;width:64px;height:64px;display:flex;align-items:center;justify-content:center}
.member-card__name{font-size:1.05rem;font-weight:700;margin-bottom:4px;position:relative;z-index:1}
.member-card__id{font-size:.78rem;color:rgba(255,255,255,.6);letter-spacing:.08em;position:relative;z-index:1}
.member-card__foot{display:flex;justify-content:space-between;margin-top:20px;font-size:.7rem;color:rgba(255,255,255,.55);position:relative;z-index:1}
.member-card__foot strong{display:block;color:var(--white);font-size:.82rem;font-weight:700}

/* ===== KANBAN (CRM) ===== */
.kanban{display:grid;grid-template-columns:repeat(5,minmax(220px,1fr));gap:14px;overflow-x:auto;padding-bottom:6px}
.kanban-col{background:var(--gray-100);border-radius:var(--radius-md);padding:12px;min-width:220px}
.kanban-col__head{display:flex;align-items:center;justify-content:space-between;padding:4px 6px 12px}
.kanban-col__head h4{font-size:.8rem;font-weight:700;color:var(--gray-700)}
.kanban-col__count{background:var(--white);font-size:.7rem;font-weight:700;color:var(--gray-500);padding:2px 8px;border-radius:99px}
.kanban-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-sm);padding:12px;margin-bottom:10px;box-shadow:var(--shadow-sm);transition:var(--transition)}
.kanban-card:hover{border-color:var(--gold);transform:translateY(-2px)}
.kanban-card__title{font-size:.85rem;font-weight:700;color:var(--gray-800);margin-bottom:4px}
.kanban-card__meta{font-size:.74rem;color:var(--gray-500);margin-bottom:8px}
.kanban-card__foot{display:flex;justify-content:space-between;align-items:center;font-size:.72rem}
.kanban-card__value{font-weight:700;color:var(--gold-900)}
.kanban-card__pic{display:flex;align-items:center;gap:6px;color:var(--gray-500)}
.kanban-card__pic span{width:20px;height:20px;border-radius:50%;background:var(--blue-100);color:var(--blue-600);display:flex;align-items:center;justify-content:center;font-size:.62rem;font-weight:800}

/* ===== TEAM GRID ===== */
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.team-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-md);padding:20px;text-align:center;box-shadow:var(--shadow-sm);transition:var(--transition)}
.team-card:hover{transform:translateY(-4px);border-color:var(--gold);box-shadow:var(--shadow-md)}
.team-card__avatar{width:60px;height:60px;border-radius:50%;margin:0 auto 12px;object-fit:cover;border:3px solid var(--gold-100)}
.team-card__name{font-size:.92rem;color:var(--gray-800)}
.team-card__role{font-size:.76rem;color:var(--gray-500);margin-bottom:12px}
.team-card__stats{display:flex;justify-content:center;gap:18px;border-top:1px solid var(--gray-100);padding-top:12px;margin-top:6px}
.team-card__stats div strong{display:block;font-size:1rem;color:var(--gold-900);font-family:'Plus Jakarta Sans',sans-serif}
.team-card__stats div span{font-size:.68rem;color:var(--gray-500)}

/* ===== SOCIAL GRID ===== */
.social-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.social-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius-md);padding:22px;box-shadow:var(--shadow-sm);text-align:center}
.social-card__icon{width:52px;height:52px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:1.4rem;color:var(--white);margin:0 auto 14px}
.social-card__val{font-size:1.4rem;font-weight:800;font-family:'Plus Jakarta Sans',sans-serif;color:var(--gray-800)}
.social-card__lbl{font-size:.78rem;color:var(--gray-500);margin-bottom:14px}

/* ===== CEK SERTIFIKAT ===== */
.check-wrap{max-width:560px;margin:0 auto}
.check-box{display:flex;gap:10px}
.check-box input{flex:1}
.cert-result{margin-top:22px;border:1.5px solid var(--success);background:var(--success-bg);border-radius:var(--radius-md);padding:20px;display:flex;gap:16px;align-items:center}
.cert-result__icon{width:46px;height:46px;border-radius:50%;background:var(--success);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0}
.cert-result__body strong{display:block;color:var(--gray-800);font-size:.95rem}
.cert-result__body span{font-size:.8rem;color:var(--gray-600)}
.cert-result__grid{display:grid;grid-template-columns:1fr 1fr;gap:6px 22px;margin-top:10px;font-size:.8rem;color:var(--gray-600)}
.cert-result__grid b{color:var(--gray-800)}

/* ===== RESPONSIVE ===== */
@media (max-width:1180px){
  .stat-grid{grid-template-columns:repeat(2,1fr)}
  .row-2,.row-2--rev{grid-template-columns:1fr}
  .team-grid{grid-template-columns:repeat(2,1fr)}
  .social-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:900px){
  .sidebar{transform:translateX(-100%)}
  .sidebar.open{transform:translateX(0);box-shadow:0 0 40px rgba(0,0,0,.25)}
  .main{margin-left:0}
  .topbar__hamburger{display:flex}
  .topbar__search{display:none}
  .form-grid{grid-template-columns:1fr}
  .kanban{grid-template-columns:repeat(5,220px)}
}
@media (max-width:560px){
  .stat-grid{grid-template-columns:1fr}
  .social-grid{grid-template-columns:1fr}
  .content{padding:18px 14px 50px}
  .topbar{padding:12px 14px}
}