/* ==========================================================================
   LOA PORTAL — v3 (navy corporate, sesuai mockup)
   ========================================================================== */
:root {
  --navy: #0D2B5E;
  --navy-2: #123B82;
  --navy-light: #E8EDF7;
  --blue: #1D4ED8;
  --green: #16A34A;
  --green-bg: #DCFCE7;
  --orange: #F59E0B;
  --orange-bg: #FEF3C7;
  --purple: #8B5CF6;
  --purple-bg: #EDE9FE;
  --pink: #DB2777;
  --pink-bg: #FCE7F3;
  --red: #DC2626;
  --red-bg: #FEE2E2;
  --ink: #1F2937;
  --muted: #6B7280;
  --bg-alt: #F4F6FA;
  --line: #E5E9F0;
  --white: #FFFFFF;

  --font-body: "Plus Jakarta Sans", "Inter", -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(13, 43, 94, 0.08);
  --shadow-lift: 0 12px 32px rgba(13, 43, 94, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-body); color: var(--navy); margin: 0; }

/* --------------------------------------------------------------------------
   NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__title { font-weight: 800; font-size: 0.95rem; color: var(--navy); letter-spacing: 0.02em; }
.brand__sub { font-size: 0.62rem; color: var(--muted); letter-spacing: 0.06em; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy-2); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.9rem; border: 1.5px solid transparent;
  cursor: pointer; transition: all 0.15s ease; white-space: nowrap;
}
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-2); }
.btn--outline { background: #fff; border-color: var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--navy); }
.btn--white { background: #fff; color: var(--navy); }
.btn--white:hover { background: var(--navy-light); }
.btn--block { width: 100%; }
.btn--lg { padding: 14px 28px; font-size: 0.96rem; }

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 70% center;
}

.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    rgba(9, 27, 61, 0.94) 0%,
    rgba(9, 27, 61, 0.86) 32%,
    rgba(9, 27, 61, 0.5) 58%,
    rgba(9, 27, 61, 0.12) 82%
  );
}

.hero__inner {
  position: relative; z-index: 2;
  padding: 90px 24px 90px clamp(24px, 6vw, 100px);
  max-width: 560px;
  margin: 0;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 20px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  font-weight: 800; line-height: 1.18; margin-bottom: 18px;
}
.hero h1 .line { display: block; }

.hero p.lead { color: #C7D2E8; font-size: 1.02rem; max-width: 460px; margin: 0 0 28px; }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }

.hero__trust { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: #AEBDDD; }

/* --------------------------------------------------------------------------
   QUICK ACTIONS
   -------------------------------------------------------------------------- */
.section { padding: 56px 0; }
.section-head { text-align: center; max-width: 520px; margin: 0 auto 32px; }
.section-head h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 8px; }
.section-head p { color: var(--muted); margin: 0; font-size: 0.96rem; }

.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.quick-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px 22px; box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.quick-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.quick-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: #fff;
}
.quick-icon--blue { background: var(--blue); }
.quick-icon--green { background: var(--green); }
.quick-icon--orange { background: var(--orange); }
.quick-icon--purple { background: var(--purple); }
.quick-icon--pink { background: var(--pink); }

/* --------------------------------------------------------------------------
   JURNAL — ikon versi soft (bg pastel + ikon berwarna, lebih kalem)
   -------------------------------------------------------------------------- */
.jurnal-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.jurnal-icon--blue   { background: var(--navy-light); color: var(--navy-2); }
.jurnal-icon--green  { background: var(--green-bg);   color: var(--green); }
.jurnal-icon--purple { background: var(--purple-bg);  color: var(--purple); }
.jurnal-icon--orange { background: var(--orange-bg);  color: var(--orange); }
.jurnal-icon--pink   { background: var(--pink-bg);    color: var(--pink); }

.quick-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.quick-card p { color: var(--muted); font-size: 0.86rem; margin: 0 0 14px; }
.quick-card .arrow { color: var(--navy-2); font-weight: 700; font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   STATS BAR
   -------------------------------------------------------------------------- */
.stats-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,0.07) 0%, transparent 42%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,0.06) 0%, transparent 42%);
  pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 1; }

.stat-item { display: flex; align-items: center; gap: 14px; padding-left: 22px; }
.stat-item:first-child { padding-left: 0; }
.stat-item:not(:first-child) { border-left: 1px solid rgba(255,255,255,0.14); }
.stat-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(255,255,255,0.06));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-num { color: #fff; font-size: 1.4rem; font-weight: 800; line-height: 1.1; }
.stat-label { color: #B9C6E3; font-size: 0.8rem; }

/* --------------------------------------------------------------------------
   CARA KERJA
   -------------------------------------------------------------------------- */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }

.step-item { text-align: center; padding: 0 16px; position: relative; }

.step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(160deg, #fff, var(--navy-light));
  border: 2px solid var(--navy-light);
  box-shadow: 0 8px 18px -8px rgba(13, 43, 94, 0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; position: relative; color: var(--navy-2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-item:hover .step-circle {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px -10px rgba(13, 43, 94, 0.32);
}

.step-num {
  position: absolute; top: -6px; right: -2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--navy); color: #fff; font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

.step-item h3 { font-size: 0.94rem; font-weight: 700; margin-bottom: 6px; }
.step-item p { color: var(--muted); font-size: 0.82rem; margin: 0; }

.step-connector {
  position: absolute; top: 32px; left: 62%; width: 76%; height: 2px;
  background: linear-gradient(90deg, var(--navy-light), transparent);
  z-index: 0;
}

/* --------------------------------------------------------------------------
   WHY US
   -------------------------------------------------------------------------- */
.section--alt { background: var(--bg-alt); }

.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.why-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 24px; box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--navy-light);
}
.why-icon {
  width: 42px; height: 42px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.why-item:nth-child(1) .why-icon, .why-item:nth-child(4) .why-icon { background: var(--navy-light); color: var(--navy-2); }
.why-item:nth-child(2) .why-icon { background: var(--green-bg); color: var(--green); }
.why-item:nth-child(3) .why-icon { background: var(--navy-light); color: var(--navy-2); }
.why-item:nth-child(5) .why-icon { background: #FEE2E2; color: #DC2626; }
.why-item:nth-child(6) .why-icon { background: var(--purple-bg); color: var(--purple); }

.why-item h3 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.why-item p { color: var(--muted); font-size: 0.82rem; margin: 0; }

/* --------------------------------------------------------------------------
   VERIFY BOX
   -------------------------------------------------------------------------- */
.verify-card {
  max-width: 640px; margin: 0 auto; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 44px 40px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.verify-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
}
.verify-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--navy-light); color: var(--navy-2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.verify-card h2 { font-size: 1.3rem; margin-bottom: 6px; }
.verify-card > p { color: var(--muted); font-size: 0.9rem; margin: 0 0 22px; }

.verify-input-row { display: flex; gap: 10px; }
.verify-input-row input {
  flex: 1; padding: 13px 16px; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); font-size: 0.92rem; font-family: inherit;
}
.verify-input-row input:focus { border-color: var(--navy-2); outline: none; }
.verify-note {
  font-size: 0.78rem; color: var(--muted); margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.verify-note svg { flex-shrink: 0; color: #9CA3AF; }

/* --------------------------------------------------------------------------
   VERIFY — hasil pencarian (found / notfound)
   -------------------------------------------------------------------------- */
.verify-result-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.verify-result-icon--green { background: var(--green-bg); color: var(--green); }
.verify-result-icon--red { background: var(--red-bg); color: var(--red); }

.verify-card--found::before { background: linear-gradient(90deg, var(--green), #22C55E); }
.verify-card--notfound::before { background: linear-gradient(90deg, var(--red), #EF4444); }

.verify-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.verify-card--notfound p { color: var(--muted); font-size: 0.9rem; max-width: 440px; margin: 0 auto; }

.verify-card .loa-list-card {
  text-align: left; margin-top: 26px;
  box-shadow: none; border-color: var(--line);
}
.verify-card .loa-list-card:hover { transform: none; box-shadow: none; }

/* --------------------------------------------------------------------------
   LOA TERBARU
   -------------------------------------------------------------------------- */
.loa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 32px; }

.loa-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  border-top: 3px solid var(--navy-2);
  padding: 22px; box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.loa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.loa-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.loa-card h3 { font-size: 0.98rem; font-weight: 700; line-height: 1.35; margin: 0; }
.loa-card .reg { font-family: monospace; font-size: 0.78rem; color: var(--muted); margin-bottom: 10px; display: block; }
.loa-card .meta { font-size: 0.82rem; color: var(--muted); margin: 0 0 4px; }
.loa-card .arrow-link { display: inline-block; margin-top: 12px; color: var(--navy-2); font-weight: 700; font-size: 0.84rem; }

/* --------------------------------------------------------------------------
   LOA — HERO DAFTAR (foto full-bleed, overlay terang, teks rata kiri)
   -------------------------------------------------------------------------- */
.loa-list-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 56px 0 104px;
}
.loa-list-hero__bg { position: absolute; inset: 0; z-index: 0; }
.loa-list-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.loa-list-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,
    rgba(9, 27, 61, 0.92) 0%,
    rgba(9, 27, 61, 0.82) 34%,
    rgba(9, 27, 61, 0.4) 62%,
    rgba(9, 27, 61, 0.12) 88%
  );
}
.loa-list-hero__inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; text-align: center; }
.loa-list-hero h1 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.3rem); font-weight: 800; margin-bottom: 12px; }
.loa-list-hero p { color: #C7D2E8; font-size: 1rem; margin: 0 auto 26px; max-width: 480px; }

/* --------------------------------------------------------------------------
   LOA — GRID KARTU (thumbnail dokumen + info)
   -------------------------------------------------------------------------- */
.loa-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 32px; }

.loa-list-card {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 20px; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.loa-list-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.loa-list-card__badge { position: absolute; top: 20px; right: 20px; }

.loa-list-card__top { display: flex; gap: 14px; padding-right: 84px; margin-bottom: 4px; }

.loa-list-card__thumb {
  width: 62px; height: 80px; border-radius: 8px; flex-shrink: 0;
  border: 1px solid var(--line); background: var(--bg-alt); overflow: hidden;
}
.loa-list-card__thumb svg { width: 100%; height: 100%; display: block; }

.loa-list-card__body h3 { font-size: 0.96rem; font-weight: 700; line-height: 1.35; margin: 0 0 6px; }
.loa-list-card__body .reg { font-family: monospace; font-size: 0.78rem; color: var(--muted); display: block; }

.loa-list-card .meta-row {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 0.82rem; color: var(--muted); margin: 6px 0 0;
}
.loa-list-card .meta-row svg { flex-shrink: 0; margin-top: 2px; color: #9CA3AF; }

.loa-list-card .arrow-link { display: inline-block; margin-top: 14px; color: var(--navy-2); font-weight: 700; font-size: 0.84rem; }

.badge { font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.badge--published { background: var(--green-bg); color: var(--green); }

.center-cta { text-align: center; }

/* --------------------------------------------------------------------------
   EMPTY STATE (dipakai di list LOA & Jurnal saat kosong/nggak ketemu)
   -------------------------------------------------------------------------- */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  background: var(--bg-alt);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 48px 24px;
  margin: 0;
}

/* --------------------------------------------------------------------------
   PAGINATION (dipakai di list LOA & Jurnal)
   -------------------------------------------------------------------------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   JURNAL LIST & DETAIL
   -------------------------------------------------------------------------- */
.jurnal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 32px; }

.jurnal-card {
  display: block;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 22px; box-shadow: var(--shadow);
  border-top: 3px solid var(--blue);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.jurnal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.jurnal-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.jurnal-card h3 { font-size: 0.98rem; font-weight: 700; line-height: 1.35; margin: 0; }
.jurnal-card .meta { font-size: 0.82rem; color: var(--muted); margin: 0 0 4px; }
.jurnal-card .arrow-link { display: inline-block; margin-top: 12px; color: var(--navy-2); font-weight: 700; font-size: 0.84rem; }

.badge--accredited { background: #DBEAFE; color: var(--blue); }
.badge--s1 { background: var(--pink-bg); color: var(--pink); }
.badge--s2 { background: #DBEAFE; color: var(--blue); }
.badge--s3 { background: var(--purple-bg); color: var(--purple); }
.badge--s4 { background: var(--orange-bg); color: var(--orange); }

/* --------------------------------------------------------------------------
   JURNAL — HERO DIREKTORI (foto full-bleed + overlay)
   -------------------------------------------------------------------------- */
.jurnal-dir-hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 72px 0 108px;
}

.jurnal-dir-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.jurnal-dir-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}

.jurnal-dir-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,
    rgba(9, 27, 61, 0.92) 0%,
    rgba(9, 27, 61, 0.82) 34%,
    rgba(9, 27, 61, 0.4) 62%,
    rgba(9, 27, 61, 0.12) 88%
  );
}

.jurnal-dir-hero__inner {
  position: relative; z-index: 2;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.jurnal-dir-hero .eyebrow {
  display: inline-block; color: #8FB4FF; font-weight: 800;
  font-size: 0.8rem; letter-spacing: 0.08em; margin-bottom: 14px;
}

.jurnal-dir-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 800; line-height: 1.18; margin-bottom: 16px;
}
.jurnal-dir-hero h1 .text-blue { color: #7EC8FF; display: block; }

.jurnal-dir-hero__text > p {
  color: #C7D2E8; font-size: 1rem; max-width: 460px; margin: 0 auto 28px;
}

.jurnal-search-card {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 8px 8px 8px 18px;
  max-width: 520px;
  margin: 0 auto;
}
.jurnal-search-card svg { flex-shrink: 0; color: var(--muted); }
.jurnal-search-card input {
  flex: 1; border: none; outline: none; font-family: inherit;
  font-size: 0.94rem; padding: 10px 0; color: var(--ink);
}
.jurnal-search-card input::placeholder { color: #9CA3AF; }
.jurnal-search-card .btn { padding: 12px 26px; }

/* --------------------------------------------------------------------------
   JURNAL — STATS MENGAMBANG (overlap bawah hero)
   -------------------------------------------------------------------------- */
.jurnal-stats-float {
  position: relative; z-index: 2;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 26px 40px;
  margin-top: -64px; margin-bottom: 40px;
  display: grid; grid-template-columns: repeat(3, 1fr);
}

.jurnal-stat {
  display: flex; align-items: center; gap: 16px;
  padding: 0 24px;
}
.jurnal-stat:not(:first-child) { border-left: 1px solid var(--line); }
.jurnal-stat-num { font-size: 1.5rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.jurnal-stat-label { font-size: 0.86rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   JURNAL DETAIL — hero banner + info stats
   -------------------------------------------------------------------------- */
.jurnal-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-bottom: -32px;
  position: relative;
  z-index: 1;
}

.jurnal-hero__back {
  display: inline-flex; align-items: center; gap: 6px;
  color: #B9C6E3; font-size: 0.84rem; font-weight: 600;
  margin-bottom: 20px;
}
.jurnal-hero__back:hover { color: #fff; }

.jurnal-hero__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.jurnal-hero h1 { color: #fff; font-size: 1.6rem; font-weight: 800; max-width: 640px; }

.jurnal-hero .badge--accredited { background: rgba(255,255,255,0.16); color: #fff; }

.jurnal-info-bar {
  position: relative; z-index: 2;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 28px 36px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin: 0 24px 56px;
}

.jurnal-info-item { display: flex; align-items: center; gap: 14px; }
.jurnal-info-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--navy-light); color: var(--navy-2);
  display: flex; align-items: center; justify-content: center;
}
.jurnal-info-label { font-size: 0.76rem; color: var(--muted); margin-bottom: 2px; }
.jurnal-info-value { font-size: 1rem; font-weight: 700; color: var(--ink); }

.jurnal-hero__cta { margin-top: 22px; }

@media (max-width: 980px) {
  .jurnal-info-bar { grid-template-columns: 1fr; margin: 0 0 40px; }
  .jurnal-hero { margin-bottom: -20px; padding: 32px 24px; }
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }

.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.faq-item:hover { box-shadow: var(--shadow); border-color: var(--navy-light); }
.faq-item summary {
  padding: 16px 20px; cursor: pointer; font-weight: 700; font-size: 0.9rem;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; transition: color 0.15s ease;
}
.faq-item summary:hover { color: var(--navy-2); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.2rem; color: var(--muted); font-weight: 400; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { padding: 0 20px 18px; margin: 0; color: var(--muted); font-size: 0.86rem; }

/* --------------------------------------------------------------------------
   CTA BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; top: -50px; right: -30px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  z-index: 0;
}
.cta-banner::after {
  content: "";
  position: absolute; bottom: -70px; left: 18%;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  z-index: 0;
}
.cta-banner__left, .cta-banner > a { position: relative; z-index: 1; }
.cta-banner__left { display: flex; align-items: center; gap: 18px; }
.cta-banner__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cta-banner h3 { color: #fff; font-size: 1.15rem; margin-bottom: 4px; }
.cta-banner p { color: #B9C6E3; font-size: 0.88rem; margin: 0; max-width: 420px; }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy); color: #B9C6E3; padding: 60px 0 26px; margin-top: 76px; }

.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; margin-bottom: 40px; }

.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .brand__title { color: #fff; }
.footer-brand .brand__sub { color: #8FA1CC; }

.site-footer > .container > .footer-grid > div > p:first-of-type.footer-desc { font-size: 0.85rem; margin-bottom: 16px; }

.site-footer h4 { color: #fff; font-size: 0.88rem; margin: 0 0 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 10px; font-size: 0.85rem; }
.site-footer ul li a:hover { color: #fff; }

.footer-contact-item { display: flex; gap: 10px; font-size: 0.84rem; margin-bottom: 12px; align-items: flex-start; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px;
  font-size: 0.8rem; color: #8FA1CC;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* --------------------------------------------------------------------------
   PAGE HERO — generik (foto full-bleed + overlay gelap + judul)
   dipakai di halaman-halaman dalam seperti Panduan, dan bisa dipakai ulang
   di halaman lain yang butuh hero serupa.
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: 56px 0 64px;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,
    rgba(9, 27, 61, 0.92) 0%,
    rgba(9, 27, 61, 0.82) 34%,
    rgba(9, 27, 61, 0.4) 62%,
    rgba(9, 27, 61, 0.12) 88%
  );
}
.page-hero__inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; text-align: center; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.2vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.page-hero p { color: #C7D2E8; font-size: 1rem; margin: 0 auto; max-width: 480px; }

/* --------------------------------------------------------------------------
   TENTANG KAMI — hero (foto full-bleed + overlay gelap + judul)
   -------------------------------------------------------------------------- */
.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 56px 0 64px;
}
.about-hero__bg { position: absolute; inset: 0; z-index: 0; }
.about-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,
    rgba(9, 27, 61, 0.92) 0%,
    rgba(9, 27, 61, 0.82) 34%,
    rgba(9, 27, 61, 0.4) 62%,
    rgba(9, 27, 61, 0.12) 88%
  );
}
.about-hero__inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; text-align: center; }
.about-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.2vw, 2.4rem); font-weight: 800; margin-bottom: 14px; }
.about-hero p { color: #C7D2E8; font-size: 1rem; margin: 0 auto; max-width: 480px; }

/* --------------------------------------------------------------------------
   TENTANG KAMI — profil (card teks) + foto kantor
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.about-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 36px;
}
.about-card h2 { font-size: 1.35rem; margin-bottom: 16px; }
.about-card p { color: var(--muted); font-size: 0.92rem; margin: 0 0 12px; }

.about-features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 16px;
  margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line);
}
.about-feature { display: flex; gap: 10px; align-items: flex-start; }
.about-feature-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--navy-light); color: var(--navy-2);
  display: flex; align-items: center; justify-content: center;
}
.about-feature h4 { font-size: 0.86rem; font-weight: 700; margin: 0 0 2px; color: var(--ink); }
.about-feature p { font-size: 0.78rem; color: var(--muted); margin: 0; }

.about-photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  min-height: 100%;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --------------------------------------------------------------------------
   TENTANG KAMI — kontak (list info) + peta
   -------------------------------------------------------------------------- */
.contact-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch;
}
.contact-info-list h2 { font-size: 1.35rem; margin-bottom: 22px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  color: var(--navy-2);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item p { margin: 0; font-size: 0.9rem; color: var(--ink); line-height: 1.5; }

.contact-map {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  min-height: 280px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero { min-height: 460px; }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(9,27,61,0.55) 0%, rgba(9,27,61,0.92) 65%, rgba(9,27,61,0.96) 100%);
  }
  .hero__inner { max-width: 100%; padding: 60px 0; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .step-connector { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .loa-grid { grid-template-columns: 1fr; }
  .jurnal-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }

  .jurnal-dir-hero { padding: 48px 0 88px; min-height: 400px; }
  .jurnal-dir-hero__inner { max-width: 100%; }
  .jurnal-search-card { max-width: 100%; flex-wrap: wrap; }
  .jurnal-stats-float { grid-template-columns: 1fr; gap: 18px; margin-top: -48px; }
  .jurnal-stat:not(:first-child) { border-left: none; border-top: 1px solid var(--line); padding-top: 18px; }

  .loa-list-hero { padding: 40px 0 88px; min-height: 260px; }
  .loa-list-hero__inner { max-width: 100%; }
  .loa-list-grid { grid-template-columns: 1fr; }

  .page-hero { min-height: 220px; padding: 40px 0 48px; }

  .about-hero { min-height: 240px; padding: 40px 0 48px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { min-height: 240px; }
  .about-features { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-map { min-height: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
}

/* --------------------------------------------------------------------------
   SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered children inside revealed sections */
.reveal .quick-card,
.reveal .qc-card,
.reveal .why-item,
.reveal .loa-card,
.reveal .loa-list-card,
.reveal .jurnal-card,
.reveal .step-item,
.reveal .stat-item,
.reveal .faq-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0s;
}
.reveal.is-visible .quick-card,
.reveal.is-visible .qc-card,
.reveal.is-visible .why-item,
.reveal.is-visible .loa-card,
.reveal.is-visible .loa-list-card,
.reveal.is-visible .jurnal-card,
.reveal.is-visible .step-item,
.reveal.is-visible .stat-item,
.reveal.is-visible .faq-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .quick-card:nth-child(1),
.reveal.is-visible .qc-card:nth-child(1),
.reveal.is-visible .why-item:nth-child(1),
.reveal.is-visible .loa-card:nth-child(1),
.reveal.is-visible .loa-list-card:nth-child(1),
.reveal.is-visible .jurnal-card:nth-child(1),
.reveal.is-visible .step-item:nth-child(1),
.reveal.is-visible .stat-item:nth-child(1),
.reveal.is-visible .faq-item:nth-child(1) { transition-delay: 0.05s; }

.reveal.is-visible .quick-card:nth-child(2),
.reveal.is-visible .qc-card:nth-child(2),
.reveal.is-visible .why-item:nth-child(2),
.reveal.is-visible .loa-card:nth-child(2),
.reveal.is-visible .loa-list-card:nth-child(2),
.reveal.is-visible .jurnal-card:nth-child(2),
.reveal.is-visible .step-item:nth-child(2),
.reveal.is-visible .stat-item:nth-child(2),
.reveal.is-visible .faq-item:nth-child(2) { transition-delay: 0.13s; }

.reveal.is-visible .quick-card:nth-child(3),
.reveal.is-visible .qc-card:nth-child(3),
.reveal.is-visible .why-item:nth-child(3),
.reveal.is-visible .loa-card:nth-child(3),
.reveal.is-visible .loa-list-card:nth-child(3),
.reveal.is-visible .jurnal-card:nth-child(3),
.reveal.is-visible .step-item:nth-child(3),
.reveal.is-visible .stat-item:nth-child(3),
.reveal.is-visible .faq-item:nth-child(3) { transition-delay: 0.21s; }

.reveal.is-visible .quick-card:nth-child(4),
.reveal.is-visible .qc-card:nth-child(4),
.reveal.is-visible .why-item:nth-child(4),
.reveal.is-visible .step-item:nth-child(4),
.reveal.is-visible .stat-item:nth-child(4),
.reveal.is-visible .faq-item:nth-child(4) { transition-delay: 0.29s; }

.reveal.is-visible .why-item:nth-child(5),
.reveal.is-visible .faq-item:nth-child(5) { transition-delay: 0.37s; }

.reveal.is-visible .why-item:nth-child(6),
.reveal.is-visible .faq-item:nth-child(6) { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal .quick-card,
  .reveal .qc-card,
  .reveal .why-item,
  .reveal .loa-card,
  .reveal .step-item,
  .reveal .stat-item,
  .reveal .faq-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}