/* ==========================================================================
   Jitu77 — tema "Sasaran" (putih lapangan + hitam jangkar + merah sasaran)
   Enam warna: merah #d81e3f · putih · hijau #149a62 · kuning #f4b400 · biru #1f6fd6 · hitam #101418
   ========================================================================== */

:root {
  --merah: #d81e3f;
  --merah-tua: #a80f2b;
  --hijau: #149a62;
  --hijau-tua: #0c6f46;
  --biru: #1f6fd6;
  --biru-tua: #15518f;
  --kuning: #f4b400;
  --hitam: #101418;
  --hitam-2: #171d24;
  --putih: #ffffff;
  --tint: #f4f6f9;
  --garis: #e3e8ee;
  --teks: #232a31;
  --teks-2: #5b6672;
  --radius: 14px;
  --bayang: 0 10px 30px rgba(16, 20, 24, .08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  color: var(--teks);
  background: var(--putih);
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--biru); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--hitam); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- tombol ---------- */
.btn {
  display: inline-block; border: 0; cursor: pointer; text-decoration: none;
  font-weight: 800; font-size: .88rem; letter-spacing: .04em;
  padding: 13px 26px; border-radius: 999px; line-height: 1.2;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--merah { background: linear-gradient(160deg, #f12c50, var(--merah-tua)); color: #fff; box-shadow: 0 6px 18px rgba(216, 30, 63, .35); }
.btn--merah:hover { color: #fff; }
.btn--hijau { background: linear-gradient(160deg, #17b874, var(--hijau-tua)); color: #fff; box-shadow: 0 6px 18px rgba(20, 154, 98, .32); }
.btn--hijau:hover { color: #fff; }
.btn--biru { background: linear-gradient(160deg, #3b86e8, var(--biru-tua)); color: #fff; box-shadow: 0 6px 18px rgba(31, 111, 214, .3); }
.btn--biru:hover { color: #fff; }
.btn--ghost { background: transparent; color: var(--hitam); border: 2px solid rgba(16, 20, 24, .35); }
.btn--ghost:hover { border-color: var(--hitam); }
.btn--block { display: block; width: 100%; text-align: center; }
.btn--sm { padding: 9px 18px; font-size: .78rem; }

/* ---------- topbar + header ---------- */
.topbar { background: var(--hitam); color: #c7d0da; font-size: .74rem; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 7px 0; }
.topbar__left { display: flex; align-items: center; gap: 8px; min-width: 0; }
.topbar__left .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hijau); flex: none; box-shadow: 0 0 0 3px rgba(20, 154, 98, .25); animation: denyut 2.2s infinite; }
@keyframes denyut { 50% { box-shadow: 0 0 0 6px rgba(20, 154, 98, .08); } }
.topbar__left .txt { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar__right { display: flex; align-items: center; gap: 10px; flex: none; }
.topbar .motto { color: var(--kuning); font-weight: 700; }
.badge--18 {
  display: inline-block; background: var(--merah); color: #fff; font-weight: 900;
  font-size: .68rem; padding: 2px 7px; border-radius: 6px; letter-spacing: .05em;
}

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--garis);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 26px rgba(16, 20, 24, .1); }
.site-header .container { display: flex; align-items: center; gap: 20px; padding: 12px 0; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--hitam); flex: none; }
.brand:hover { text-decoration: none; }
.brand svg { width: 52px; height: 52px; flex: none; }
.brand__name { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name > span { font-size: 1.5rem; font-weight: 900; letter-spacing: .01em; color: var(--hitam); }
.brand__name .hl { color: var(--merah); }
.brand__name small { font-size: .66rem; color: var(--teks-2); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.main-navigation { margin-left: auto; }
.menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.menu-item { position: relative; }
.menu-item > a {
  display: block; padding: 10px 13px; border-radius: 10px;
  color: var(--hitam); font-weight: 700; font-size: .9rem;
}
.menu-item > a:hover { background: var(--tint); text-decoration: none; }
.current-menu-item > a { background: var(--hitam); color: #fff; }
.menu-item-has-children > a::after { content: ""; }
.sub-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0; z-index: 40;
  background: #fff; border: 1px solid var(--garis); border-radius: 12px; box-shadow: var(--bayang);
  list-style: none; min-width: 240px; padding: 8px;
}
.menu-item:hover > .sub-menu, .menu-item:focus-within > .sub-menu { display: block; }
.menu-item:last-child:hover > .sub-menu, .menu-item:last-child:focus-within > .sub-menu { left: auto; right: 0; }
.sub-menu a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--teks); font-size: .86rem; font-weight: 600; }
.sub-menu a:hover { background: var(--tint); color: var(--hitam); text-decoration: none; }

.hdr-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.hdr-searchlink {
  display: flex; align-items: center; justify-content: center; width: 38px; height: 38px;
  border-radius: 50%; background: var(--tint); font-size: 1rem;
}
.hdr-searchlink:hover { background: var(--garis); text-decoration: none; }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--garis); border-radius: 10px;
  background: #fff; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2.5px; border-radius: 2px; background: var(--hitam); }

/* ---------- breadcrumb ---------- */
.breadcrumb { background: var(--tint); border-bottom: 1px solid var(--garis); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; list-style: none; padding: 10px 0; font-size: .78rem; color: var(--teks-2); }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: "›"; color: var(--merah); font-weight: 900; }
.breadcrumb a { color: var(--teks-2); font-weight: 600; }
.breadcrumb a:hover { color: var(--merah); }
.breadcrumb span[aria-current] { color: var(--hitam); font-weight: 700; }

/* ---------- seksi umum ---------- */
.section { padding: 64px 0; }
.section--putih { background: #fff; }
.section--tint { background: var(--tint); }
.section--gelap { background: linear-gradient(165deg, #14191f, var(--hitam)); color: #e8edf2; }
.section--gelap .section-head h2 { color: #fff; }
.section--hijau { background: linear-gradient(160deg, #0f8f5b, var(--hijau-tua)); color: #eafbf3; }
.section--hijau .section-head h2 { color: #fff; }

.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.25; color: var(--hitam); margin: 8px 0 12px; }
.section-head p { color: var(--teks-2); }
.section--gelap .section-head p, .section--hijau .section-head p { color: rgba(255, 255, 255, .82); }

.kicker {
  display: inline-block; font-size: .7rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase;
  color: var(--merah); background: rgba(216, 30, 63, .09); border: 1px solid rgba(216, 30, 63, .25);
  padding: 5px 12px; border-radius: 999px;
}
.section--gelap .kicker { color: #ff92a8; background: rgba(216, 30, 63, .18); border-color: rgba(216, 30, 63, .45); }
.section--hijau .kicker { color: #ffe9a8; background: rgba(244, 180, 0, .16); border-color: rgba(244, 180, 0, .4); }

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

/* ---------- hero ---------- */
.hero { background: linear-gradient(150deg, #151b22 5%, var(--hitam) 60%, #1c1013 100%); color: #edf1f5; padding: 74px 0 66px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: auto -140px -190px auto; width: 480px; height: 480px; border-radius: 50%;
  background: repeating-radial-gradient(circle at center, rgba(216, 30, 63, .22) 0 26px, transparent 26px 62px);
  pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 44px; align-items: center; position: relative; }
.hero__title { font-size: clamp(1.9rem, 4.2vw, 3rem); line-height: 1.16; color: #fff; margin: 16px 0 18px; }
.hero__title .sasan { color: #ff5d78; }
.hero__title .poin { color: var(--kuning); }
.hero__sub { color: #b9c4d0; max-width: 560px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; color: #dfe6ee;
  border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .05);
  padding: 7px 14px; border-radius: 999px;
}
.c18 { background: var(--merah); color: #fff; font-weight: 900; font-size: .68rem; border-radius: 6px; padding: 1px 6px; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 28px; }
.hero__cta .note { flex-basis: 100%; font-size: .74rem; color: #8d9aa8; }
.hero__media { display: flex; flex-direction: column; gap: 16px; }
.hero__card { position: relative; border-radius: var(--radius); overflow: hidden; border: 2px solid rgba(244, 180, 0, .5); box-shadow: 0 18px 44px rgba(0, 0, 0, .45); }
.hero__ribbon {
  background: rgba(16, 20, 24, .88); color: #dbe3ec; font-size: .8rem; line-height: 1.6;
  padding: 13px 16px; border-top: 2px solid rgba(244, 180, 0, .5);
}
.hero__ribbon b { color: var(--kuning); }
.hero__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.hstat { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: 12px; padding: 14px 10px; text-align: center; }
.hstat b { display: block; font-size: 1.7rem; font-weight: 900; color: var(--kuning); line-height: 1.1; }
.hstat span { font-size: .72rem; color: #a9b6c4; }

/* ---------- langkah ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.step { background: #fff; border: 1px solid var(--garis); border-radius: var(--radius); padding: 26px 22px; position: relative; box-shadow: var(--bayang); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; color: #fff; font-weight: 900; font-size: 1.15rem; margin-bottom: 14px;
  background: conic-gradient(from 210deg, var(--merah), var(--kuning), var(--hijau), var(--biru), var(--merah));
}
.step h3 { font-size: 1.02rem; color: var(--hitam); margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--teks-2); }
.step--merah { border-top: 4px solid var(--merah); }
.step--kuning { border-top: 4px solid var(--kuning); }
.step--hijau { border-top: 4px solid var(--hijau); }
.step--biru { border-top: 4px solid var(--biru); }

/* ---------- kartu & grid ---------- */
.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid > * { min-width: 0; max-width: 100%; }

.card { background: #fff; border: 1px solid var(--garis); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--bayang); border-top: 4px solid var(--biru); }
.card h3 { font-size: 1rem; color: var(--hitam); margin: 10px 0 8px; }
.card p { font-size: .87rem; color: var(--teks-2); }
.card__icon { font-size: 1.7rem; line-height: 1; }
.card--merah { border-top-color: var(--merah); }
.card--hijau { border-top-color: var(--hijau); }
.card--biru { border-top-color: var(--biru); }
.card--kuning { border-top-color: var(--kuning); }
.card--hitam { border-top-color: var(--hitam); }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.split__media img { border-radius: var(--radius); box-shadow: var(--bayang); }
.split__copy h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); color: var(--hitam); margin: 8px 0 14px; }
.split__copy p { color: var(--teks-2); margin-bottom: 14px; }
.checklist { list-style: none; margin: 18px 0 22px; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 34px; color: var(--teks); font-size: .92rem; }
.checklist li::before {
  content: "✔"; position: absolute; left: 0; top: 2px; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 900;
  color: #fff; background: var(--hijau); border-radius: 50%;
}

/* ---------- ponsel ---------- */
.phone-wrap { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 46px; align-items: center; }
.phone { width: 100%; max-width: 280px; margin-inline: auto; border: 3px solid var(--hitam); border-radius: 34px; background: #fff; box-shadow: var(--bayang); overflow: hidden; }
.phone__notch { height: 22px; background: var(--hitam); border-radius: 0 0 12px 12px; margin: 0 auto; width: 120px; }
.phone__screen { padding: 12px; }
.phone__bar { display: flex; justify-content: space-between; align-items: center; font-size: .74rem; font-weight: 800; color: var(--hitam); background: var(--tint); border-radius: 9px; padding: 7px 11px; }
.phone__bar .c18 { background: var(--merah); color: #fff; border-radius: 5px; padding: 0 5px; font-size: .66rem; }
.phone__body { display: grid; gap: 9px; margin-top: 10px; }
.phone__tile { display: flex; gap: 10px; align-items: center; border: 1px solid var(--garis); border-radius: 11px; padding: 9px 11px; font-size: .74rem; color: var(--teks-2); }
.phone__tile b { display: block; color: var(--hitam); font-size: .8rem; }
.phone__tile .ic { font-size: 1.3rem; }
.phone__cta { margin-top: 4px; text-align: center; background: var(--hitam); color: var(--kuning); font-weight: 900; font-size: .76rem; letter-spacing: .08em; border-radius: 11px; padding: 10px; }
.feature-rows { display: grid; gap: 14px; margin-top: 20px; }
.frow { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--garis); border-left: 5px solid var(--biru); border-radius: 12px; padding: 15px 17px; box-shadow: var(--bayang); }
.frow .ic { font-size: 1.35rem; flex: none; }
.frow b { display: block; color: var(--hitam); font-size: .95rem; }
.frow p { font-size: .84rem; color: var(--teks-2); }
.frow--merah { border-left-color: var(--merah); }
.frow--kuning { border-left-color: var(--kuning); }
.frow--hijau { border-left-color: var(--hijau); }
.frow--biru { border-left-color: var(--biru); }

/* ---------- testimonial ---------- */
.quote-card { background: #fff; border: 1px solid var(--garis); border-radius: var(--radius); padding: 24px; box-shadow: var(--bayang); display: flex; flex-direction: column; gap: 14px; }
.stars { color: var(--kuning); font-size: 1rem; letter-spacing: 3px; }
.quote-card__text { font-size: .9rem; color: var(--teks); font-style: italic; flex: 1; }
.quote-card__who { display: flex; align-items: center; gap: 12px; }
.quote-card__who b { display: block; font-size: .88rem; color: var(--hitam); }
.quote-card__who span { font-size: .76rem; color: var(--teks-2); }
.avatar { width: 42px; height: 42px; border-radius: 50%; color: #fff; font-weight: 900; display: flex; align-items: center; justify-content: center; flex: none; }
.av--merah { background: var(--merah); }
.av--hijau { background: var(--hijau); }
.av--biru { background: var(--biru); }
.av--kuning { background: var(--kuning); color: var(--hitam); }
.testi-note { text-align: center; font-size: .76rem; color: var(--teks-2); margin-top: 22px; }

/* ---------- inovasi: audit riwayat ---------- */
.audit { background: #fff; border: 1px solid var(--garis); border-radius: var(--radius); box-shadow: var(--bayang); overflow: hidden; }
.audit__score { padding: 14px 22px; background: var(--hitam); color: #fff; font-size: .84rem; font-weight: 700; }
.audit__score .hint { color: #9fb0c0; font-weight: 500; }
.audit__round { padding: 26px 22px; border-top: 1px solid var(--garis); }
.audit__round + .audit__round { border-top: 1px dashed var(--garis); }
.audit__q { font-weight: 800; color: var(--hitam); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rnum { background: var(--merah); color: #fff; font-size: .68rem; font-weight: 900; letter-spacing: .06em; border-radius: 999px; padding: 4px 11px; flex: none; }
.audit__verdict { margin-top: 16px; border-radius: 12px; padding: 16px 18px; background: rgba(20, 154, 98, .09); border-left: 5px solid var(--hijau); font-size: .88rem; color: var(--teks); }
.audit__verdict--salah { background: rgba(216, 30, 63, .08); border-left-color: var(--merah); }
.audit__verdict .vtitle { display: block; font-weight: 800; color: var(--hitam); margin-bottom: 6px; }
.audit__final { padding: 18px 22px; background: linear-gradient(120deg, var(--kuning), #ffd866); color: var(--hitam); font-weight: 800; text-align: center; }
.is-benar { border-color: var(--hijau); box-shadow: 0 0 0 3px rgba(20, 154, 98, .22); }
.is-salah { border-color: var(--merah); opacity: .78; }

/* ---------- keamanan / RG ---------- */
.lockgrid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.rg-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.rg-card { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .16); border-radius: var(--radius); padding: 24px 20px; }
.rg-card .ic { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.rg-card h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.rg-card p { font-size: .85rem; color: rgba(255, 255, 255, .8); }
.rg-note { margin-top: 26px; background: rgba(0, 0, 0, .22); border: 1px dashed rgba(255, 255, 255, .35); border-radius: 12px; padding: 16px 20px; font-size: .88rem; color: #eafbf3; }
.rg-note a { color: #ffe9a8; }

/* ---------- pencarian + tag ---------- */
.searchbox { display: flex; gap: 10px; max-width: 640px; margin: 0 auto 26px; }
.searchbox input {
  flex: 1; min-width: 0; border: 2px solid var(--garis); border-radius: 999px; padding: 13px 22px;
  font-size: .95rem; font-family: inherit; color: var(--teks); background: #fff;
}
.searchbox input:focus { outline: none; border-color: var(--merah); }
.searchbox button { border: 0; border-radius: 999px; padding: 13px 28px; background: var(--hitam); color: #fff; font-weight: 800; letter-spacing: .06em; cursor: pointer; font-size: .85rem; }
.searchbox button:hover { background: var(--merah); }
.tagcloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tag { font-size: .8rem; font-weight: 700; color: var(--teks); background: #fff; border: 1px solid var(--garis); border-radius: 999px; padding: 7px 16px; }
.tag:hover { border-color: var(--merah); color: var(--merah); text-decoration: none; }
.tag--pop { background: var(--hitam); color: #fff; border-color: var(--hitam); }
.tag--pop:hover { background: var(--merah); border-color: var(--merah); color: #fff; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--garis); border-radius: 12px; overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 16px 20px; font-weight: 700; color: var(--hitam); font-size: .94rem;
  list-style: none; position: relative; padding-right: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  background: var(--tint); color: var(--merah); font-weight: 900; border-radius: 50%;
}
.faq-item[open] summary::after { content: "–"; background: var(--merah); color: #fff; }
.faq-item p { padding: 0 20px 18px; font-size: .88rem; color: var(--teks-2); }

/* ---------- artikel ---------- */
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; align-items: start; }
.article { background: #fff; border: 1px solid var(--garis); border-radius: var(--radius); box-shadow: var(--bayang); overflow: hidden; }
.article__meta { display: flex; flex-wrap: wrap; gap: 8px 20px; padding: 16px 26px; border-bottom: 1px solid var(--garis); font-size: .76rem; color: var(--teks-2); background: var(--tint); }
.article__thumb img { width: 100%; }
.entry-content { padding: 26px; }
.entry-content h2 { font-size: 1.32rem; line-height: 1.3; color: var(--hitam); margin: 30px 0 12px; }
.entry-content h2:first-child { margin-top: 0; }
.entry-content h3 { font-size: 1.08rem; color: var(--hitam); margin: 22px 0 8px; }
.entry-content p { margin-bottom: 14px; color: var(--teks); }
.entry-content ul, .entry-content ol { margin: 0 0 16px 22px; display: grid; gap: 8px; color: var(--teks); }
.entry-content li strong { color: var(--hitam); }
.entry-content figure { margin: 20px 0; }
.entry-content figcaption { font-size: .76rem; color: var(--teks-2); margin-top: 8px; text-align: center; }
.lead { font-size: 1.02rem; color: var(--hitam); font-weight: 500; }
.core-anchor { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px; background: var(--tint); border: 1px dashed var(--garis); border-radius: 12px; margin-bottom: 22px; }
.core-anchor a { font-size: .76rem; font-weight: 800; color: var(--hitam); background: #fff; border: 1px solid var(--garis); border-radius: 999px; padding: 6px 13px; }
.core-anchor a:hover { background: var(--hitam); color: #fff; text-decoration: none; }
.callout { border-radius: 12px; padding: 16px 19px; margin: 18px 0; font-size: .9rem; }
.callout b { display: block; margin-bottom: 5px; color: var(--hitam); }
.callout--info { background: rgba(31, 111, 214, .08); border-left: 5px solid var(--biru); }
.callout--warn { background: rgba(244, 180, 0, .13); border-left: 5px solid var(--kuning); }
.callout--bahaya { background: rgba(216, 30, 63, .08); border-left: 5px solid var(--merah); }
.table-wrap { overflow-x: auto; margin: 18px 0; border: 1px solid var(--garis); border-radius: 12px; }
.entry-content table { width: 100%; border-collapse: collapse; font-size: .86rem; min-width: 560px; }
.entry-content th { background: var(--hitam); color: #fff; text-align: left; padding: 11px 14px; font-size: .78rem; letter-spacing: .04em; }
.entry-content td { padding: 11px 14px; border-top: 1px solid var(--garis); vertical-align: top; }
.entry-content tbody tr:nth-child(even) { background: var(--tint); }

/* ---------- sidebar ---------- */
.sidebar { display: grid; gap: 20px; position: sticky; top: 86px; }
.widget { background: #fff; border: 1px solid var(--garis); border-radius: var(--radius); padding: 22px; box-shadow: var(--bayang); }
.widget h3 { font-size: .92rem; color: var(--hitam); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 2px solid var(--merah); display: inline-block; }
.widget ul { list-style: none; display: grid; gap: 9px; }
.widget a { font-size: .86rem; color: var(--teks); font-weight: 600; }
.widget a:hover { color: var(--merah); }
.widget--cta { background: var(--hitam); border-color: var(--hitam); }
.widget--cta h3 { color: #fff; border-color: var(--kuning); }
.widget--cta p { font-size: .83rem; color: #b6c2ce; margin-bottom: 10px; }
.note18 { margin-top: 12px; font-size: .72rem; color: #ff92a8; font-weight: 700; }

/* ---------- formulir ---------- */
.form-panel { max-width: 560px; margin: 0 auto; background: #fff; border: 1px solid var(--garis); border-radius: var(--radius); box-shadow: var(--bayang); overflow: hidden; }
.form-hero { background: linear-gradient(150deg, #151b22, var(--hitam)); color: #fff; padding: 30px 28px; text-align: center; }
.form-hero .ic { font-size: 2rem; }
.form-hero h1 { font-size: 1.4rem; margin: 8px 0 6px; }
.form-hero .sub { color: #aab7c4; font-size: .86rem; }
.form-panel form { padding: 28px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .8rem; font-weight: 800; color: var(--hitam); margin-bottom: 7px; }
.field input {
  width: 100%; border: 2px solid var(--garis); border-radius: 11px; padding: 12px 15px;
  font-size: .95rem; font-family: inherit; color: var(--teks);
}
.field input:focus { outline: none; border-color: var(--merah); }
.form-note { font-size: .76rem; color: var(--teks-2); margin-top: 14px; text-align: center; }
.form-legal { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--garis); font-size: .74rem; color: var(--teks-2); line-height: 1.6; }

/* ---------- footer ---------- */
.site-footer { background: var(--hitam); color: #c3cdd7; }
.footer-cta { border-bottom: 1px solid rgba(255, 255, 255, .08); }
.footer-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 38px 0; flex-wrap: wrap; }
.footer-cta h2 { color: #fff; font-size: 1.35rem; margin-bottom: 6px; }
.footer-cta p { font-size: .86rem; color: #9dabb9; }
.footer-cta .btns { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, .9fr) minmax(0, .9fr) minmax(0, 1fr); gap: 36px; padding: 46px 0 34px; }
.f-brand .brand { margin-bottom: 14px; }
.f-brand .brand__name > span { color: #fff; }
.f-brand p { font-size: .84rem; color: #9dabb9; margin-bottom: 16px; }
.f-sos { display: flex; gap: 10px; }
.f-sos a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255, 255, 255, .07); border-radius: 10px; font-size: 1rem; }
.f-sos a:hover { background: var(--merah); text-decoration: none; }
.f-col h3 { color: #fff; font-size: .9rem; margin-bottom: 14px; letter-spacing: .06em; text-transform: uppercase; }
.f-col ul { list-style: none; display: grid; gap: 9px; }
.f-col a { font-size: .84rem; color: #9dabb9; }
.f-col a:hover { color: var(--kuning); }
.f-rg { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); border-radius: 12px; padding: 16px; font-size: .78rem; color: #9dabb9; }
.f-rg b { display: block; color: var(--kuning); margin-bottom: 6px; font-size: .84rem; }
.f-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 20px 0 26px; }
.f-bottom .container { display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; justify-content: space-between; font-size: .76rem; color: #8b99a8; }
.f-bottom .brand-mini { display: flex; align-items: center; gap: .5rem; color: #fff; font-weight: 800; }
.f-bottom .brand-mini svg { width: 26px; height: 26px; }
.f-legal { font-size: .74rem; color: #7d8b9a; line-height: 1.6; padding-bottom: 26px; margin-top: 10px; }

/* ---------- hasil pencarian ---------- */
.sr-item { background: #fff; border: 1px solid var(--garis); border-radius: 12px; padding: 18px 22px; }
.sr-item + .sr-item { margin-top: 12px; }
.sr-item .crumb { font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--merah); margin-bottom: 5px; }
.sr-item h3 { font-size: 1rem; margin-bottom: 5px; }
.sr-item p { font-size: .84rem; color: var(--teks-2); }

/* ---------- floatbar (slot + koin) ---------- */
.floatbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 300;
  background: linear-gradient(180deg, rgba(16, 20, 24, .95), rgba(10, 13, 16, .98));
  border-top: 3px solid var(--merah);
  box-shadow: 0 -12px 34px rgba(16, 20, 24, .45);
  padding: 8px 0;
}
.floatbar .container { display: flex; align-items: center; gap: 18px; }
.reels { display: flex; gap: 6px; flex: none; }
.reel {
  width: 38px; height: 44px; border-radius: 9px; overflow: hidden;
  background: linear-gradient(180deg, #232b34, #12171c);
  border: 1px solid rgba(244, 180, 0, .5);
  box-shadow: inset 0 6px 10px rgba(0, 0, 0, .55);
}
.reel .strip { display: flex; flex-direction: column; animation: reelspin 2.6s steps(4) infinite; }
.reel .strip b { height: 44px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.reel--mid .strip { animation-duration: 3.4s; animation-direction: reverse; }
.reel--slow .strip { animation-duration: 4.6s; }
@keyframes reelspin { to { transform: translateY(-50%); } }
.floatbar__mid { min-width: 0; flex: 1; }
.floatbar__mid .t1 { font-size: .9rem; font-weight: 800; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.floatbar__mid .gold { color: var(--kuning); }
.floatbar__mid .t2 { font-size: .7rem; color: #9db2cc; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.floatbar__cta { display: flex; gap: .6rem; flex: none; align-items: center; position: relative; }
.floatbar__cta .btn { padding: 11px 22px; font-size: .86rem; }
.coin { position: absolute; font-size: .85rem; opacity: 0; animation: coinup 3.2s ease-in infinite; pointer-events: none; }
.coin--1 { left: 6px; bottom: 30px; animation-delay: .2s; }
.coin--2 { left: 46%; bottom: 30px; animation-delay: 1.3s; }
.coin--3 { right: 8px; bottom: 30px; animation-delay: 2.2s; }
@keyframes coinup {
  0% { opacity: 0; transform: translateY(0) rotate(0deg); }
  15% { opacity: 1; }
  60% { opacity: .9; }
  100% { opacity: 0; transform: translateY(-46px) rotate(28deg); }
}

/* ---------- responsif ---------- */
@media (max-width: 1360px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 1120px) {
  .nav-toggle { display: flex; }
  .main-navigation {
    display: none; position: fixed; inset: 0; z-index: 250;
    background: rgba(16, 20, 24, .97); backdrop-filter: blur(6px);
    margin: 0; padding: 96px 24px 40px; overflow-y: auto;
  }
  .main-navigation.is-open { display: block; }
  .menu { flex-direction: column; align-items: stretch; gap: 4px; }
  .menu-item > a { font-size: 1.05rem; padding: 13px 16px; color: #fff; border-radius: 10px; }
  .menu-item > a:hover { background: rgba(255, 255, 255, .08); }
  .current-menu-item > a { background: var(--merah); }
  .sub-menu { display: block; position: static; background: transparent; border: 0; box-shadow: none; padding: 0 0 0 16px; min-width: 0; }
  .sub-menu a { color: #b9c4d0; }
  .sub-menu a:hover { color: #fff; background: rgba(255, 255, 255, .06); }
  .article-grid { grid-template-columns: minmax(0, 1fr); }
  .sidebar { position: static; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .phone-wrap { grid-template-columns: minmax(0, 1fr); }
  .lockgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rg-grid { grid-template-columns: minmax(0, 1fr); }
  .section { padding: 52px 0; }
}

@media (max-width: 640px) {
  .grid--3, .grid--2, .steps, .lockgrid { grid-template-columns: minmax(0, 1fr); }
  .topbar .motto { display: none; }
  .hdr-searchlink { display: none; }
  .brand__name small { display: none; }
  .hero { padding: 54px 0 48px; }
  .hero__stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reels { display: none; }
  .floatbar__mid { display: none; }
  .floatbar .container { justify-content: center; }
  .footer-cta .container { flex-direction: column; text-align: center; }
  .section { padding: 44px 0; }
  .entry-content { padding: 20px; }
  .article__meta { padding: 13px 20px; }
}

@media (max-width: 480px) {
  .hdr-actions .btn--ghost { display: none; }
}

@media (max-width: 414px) {
  .container { width: calc(100% - 28px); }
  .brand svg { width: 42px; height: 42px; }
  .brand__name > span { font-size: 1.25rem; }
  .btn { padding: 12px 20px; font-size: .82rem; }
  .floatbar__cta .btn { padding: 10px 16px; font-size: .8rem; }
  .reel { width: 32px; height: 38px; }
  .reel .strip b { height: 38px; font-size: 1rem; }
}

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