:root {
  --g: #178f6c;
  --gd: #0e5e47;
  --gm: #1db88e;
  --gl: #e8f5ec;
  --gold: #d4980d;
  --gold2: #f0c030;
  --white: #fff;
  --bg: #f5f7f5;
  --border: #d8ead0;
  --text: #1c2a1e;
  --muted: #5e7566;
  --shadow: 0 8px 36px rgba(15, 68, 35, 0.1);
  --r: 14px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--gd);
  color: #bdd9c5;
  font-size: 0.76rem;
  padding: 6px 0;
  border-bottom: 2px solid var(--gold);
}
.topbar a {
  color: #bdd9c5;
  text-decoration: none;
}
.topbar a:hover {
  color: var(--gold2);
}

/* ── NAVBAR ── */
.navbar-main {
  background: var(--g);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}
.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.brand-text .l1 {
  font-size: 0.67rem;
  color: #b8d9c0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1;
}
.brand-text .l2 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.nav-lk {
  color: #cde8d4 !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 7px 12px !important;
  border-radius: 7px;
  transition: all 0.2s;
}
.nav-lk:hover,
.nav-lk.active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white) !important;
}
.btn-back {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 700;
  padding: 7px 16px !important;
  transition: all 0.2s;
}
.btn-back:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ── BREADCRUMB HERO ── */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--gd) 0%,
    var(--g) 60%,
    var(--gm) 100%
  );
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(200, 146, 42, 0.1);
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-custom a:hover {
  color: var(--gold2);
}
.breadcrumb-custom .sep {
  opacity: 0.4;
}
.breadcrumb-custom .cur {
  color: var(--gold2);
  font-weight: 600;
}
.page-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.page-hero h1 span {
  color: var(--gold2);
  font-family: "Lora", serif;
  font-style: italic;
}
.page-hero .sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 580px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(200, 146, 42, 0.18);
  border: 1px solid rgba(200, 146, 42, 0.45);
  color: var(--gold2);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
/* Quick info pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hpill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
}
.hpill i {
  color: var(--gold2);
}

/* ── STICKY SIDEBAR NAV ── */
.sticky-nav {
  position: sticky;
  top: 72px;
  z-index: 100;
}
.side-nav-box {
  background: var(--white);
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.side-nav-box .sn-header {
  background: linear-gradient(135deg, var(--g), var(--gm));
  color: var(--white);
  padding: 16px 18px;
  font-weight: 700;
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sn-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
  border-left: 3px solid transparent;
}
.sn-link:last-child {
  border-bottom: none;
}
.sn-link:hover,
.sn-link.active {
  background: var(--gl);
  color: var(--g);
  border-left-color: var(--g);
}
.sn-link i {
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}
/* Ajukan Box */
.ajukan-box {
  background: linear-gradient(135deg, var(--gd), var(--g));
  border-radius: var(--r);
  padding: 22px;
  margin-top: 14px;
}
.ajukan-box h6 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.92rem;
}
.ajukan-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.55;
  margin-bottom: 16px;
}
.btn-ajukan-side {
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 11px;
  border-radius: 9px;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
}
.btn-ajukan-side:hover {
  background: var(--gold2);
  color: var(--white);
}

/* ── CONTENT SECTIONS ── */
.content-card {
  background: var(--white);
  border-radius: var(--r);
  border: 1.5px solid var(--border);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(15, 68, 35, 0.05);
}
.content-card:target {
  border-color: var(--g);
  box-shadow: 0 0 0 3px rgba(26, 107, 58, 0.1);
}
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 8px;
}
.sec-label::before {
  content: "";
  width: 20px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.sec-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.3;
}
.sec-title span {
  color: var(--g);
}

/* ── OVERVIEW CARDS ── */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .overview-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
}
.ov-card {
  background: var(--gl);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ov-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--g);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 68, 35, 0.12);
}
.ov-card .lbl {
  font-size: 0.73rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 3px;
}
.ov-card .val {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

/* ── PERSYARATAN TABLE ── */
.table-styled {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.87rem;
}
.table-styled thead th {
  background: var(--g);
  color: var(--white);
  padding: 13px 16px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.table-styled thead th:first-child {
  border-radius: 10px 0 0 0;
}
.table-styled thead th:last-child {
  border-radius: 0 10px 0 0;
}
.table-styled tbody tr {
  transition: background 0.2s;
}
.table-styled tbody tr:hover {
  background: #f0f9f3;
}
.table-styled tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
}
.table-styled tbody tr:last-child td {
  border-bottom: none;
}
.table-styled tbody tr:last-child td:first-child {
  border-radius: 0 0 0 10px;
}
.table-styled tbody tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}
.table-wrap {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.badge-wajib {
  background: #fef3f2;
  color: #c0392b;
  border: 1px solid #fdc3bb;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 5px;
}
.badge-opsional {
  background: #fffbeb;
  color: #92620e;
  border: 1px solid #fde4a0;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 5px;
}
.badge-kondisi {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 5px;
}
.no-col {
  width: 44px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}
.tab-filter-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.tab-f {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.81rem;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.tab-f.active,
.tab-f:hover {
  background: var(--g);
  border-color: var(--g);
  color: var(--white);
}
.req-table {
  display: none;
}
.req-table.show {
  display: block;
}

/* ── ALUR CARDS ── */
.alur-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.alur-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 28px;
}
.alur-row:last-child {
  padding-bottom: 0;
}
.alur-row::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 54px;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--border) 0,
    var(--border) 6px,
    transparent 6px,
    transparent 12px
  );
}
.alur-row:last-child::before {
  display: none;
}
.alur-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--g);
  flex-shrink: 0;
  font-family: "Lora", serif;
  box-shadow: 0 3px 14px rgba(26, 107, 58, 0.15);
  transition: all 0.3s;
  z-index: 1;
  position: relative;
}
.alur-row:hover .alur-circle {
  background: var(--g);
  color: var(--white);
}
.alur-body {
  flex: 1;
  padding-top: 4px;
}
.alur-body h6 {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text);
}
.alur-body p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.alur-body .alur-dur {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--g);
  background: var(--gl);
  padding: 3px 10px;
  border-radius: 10px;
}
/* Sub-alur online vs offline tab */
.mode-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
}
.mode-tab {
  padding: 9px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--muted);
  background: var(--white);
  border: none;
}
.mode-tab.active {
  background: var(--g);
  color: var(--white);
}
.mode-panel {
  display: none;
}
.mode-panel.show {
  display: block;
}

/* ── BIAYA TABLE ── */
.biaya-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .biaya-grid {
    grid-template-columns: 1fr;
  }
}
.biaya-card {
  border-radius: 12px;
  padding: 22px;
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.biaya-card.gratis {
  background: linear-gradient(135deg, #f0fff4, #dcfce7);
  border-color: #86efac;
}
.biaya-card.berbayar {
  background: linear-gradient(135deg, #fffbeb, #fef9c3);
  border-color: #fde047;
}
.biaya-card .big-price {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.biaya-card.gratis .big-price {
  color: #15803d;
}
.biaya-card.berbayar .big-price {
  color: #92400e;
}
.biaya-card h6 {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 5px;
  color: var(--text);
}
.biaya-card p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.biaya-card .biaya-icon {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.8rem;
  opacity: 0.15;
}
/* Waktu penyelesaian timeline */
.waktu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.waktu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gl);
  border-radius: 10px;
  padding: 14px 16px;
  border: 1px solid var(--border);
}
.waktu-badge {
  min-width: 70px;
  text-align: center;
  background: var(--g);
  color: var(--white);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}
.waktu-item p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.5;
}
.waktu-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 2px;
}

/* ── FORMULIR / DOWNLOAD ── */
.form-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  transition: all 0.25s;
}
.form-item:hover {
  border-color: var(--g);
  box-shadow: 0 4px 16px rgba(26, 107, 58, 0.1);
}
.form-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.form-icon.pdf {
  background: #fef2f2;
  color: #dc2626;
}
.form-icon.docx {
  background: #eff6ff;
  color: #2563eb;
}
.form-icon.xlsx {
  background: #f0fdf4;
  color: #16a34a;
}
.form-info {
  flex: 1;
}
.form-info h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.form-info p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}
.btn-dl {
  background: var(--g);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-dl:hover {
  background: var(--gm);
  color: var(--white);
}
.btn-dl-ghost {
  background: var(--gl);
  color: var(--g);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}
.btn-dl-ghost:hover {
  background: var(--g);
  color: var(--white);
}
.form-divider {
  border: none;
  border-top: 1px dashed var(--border);
  margin: 6px 0;
}

/* ── FAQ ── */
.accordion-button {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
}
.accordion-button:not(.collapsed) {
  color: var(--g);
  background: var(--gl);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(26, 107, 58, 0.1);
}
.accordion-item {
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-body {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
}
.accordion-body ul {
  padding-left: 20px;
  margin: 8px 0 0;
}
.accordion-body ul li {
  margin-bottom: 5px;
}

/* ── KONTAK CEPAT ── */
.kontak-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.kc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid;
}
.kc-btn.wa {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}
.kc-btn.wa:hover {
  background: #1db954;
  color: #fff;
}
.kc-btn.tel {
  background: var(--gl);
  border-color: var(--border);
  color: var(--g);
}
.kc-btn.tel:hover {
  background: var(--g);
  color: #fff;
  border-color: var(--g);
}
.kc-btn.mail {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}
.kc-btn.mail:hover {
  background: #1d4ed8;
  color: #fff;
  border-color: #1d4ed8;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE ── */
@media (max-width: 991px) {
  .sticky-nav {
    position: relative;
    top: 0;
  }
}
@media (max-width: 767px) {
  .content-card {
    padding: 20px;
  }
  .page-hero {
    padding: 36px 0 30px;
  }
}

/* ── PRINT / STATUS BADGE ── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gl);
  border: 1.5px solid #86efac;
  color: #15803d;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.status-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* ── TOP PROGRESS ── */
.reading-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
  width: 0%;
}

/* Scroll to active sidebar */
.sn-link {
  cursor: pointer;
}

/* galeri */
