﻿/* ==========================================================================
   Bucin4D Peduli HIV — stylesheet
   Arah desain mengikuti hiv.gov: bilah sian di paling atas, header putih,
   bilah remah navigasi abu arang selebar layar, dua kolom (sidebar daftar
   isi + kartu artikel), judul dan teks bodi serif, lencana bulat melayang.

   Kedalaman dibangun dari bayangan abu netral, sudut membulat, dan garis
   tepi — bukan dari gradasi atau cahaya berwarna.

   Semua blok isi memakai .container yang sama, termasuk hero, supaya
   tepi kiri-kanannya segaris dari atas sampai bawah.

   1. Token       5. Hero          9. Kartu & daftar
   2. Reset       6. Dua kolom    10. Footer
   3. Dasar       7. Prosa        11. Formulir
   4. Header      8. Bagian       12. Responsif
   ========================================================================== */

/* 1. Token -------------------------------------------------------------- */
:root {
  --sian:      #00a3c4;
  --sian-700:  #007e99;
  --sian-900:  #005a6e;
  --sian-50:   #e7f6fa;
  --sian-100:  #c3e9f2;

  --biru:      #1f5fa8;
  --biru-700:  #17497f;

  --merah:     #d1332e;
  --merah-50:  #fbeceb;

  --arang:     #3a3d42;
  --arang-900: #26282c;

  --ink:       #1f2328;
  --body:      #4a5058;
  --muted:     #7b828c;

  --abu:       #eff1f3;
  --line:      #dde1e6;
  --line-kuat: #c6ccd4;

  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap: 1220px;
  --gutter: 24px;

  --r-sm: 6px;
  --r:    10px;
  --r-lg: 14px;
  --pill: 999px;

  /* Bayangan abu netral, tanpa warna, bertingkat */
  --sh-1: 0 1px 2px rgba(31, 35, 40, .05), 0 1px 3px rgba(31, 35, 40, .08);
  --sh-2: 0 2px 4px -2px rgba(31, 35, 40, .06), 0 6px 12px -3px rgba(31, 35, 40, .10);
  --sh-3: 0 4px 8px -3px rgba(31, 35, 40, .07), 0 16px 28px -8px rgba(31, 35, 40, .14);
  --sh-4: 0 8px 16px -6px rgba(31, 35, 40, .10), 0 28px 48px -12px rgba(31, 35, 40, .18);

  /* Tekstur latar untuk memecah bidang kosong */
  --titik: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='2' cy='2' r='1.4' fill='%23ccd5da'/%3E%3C/svg%3E");
  --kisi: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 44 44'%3E%3Cpath d='M0 43.5H44M43.5 0V44' stroke='%23ffffff' stroke-opacity='.08' stroke-width='1'/%3E%3C/svg%3E");
}

/* 2. Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height:auto wajib — tanpa ini atribut height pada <img> mengalahkan
   aspect-ratio dan gambar melar setinggi nilai atributnya. */
img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p, figure, blockquote { margin: 0; }
address { font-style: normal; }
a { color: var(--sian-700); }
button, input, select, textarea { font: inherit; color: inherit; }

:focus-visible { outline: 3px solid var(--sian); outline-offset: 2px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 400;
  background: var(--sian-700); color: #fff; padding: 12px 20px; font-weight: 600;
}
.skip-link:focus { left: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* 3. Dasar -------------------------------------------------------------- */
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); color: var(--ink); font-weight: 700; line-height: 1.24; letter-spacing: -.008em; }
h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.125rem); line-height: 1.16; }
h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem); }
h3 { font-size: 1.1875rem; }
h4 { font-size: 1.0625rem; }

.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* Jarak antarbagian seragam; jangan ditimpa dari HTML supaya iramanya rapi */
.section { padding: clamp(52px, 5.4vw, 84px) 0; }
.section--abu { background-color: var(--abu); background-image: var(--titik); border-block: 1px solid var(--line); }
.section--sian { background-color: var(--sian-900); background-image: var(--kisi); color: rgba(255,255,255,.8); }
.section--sian h2, .section--sian h3 { color: #fff; }

/* Label kecil di atas judul bagian */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-size: .75rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--sian-700); margin-bottom: 12px;
}
.eyebrow::before { content: ""; flex: none; width: 24px; height: 3px; border-radius: 2px; background: var(--merah); }
.section--sian .eyebrow, .cta .eyebrow { color: #fff; }
.head--tengah .eyebrow { justify-content: center; }

.head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: clamp(26px, 3vw, 38px); }
.head__teks { max-width: 60ch; }
.head p { margin-top: 12px; font-size: 1rem; }
.head__tautan {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--sans); font-size: .875rem; font-weight: 600;
  color: var(--sian-700); white-space: nowrap;
  padding: 9px 16px; border-radius: var(--pill);
  background: var(--sian-50); border: 1px solid var(--sian-100);
  transition: background-color .18s ease;
}
.head__tautan:hover { background: var(--sian-100); }
.head--tengah { display: block; text-align: center; }
.head--tengah .head__teks { margin-inline: auto; }

/* Tombol */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-size: .9375rem; font-weight: 600; line-height: 1;
  padding: 14px 26px; border-radius: var(--r-sm);
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--sian { background: var(--sian-700); color: #fff; box-shadow: var(--sh-2); }
.btn--sian:hover { background: var(--sian-900); color: #fff; box-shadow: var(--sh-3); transform: translateY(-1px); }
.btn--biru { background: var(--biru); color: #fff; box-shadow: var(--sh-2); }
.btn--biru:hover { background: var(--biru-700); color: #fff; box-shadow: var(--sh-3); transform: translateY(-1px); }
.btn--merah { background: var(--merah); color: #fff; box-shadow: var(--sh-2); }
.btn--merah:hover { background: #b62b26; color: #fff; box-shadow: var(--sh-3); transform: translateY(-1px); }
.btn--garis { background: #fff; color: var(--sian-700); border-color: var(--line-kuat); box-shadow: var(--sh-1); }
.btn--garis:hover { border-color: var(--sian); box-shadow: var(--sh-2); }
.btn--terang { background: #fff; color: var(--sian-700); box-shadow: var(--sh-2); }
.btn--terang:hover { background: var(--sian-50); box-shadow: var(--sh-3); transform: translateY(-1px); }
.btn--onDark { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--onDark:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; }

/* Chip */
.chip {
  display: inline-block; font-family: var(--sans);
  background: var(--sian-700); color: #fff;
  font-size: .75rem; font-weight: 600; line-height: 1;
  padding: 6px 11px; border-radius: var(--r-sm); white-space: nowrap;
}
.chip--merah { background: var(--merah); }
.chip--terang { background: rgba(255,255,255,.2); color: #fff; }

/* 4. Bilah atas, header, remah navigasi ---------------------------------- */
.topbar { background: var(--sian); color: #fff; font-family: var(--sans); font-size: .8125rem; }
.topbar .container { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; padding-block: 9px; text-align: center; }
.topbar strong { font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.topbar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.header {
  position: sticky; top: 0; z-index: 200;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(31, 35, 40, .06);
}
.header__inner { display: flex; align-items: center; gap: 22px; min-height: 80px; }

.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; text-decoration: none; }
.brand__mark {
  flex: none; width: 26px; height: 38px;
  background: url("../img/logo-mark.png") left center / contain no-repeat;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.14; }
.brand__text strong { font-family: var(--sans); font-size: 1.3125rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.brand__text em { font-family: var(--sans); font-style: normal; font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--merah); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 20px; margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: 20px; }
.nav__list a {
  font-family: var(--sans); font-size: .8125rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: var(--ink);
  position: relative; padding: 9px 0; text-decoration: none;
}
.nav__list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  border-radius: 2px; background: var(--sian); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav__list a:hover { color: var(--sian-700); }
.nav__list a:hover::after, .nav__list a[aria-current]::after { transform: scaleX(1); }
.nav__list a[aria-current] { color: var(--sian-700); }
.nav__alat { display: flex; align-items: center; gap: 10px; }

/* Kotak cari di header, mengikuti acuan */
.pencarian { display: flex; align-items: stretch; border: 1px solid var(--line-kuat); border-radius: var(--r-sm); overflow: hidden; background: var(--abu); }
.pencarian input { border: 0; background: transparent; padding: 10px 14px; font-family: var(--sans); font-size: .8125rem; width: 168px; }
.pencarian input:focus { outline: none; background: #fff; }
.pencarian button {
  border: 0; background: var(--biru); color: #fff; cursor: pointer;
  padding: 0 15px; font-family: var(--sans); font-size: .75rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 7px;
  transition: background-color .18s ease;
}
.pencarian button:hover { background: var(--biru-700); }

/* Baris bagikan pada kartu isi */
.bagikan { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bagikan span { font-family: var(--sans); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.bagikan a { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--abu); border: 1px solid var(--line); color: var(--arang); transition: background-color .18s ease, color .18s ease; }
.bagikan a:hover { background: var(--sian-700); border-color: var(--sian-700); color: #fff; }

.nav-toggle { display: none; margin-left: auto; background: var(--sian-50); border: 1px solid var(--sian-100); border-radius: var(--r-sm); padding: 10px 11px; cursor: pointer; }
.nav-toggle__bars { display: block; width: 20px; }
.nav-toggle__bars span { display: block; height: 2px; background: var(--sian-700); transition: transform .2s ease, opacity .16s ease; }
.nav-toggle__bars span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Bilah remah navigasi selebar layar */
.crumbbar { background: var(--arang); }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding-block: 13px; font-family: var(--sans); font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.crumbs li { display: flex; align-items: center; gap: 10px; }
.crumbs li + li::before { content: "\203A"; color: rgba(255,255,255,.42); font-weight: 400; }
.crumbs a { color: #fff; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs [aria-current] { color: rgba(255,255,255,.7); font-weight: 500; text-transform: none; letter-spacing: .02em; }

/* Lencana melayang */
.lencana {
  position: fixed; right: 20px; bottom: 20px; z-index: 180;
  width: 108px; height: 108px; border-radius: 50%;
  background: var(--sian); color: #fff; border: 4px solid #fff;
  box-shadow: var(--sh-4); text-decoration: none;
  display: grid; place-items: center; text-align: center;
  font-family: var(--sans); font-size: .6875rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; line-height: 1.3;
  padding: 10px; transition: background-color .18s ease, transform .18s ease;
}
.lencana:hover { background: var(--sian-700); color: #fff; transform: translateY(-3px); }
.lencana svg { margin: 0 auto 5px; }

/* 5. Hero ---------------------------------------------------------------- */
.hero-wrap { background-color: var(--abu); background-image: var(--titik); border-bottom: 1px solid var(--line); padding-block: clamp(28px, 3.4vw, 52px); }
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: var(--r-lg); box-shadow: var(--sh-4);
  background: var(--sian-900); color: rgba(255,255,255,.9);
  display: flex; align-items: flex-end;
  min-height: clamp(380px, 40vw, 480px);
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: rgba(0, 60, 74, .66); }
.hero__isi { position: relative; z-index: 2; padding: clamp(28px, 3.6vw, 52px); max-width: 46rem; }
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero__lead { font-size: 1.0625rem; margin-bottom: 26px; }
.hero__aksi { display: flex; flex-wrap: wrap; gap: 12px; }

/* 6. Dua kolom: sidebar + kartu isi -------------------------------------- */
.dua-kolom { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: clamp(26px, 3.4vw, 46px); align-items: start; padding-block: clamp(30px, 3.4vw, 46px) clamp(52px, 5.6vw, 84px); }

.sidenav { position: sticky; top: 104px; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--sian); border-radius: 0 0 var(--r) var(--r); box-shadow: var(--sh-2); overflow: hidden; }
.sidenav h2 { font-size: 1.125rem; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.sidenav ul { display: grid; }
.sidenav a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 22px; border-bottom: 1px solid var(--line);
  font-size: .9375rem; color: var(--ink); text-decoration: none;
  transition: background-color .16s ease, color .16s ease;
}
.sidenav li:last-child a { border-bottom: 0; }
.sidenav a:hover { background: var(--sian-50); color: var(--sian-700); }
.sidenav a[aria-current] { background: var(--sian); color: #fff; font-weight: 600; }
.sidenav a::after {
  content: ""; flex: none; width: 8px; height: 8px;
  border-right: 2px solid currentColor; border-top: 2px solid currentColor;
  transform: rotate(45deg); opacity: 0;
}
.sidenav a[aria-current]::after, .sidenav a:hover::after { opacity: 1; }

.kartu-isi { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-2); padding: clamp(26px, 3vw, 44px); }
.kartu-isi__kepala { padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 26px; }
.kartu-isi__kepala h1 { margin-bottom: 14px; }
.kartu-isi__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-family: var(--sans); font-size: .8125rem; color: var(--muted); }
.kartu-isi__meta strong { color: var(--ink); font-weight: 600; }

/* Kotak ringkasan di awal artikel */
.ringkasan { background: var(--sian-50); border: 1px solid var(--sian-100); border-radius: var(--r); padding: 22px 26px; margin-bottom: 30px; }
.ringkasan h2 { font-size: 1.1875rem; margin-bottom: 12px; }
.ringkasan ul { display: grid; gap: 10px; }
.ringkasan li { position: relative; padding-left: 26px; font-size: .9375rem; }
.ringkasan li::before { content: ""; position: absolute; left: 3px; top: .66em; width: 8px; height: 8px; border-radius: 50%; background: var(--sian); }

/* 7. Prosa --------------------------------------------------------------- */
.prose > * + * { margin-top: 20px; }
.prose h2 { font-size: clamp(1.375rem, 1.15rem + .8vw, 1.75rem); margin-top: 40px; }
.prose h3 { font-size: 1.1875rem; margin-top: 30px; }
.prose ul, .prose ol { display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 26px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: .72em; width: 7px; height: 7px; border-radius: 50%; background: var(--merah); }
.prose ol { counter-reset: n; }
.prose ol li { position: relative; padding-left: 36px; counter-increment: n; }
.prose ol li::before {
  content: counter(n); position: absolute; left: 0; top: .16em;
  width: 25px; height: 25px; border-radius: 50%;
  background: var(--sian-50); border: 1px solid var(--sian-100); color: var(--sian-700);
  font-family: var(--sans); font-size: .75rem; font-weight: 700; display: grid; place-items: center;
}
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.kutipan { background: var(--abu); border-left: 4px solid var(--merah); border-radius: 0 var(--r) var(--r) 0; padding: 22px 26px; }
.kutipan p { font-size: 1.125rem; line-height: 1.6; color: var(--ink); }
.kutipan footer { margin-top: 12px; font-family: var(--sans); font-size: .8125rem; color: var(--muted); }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line); }
.tags a { font-family: var(--sans); font-size: .8125rem; font-weight: 600; color: var(--sian-700); background: var(--sian-50); border: 1px solid var(--sian-100); border-radius: var(--pill); padding: 7px 15px; text-decoration: none; }
.tags a:hover { background: var(--sian-100); }

/* Tabel */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-1); background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
thead th { background: var(--sian-50); color: var(--ink); font-weight: 700; text-align: left; white-space: nowrap; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
tbody tr:last-child td { border-bottom: 0; }

/* 8. Bagian umum --------------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* Kartu ber-ikon dengan angka besar samar */
.kotak {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--sh-1); padding: 26px 24px 24px;
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}
.kotak:hover { border-color: var(--line-kuat); box-shadow: var(--sh-3); transform: translateY(-4px); }
.kotak::before {
  content: attr(data-no); position: absolute; right: 10px; top: -12px;
  font-family: var(--sans); font-size: 5.5rem; font-weight: 800; line-height: 1;
  color: var(--merah); opacity: .1; pointer-events: none;
}
.kotak::after { content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: var(--sian); opacity: 0; transition: opacity .22s ease; }
.kotak:hover::after { opacity: 1; }
.kotak__ico { position: relative; width: 50px; height: 50px; border-radius: var(--r-sm); background: var(--sian-50); border: 1px solid var(--sian-100); color: var(--sian-700); display: grid; place-items: center; margin-bottom: 18px; }
.kotak h3 { position: relative; margin-bottom: 8px; }
.kotak p { position: relative; font-size: .9375rem; }
.kotak__tautan { position: relative; display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-family: var(--sans); font-size: .875rem; font-weight: 600; color: var(--sian-700); text-decoration: none; }
.kotak__tautan svg { transition: transform .2s ease; }
.kotak:hover .kotak__tautan svg { transform: translateX(3px); }

/* Dua kolom teks + gambar */
.duo { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(30px, 4.4vw, 62px); align-items: center; }
.duo--atas { align-items: start; }
.duo__media img { width: 100%; height: clamp(260px, 32vw, 420px); object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-3); }
.poin { display: grid; gap: 14px; margin-top: 22px; }
.poin li { position: relative; padding-left: 32px; font-size: .9375rem; }
.poin li::before { content: ""; position: absolute; left: 0; top: .3em; width: 20px; height: 20px; border-radius: 50%; background: var(--sian-50); border: 1px solid var(--sian-100); }
.poin li::after { content: ""; position: absolute; left: 6px; top: .62em; width: 9px; height: 5px; border-left: 2px solid var(--sian-700); border-bottom: 2px solid var(--sian-700); transform: rotate(-45deg); }

/* Daftar langkah */
.langkah { counter-reset: langkah; display: grid; gap: 14px; }
.langkah li { position: relative; counter-increment: langkah; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-1); padding: 22px 24px 22px 78px; }
.langkah li::before {
  content: counter(langkah, decimal-leading-zero); position: absolute; left: 24px; top: 22px;
  font-family: var(--sans); font-size: 1.375rem; font-weight: 800; color: var(--merah); line-height: 1.2;
}
.langkah h3 { margin-bottom: 5px; }
.langkah p { font-size: .9375rem; max-width: 74ch; }

/* Banner bergambar */
.banner { position: relative; display: flex; align-items: flex-end; min-height: 200px; border-radius: var(--r); overflow: hidden; isolation: isolate; color: #fff; box-shadow: var(--sh-2); text-decoration: none; transition: box-shadow .22s ease, transform .22s ease; }
.banner:hover { box-shadow: var(--sh-4); transform: translateY(-3px); }
.banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; transition: transform .45s ease; }
.banner::after { content: ""; position: absolute; inset: 0; background: rgba(0, 60, 74, .6); z-index: -1; }
.banner:hover img { transform: scale(1.05); }
.banner__isi { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; padding: 26px; }
.banner__isi h3 { color: #fff; font-size: 1.25rem; }
.banner__isi p { font-family: var(--sans); font-size: .875rem; color: rgba(255,255,255,.88); margin-top: 5px; }
.banner__panah { flex: none; width: 46px; height: 46px; border-radius: 50%; border: 2px solid rgba(255,255,255,.75); display: grid; place-items: center; transition: background-color .2s ease, color .2s ease, border-color .2s ease; }
.banner:hover .banner__panah { background: #fff; color: var(--sian-700); border-color: #fff; }

/* 9. Kartu artikel & daftar ---------------------------------------------- */
.post { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh-1); transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease; }
.post:hover { border-color: var(--line-kuat); box-shadow: var(--sh-3); transform: translateY(-3px); }
.post__media { position: relative; height: 200px; overflow: hidden; background: var(--sian-50); }
.post__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.post:hover .post__media img { transform: scale(1.04); }
.post__body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.post__body h3 { font-size: 1.125rem; line-height: 1.38; margin-bottom: 12px; }
.post__body h3 a { color: var(--ink); text-decoration: none; }
.post__body h3 a:hover { color: var(--sian-700); }
.post__excerpt { font-size: .9375rem; margin-bottom: 16px; }
.post__meta { margin-top: auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-family: var(--sans); font-size: .8125rem; color: var(--muted); }

/* Satu artikel utama besar + daftar baris */
.berita-tata { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr); gap: 24px; align-items: start; }
.post--besar .post__media { height: clamp(240px, 26vw, 340px); }
.post--besar .post__body { padding: 24px 26px 26px; }
.post--besar .post__body h3 { font-size: 1.5rem; line-height: 1.3; }
.berita-daftar { display: grid; gap: 16px; align-content: start; }
.post-baris { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-1); padding: 14px; transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease; }
.post-baris:hover { border-color: var(--line-kuat); box-shadow: var(--sh-3); transform: translateY(-2px); }
.post-baris img { width: 116px; height: 88px; object-fit: cover; border-radius: var(--r-sm); flex: none; }
.post-baris h3 { font-size: 1.0625rem; line-height: 1.38; margin-bottom: 10px; }
.post-baris h3 a { color: var(--ink); text-decoration: none; }
.post-baris h3 a:hover { color: var(--sian-700); }
.post-baris__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-family: var(--sans); font-size: .8125rem; color: var(--muted); }

/* Galeri */
.galeri { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 170px; gap: 16px; }
.galeri a { position: relative; overflow: hidden; border-radius: var(--r); box-shadow: var(--sh-2); transition: box-shadow .22s ease, transform .22s ease; }
.galeri a:hover { box-shadow: var(--sh-4); transform: translateY(-3px); }
.galeri img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.galeri a:hover img { transform: scale(1.06); }
.galeri a:first-child { grid-column: span 2; grid-row: span 2; }

/* Sidebar artikel */
.sidebar { display: grid; gap: 26px; position: sticky; top: 104px; }
.sidebar__kartu { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-1); padding: 22px 24px; }
.sidebar h2 { font-size: 1.1875rem; margin-bottom: 6px; }
.side-post { display: flex; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.side-post:last-child { border-bottom: 0; padding-bottom: 0; }
.side-post img { width: 82px; height: 62px; object-fit: cover; border-radius: var(--r-sm); flex: none; }
.side-post h3 { font-size: .9375rem; line-height: 1.42; margin-bottom: 5px; }
.side-post h3 a { color: var(--ink); text-decoration: none; }
.side-post h3 a:hover { color: var(--sian-700); }
.side-post time { font-family: var(--sans); font-size: .75rem; color: var(--muted); }
.side-cta { background: var(--sian-700); color: rgba(255,255,255,.88); border-radius: var(--r); box-shadow: var(--sh-2); padding: 26px 24px; }
.side-cta h2 { color: #fff; font-size: 1.125rem; margin-bottom: 8px; }
.side-cta p { font-size: .9375rem; margin-bottom: 18px; }

/* Statistik */
.statistik { background: var(--sian-700); color: rgba(255,255,255,.84); padding: clamp(48px, 5vw, 76px) 0; text-align: center; }
.statistik h2 { color: #fff; margin-bottom: clamp(26px, 3vw, 38px); }
.statistik__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.statistik__grid > div { padding: 26px 18px; border-radius: var(--r); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); }
.statistik span { display: block; font-family: var(--sans); font-size: .875rem; }
.statistik b { display: block; margin-top: 8px; font-family: var(--sans); font-size: clamp(1.6rem, 1.1rem + 2vw, 2.5rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -.02em; }
.statistik__sumber { margin-top: 24px; font-family: var(--sans); font-size: .8125rem; color: rgba(255,255,255,.68); }

/* Pertanyaan umum */
.faq { display: grid; gap: 12px; max-width: 880px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-1); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 18px;
  padding: 19px 22px; cursor: pointer; list-style: none;
  font-size: 1.125rem; font-weight: 700; color: var(--ink); line-height: 1.42;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 12px; height: 12px; margin-top: 8px;
  border-right: 2.4px solid var(--sian-700); border-bottom: 2.4px solid var(--sian-700);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details > div { padding: 0 22px 20px; font-size: .9375rem; max-width: 70ch; }
.faq details > div > * + * { margin-top: 13px; }

/* CTA berlatar foto */
.cta { position: relative; isolation: isolate; overflow: hidden; background: var(--sian-900); color: rgba(255,255,255,.84); padding: clamp(52px, 5vw, 80px) 0; }
.cta__bg { position: absolute; inset: 0; z-index: -1; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.cta__bg::after { content: ""; position: absolute; inset: 0; background: rgba(0, 60, 74, .62); }
.cta__inner { max-width: 44rem; }
.cta h2 { color: #fff; margin-bottom: 12px; }
.cta__aksi { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* 10. Footer -------------------------------------------------------------- */
.footer { background: var(--arang); color: rgba(255,255,255,.68); font-family: var(--sans); font-size: .875rem; }
.footer__atas { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 44px; padding-block: 52px 36px; }
.footer h3 { font-family: var(--sans); font-size: .8125rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer address { line-height: 1.85; }
.footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.socials { display: flex; gap: 22px; flex-wrap: wrap; }
.socials a { display: grid; justify-items: center; gap: 7px; font-size: .75rem; color: rgba(255,255,255,.72); }
.socials a:hover { color: #fff; }

.footer__tautan { padding-bottom: 34px; display: grid; gap: 12px; }
.footer__baris { display: flex; flex-wrap: wrap; align-items: center; }
.footer__baris a { padding: 3px 14px; border-left: 1px solid rgba(255,255,255,.28); }
.footer__baris a:first-child { padding-left: 0; border-left: 0; }

.footer__bawah { background: var(--arang-900); }
.footer__bawah .container { padding-block: 17px; font-size: .8125rem; color: rgba(255,255,255,.52); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* 11. Halaman dalam & formulir ------------------------------------------- */
.pagehead { padding: clamp(28px, 3.4vw, 44px) 0 clamp(28px, 3.4vw, 44px); border-bottom: 1px solid var(--line); }
.pagehead h1 { margin-bottom: 14px; }
.pagehead p { max-width: 62ch; font-size: 1.0625rem; }

.form-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 410px); gap: clamp(30px, 4.4vw, 58px); align-items: start; }
.formcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-2); padding: 28px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--sans); font-size: .875rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-family: var(--sans); font-size: .9375rem;
  background: var(--abu); border: 1.5px solid var(--line); border-radius: var(--r-sm);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; border-color: var(--sian); }
.field textarea { min-height: 116px; resize: vertical; }
.formcard__note { font-family: var(--sans); font-size: .8125rem; color: var(--muted); margin-top: 12px; }
.form-status { margin-top: 14px; padding: 13px 15px; border-radius: var(--r-sm); background: var(--sian-50); border: 1px solid var(--sian-100); color: var(--sian-900); font-size: .9375rem; }

.infolist { display: grid; gap: 16px; }
.infolist li { display: flex; gap: 15px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--sh-1); padding: 20px 22px; }
.infolist__ico { flex: none; width: 44px; height: 44px; border-radius: var(--r-sm); display: grid; place-items: center; background: var(--sian-50); border: 1px solid var(--sian-100); color: var(--sian-700); }
.infolist h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.infolist p, .infolist address { font-size: .9375rem; }

/* 12. Responsif ---------------------------------------------------------- */
@media (max-width: 1080px) {
  .dua-kolom { grid-template-columns: 1fr; }
  .sidenav { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .berita-tata { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .duo__media { order: -1; }
  .sidebar { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__atas { grid-template-columns: 1fr; gap: 32px; }
  .galeri { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 168px; }
  .galeri a:first-child { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; display: none;
    flex-direction: column; align-items: stretch; gap: 0; margin-left: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--sh-3);
    padding: 8px var(--gutter) 22px;
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .875rem; }
  .nav__list a::after { display: none; }
  .nav__alat { margin-top: 16px; }
  .statistik__grid { grid-template-columns: repeat(2, 1fr); }
  .lencana { width: 88px; height: 88px; font-size: .625rem; right: 14px; bottom: 14px; }
}

@media (max-width: 620px) {
  :root { --gutter: 18px; }
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .statistik__grid { grid-template-columns: 1fr; }
  .galeri { grid-template-columns: 1fr; }
  .galeri a:first-child { grid-column: span 1; }
  .post-baris { flex-direction: column; }
  .post-baris img { width: 100%; height: 170px; }
  .head { flex-direction: column; align-items: flex-start; }
  .cta__aksi .btn, .hero__aksi .btn { width: 100%; }
  .footer__bawah .container { flex-direction: column; align-items: flex-start; }
}
