/* ==========================================================================
   Orion88 — tema "Langit Malam" (wp-content/themes/orion88)
   Palet enam warna: hitam langit, putih, biru bintang, kuning emas,
   merah sanggup-sinyal, hijau aman. Dewasa, terang, rapi.
   ========================================================================== */

:root {
  --bg: #060913;
  --bg-2: #0a0f1f;
  --panel: #0d1528;
  --panel-2: #121c36;
  --garis: rgba(148, 175, 235, .16);
  --garis-kuat: rgba(148, 175, 235, .3);
  --emas: #f5c451;
  --emas-2: #ffd97a;
  --emas-padam: #8a6d2a;
  --langit: #4cc2ff;
  --langit-2: #7ad4ff;
  --biru-dalam: #2a6ff0;
  --merah: #ff5964;
  --merah-tua: #b92734;
  --hijau: #35c98e;
  --hijau-tua: #157a53;
  --putih: #eef4ff;
  --redup: #93a7cd;
  --redup-2: #6b7fa8;
  --kertas: #f7f9ff;
  --kertas-2: #eef2fb;
  --tinta: #17203a;
  --tinta-2: #46557c;
  --radius: 14px;
  --radius-sm: 10px;
  --bayang: 0 18px 44px rgba(1, 4, 12, .5);
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.72;
  color: var(--putih);
  background:
    radial-gradient(1100px 500px at 85% -100px, rgba(42, 111, 240, .16), transparent 60%),
    radial-gradient(900px 480px at -10% 30%, rgba(245, 196, 81, .07), transparent 55%),
    var(--bg);
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--langit); text-decoration: none; }
a:hover { color: var(--emas-2); }
ul, ol { padding-left: 1.35rem; }
p + p { margin-top: .85em; }

.container { width: min(1180px, 92vw); margin: 0 auto; }
.text-center { text-align: center; }

.skip-link {
  position: absolute; left: 12px; top: -56px; z-index: 300;
  background: var(--emas); color: #1c1503; font-weight: 700;
  padding: 10px 18px; border-radius: 0 0 10px 10px; transition: top .18s;
}
.skip-link:focus { top: 0; color: #1c1503; }

/* ---------- Tombol ---------- */
.btn {
  display: inline-block; border: 0; cursor: pointer;
  font: 700 .92rem/1 var(--font); letter-spacing: .04em;
  padding: 15px 26px; border-radius: 999px;
  transition: transform .16s, box-shadow .16s, filter .16s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn--bintang {
  background: linear-gradient(135deg, var(--emas-2), var(--emas) 55%, #d99f23);
  color: #241a02; box-shadow: 0 10px 26px rgba(245, 196, 81, .32);
}
.btn--merah {
  background: linear-gradient(135deg, #ff7b84, var(--merah) 55%, var(--merah-tua));
  color: #fff; box-shadow: 0 10px 26px rgba(255, 89, 100, .3);
}
.btn--hijau {
  background: linear-gradient(135deg, #5ee0aa, var(--hijau) 55%, var(--hijau-tua));
  color: #04281a; box-shadow: 0 10px 26px rgba(53, 201, 142, .28);
}
.btn--biru {
  background: linear-gradient(135deg, var(--langit-2), var(--langit) 55%, var(--biru-dalam));
  color: #04182e; box-shadow: 0 10px 26px rgba(76, 194, 255, .26);
}
.btn--ghost {
  background: transparent; color: var(--putih);
  border: 1.6px solid var(--garis-kuat); box-shadow: none;
}
.btn--ghost:hover { border-color: var(--emas); color: var(--emas-2); }
.btn--sm { padding: 10px 18px; font-size: .82rem; }
.btn--block { display: block; width: 100%; }
.btn--lg { padding: 17px 34px; font-size: 1rem; }

/* ---------- Topbar ---------- */
.topbar {
  background: rgba(3, 5, 12, .92); border-bottom: 1px solid var(--garis);
  font-size: .8rem; color: var(--redup);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 36px; }
.topbar__left { display: flex; align-items: center; gap: 9px; min-width: 0; }
.topbar__left .txt { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--hijau); box-shadow: 0 0 10px var(--hijau); animation: pulse 2.4s infinite; flex: none; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.topbar__right { display: flex; align-items: center; gap: 10px; flex: none; }
.badge--18 {
  background: var(--merah); color: #fff; font-weight: 800;
  border-radius: 6px; padding: 1px 7px; font-size: .74rem; letter-spacing: .04em;
}
.motto { color: var(--emas); font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 120;
  background: rgba(6, 9, 19, .88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--garis);
  transition: box-shadow .2s;
}
.site-header.is-scrolled { box-shadow: 0 14px 34px rgba(0, 0, 0, .45); }
.site-header .container { display: flex; align-items: center; gap: 22px; min-height: 72px; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--putih); flex: none; }
.brand svg { width: 46px; height: 46px; flex: none; }
.brand__name span { font-size: 1.34rem; font-weight: 800; letter-spacing: .02em; color: var(--putih); }
.brand__name .hl { color: var(--emas); }
.brand__name small { display: block; font-size: .66rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--redup); }

.main-navigation { margin-left: auto; }
.menu { list-style: none; padding: 0; display: flex; align-items: center; gap: 4px; }
.menu-item { position: relative; }
.menu-item > a {
  display: block; padding: 10px 13px; border-radius: 9px;
  color: var(--putih); font-weight: 600; font-size: .93rem; white-space: nowrap;
}
.menu-item > a:hover { color: var(--emas-2); background: rgba(245, 196, 81, .08); }
.current-menu-item > a { color: var(--emas); background: rgba(245, 196, 81, .12); }
.sub-menu {
  list-style: none; position: absolute; top: calc(100% + 8px); left: 0; z-index: 40;
  min-width: 252px; padding: 8px;
  background: var(--panel-2); border: 1px solid var(--garis-kuat);
  border-radius: var(--radius-sm); box-shadow: var(--bayang);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s;
}
.menu-item-has-children:hover .sub-menu,
.menu-item-has-children:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu a { display: block; padding: 9px 12px; border-radius: 8px; color: var(--putih); font-size: .9rem; }
.sub-menu a:hover { background: rgba(245, 196, 81, .1); color: var(--emas-2); }
.menu :last-child .sub-menu { left: auto; right: 0; }

.hdr-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.hdr-searchlink {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  border: 1.4px solid var(--garis-kuat); font-size: 1rem; color: var(--putih);
}
.hdr-searchlink:hover { border-color: var(--emas); color: var(--emas-2); }

.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 10px;
  background: transparent; border: 1.4px solid var(--garis-kuat); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--putih); border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Breadcrumb ---------- */
.breadcrumb { background: var(--bg-2); border-bottom: 1px solid var(--garis); font-size: .8rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 9px 0; }
.breadcrumb li { color: var(--redup); display: flex; align-items: center; gap: 6px; }
.breadcrumb li + li::before { content: "›"; color: var(--redup-2); }
.breadcrumb a { color: var(--redup); }
.breadcrumb a:hover { color: var(--emas-2); }
.breadcrumb [aria-current="page"] { color: var(--emas); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 66px 0 70px; overflow: clip; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(1.6px 1.6px at 12% 22%, rgba(238, 244, 255, .8), transparent 55%),
    radial-gradient(1.4px 1.4px at 28% 64%, rgba(238, 244, 255, .55), transparent 55%),
    radial-gradient(2px 2px at 41% 14%, rgba(245, 196, 81, .8), transparent 55%),
    radial-gradient(1.4px 1.4px at 55% 76%, rgba(238, 244, 255, .5), transparent 55%),
    radial-gradient(1.8px 1.8px at 68% 32%, rgba(76, 194, 255, .8), transparent 55%),
    radial-gradient(1.3px 1.3px at 82% 58%, rgba(238, 244, 255, .6), transparent 55%),
    radial-gradient(2.2px 2.2px at 92% 18%, rgba(245, 196, 81, .7), transparent 55%),
    radial-gradient(1.4px 1.4px at 8% 82%, rgba(76, 194, 255, .6), transparent 55%);
  animation: kelip 5.5s ease-in-out infinite alternate;
}
@keyframes kelip { from { opacity: .55; } to { opacity: 1; } }
.hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 44px; align-items: center; }
.kicker {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--langit);
  border: 1px solid rgba(76, 194, 255, .38); border-radius: 999px;
  padding: 5px 14px; margin-bottom: 16px; background: rgba(76, 194, 255, .07);
}
.hero__title { font-size: clamp(1.9rem, 4vw, 3.05rem); line-height: 1.16; font-weight: 800; letter-spacing: -.015em; }
.hero__title .emas { color: var(--emas); }
.hero__title .biru { color: var(--langit); }
.hero__sub { margin-top: 18px; color: var(--redup); font-size: 1.04rem; max-width: 56ch; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.chip {
  font-size: .8rem; font-weight: 600; color: var(--putih);
  background: rgba(13, 21, 40, .85); border: 1px solid var(--garis-kuat);
  border-radius: 999px; padding: 7px 14px;
}
.chip .c18 { color: var(--merah); font-weight: 800; }
.hero__cta { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 13px; }
.hero__cta .note { flex-basis: 100%; font-size: .78rem; color: var(--redup-2); }

.hero__media { display: grid; gap: 16px; }
.hero__card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--garis-kuat); box-shadow: var(--bayang);
}
.hero__card img { width: 100%; height: 264px; object-fit: cover; }
.hero__ribbon {
  background: linear-gradient(0deg, rgba(6, 9, 19, .96), rgba(6, 9, 19, .78));
  border-top: 1px solid var(--garis);
  padding: 14px 18px; font-size: .84rem; color: var(--putih);
}
.hero__ribbon b { color: var(--emas); }
.hero__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.hstat {
  background: var(--panel); border: 1px solid var(--garis); border-radius: var(--radius-sm);
  padding: 14px 10px; text-align: center;
}
.hstat b { display: block; font-size: 1.7rem; font-weight: 800; color: var(--emas); line-height: 1.2; }
.hstat span { font-size: .74rem; color: var(--redup); }

/* ---------- Section umum ---------- */
.section { padding: 64px 0; }
.section--gelap { background: var(--bg-2); }
.section--putih { background: var(--kertas); color: var(--tinta); }
.section--putih h2, .section--putih h3 { color: var(--tinta); }
.section--tint { background: linear-gradient(180deg, var(--bg-2), var(--panel)); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.45rem, 2.6vw, 2.05rem); line-height: 1.25; font-weight: 800; letter-spacing: -.01em; }
.section-head p { margin-top: 12px; color: var(--redup); }
.section--putih .section-head p { color: var(--tinta-2); }
.section--putih .kicker { color: var(--biru-dalam); border-color: rgba(42, 111, 240, .3); background: rgba(42, 111, 240, .06); }

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

.card {
  background: var(--panel); border: 1px solid var(--garis);
  border-radius: var(--radius); padding: 24px 22px;
  transition: transform .18s, border-color .18s;
}
.card:hover { transform: translateY(-4px); }
.card h3 { font-size: 1.03rem; font-weight: 700; margin: 12px 0 8px; }
.card p { font-size: .89rem; color: var(--redup); }
.card__icon { font-size: 1.7rem; line-height: 1; }
.card--bintang { border-top: 3px solid var(--emas); }
.card--bintang:hover { border-color: var(--emas); }
.card--langit { border-top: 3px solid var(--langit); }
.card--langit:hover { border-color: var(--langit); }
.card--jade { border-top: 3px solid var(--hijau); }
.card--jade:hover { border-color: var(--hijau); }
.card--merah { border-top: 3px solid var(--merah); }
.card--merah:hover { border-color: var(--merah); }
.card--hitam { border-top: 3px solid var(--garis-kuat); }
.card--hitam:hover { border-color: var(--emas); }

/* ---------- Langkah ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; counter-reset: langkah; }
.step {
  position: relative; background: var(--panel); border: 1px solid var(--garis);
  border-radius: var(--radius); padding: 26px 20px 22px;
}
.step__num {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800; font-size: 1.12rem;
  background: linear-gradient(135deg, var(--emas-2), var(--emas));
  color: #241a02; box-shadow: 0 8px 20px rgba(245, 196, 81, .3); margin-bottom: 14px;
}
.step h3 { font-size: 1rem; margin-bottom: 7px; }
.step p { font-size: .87rem; color: var(--redup); }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 42px; align-items: center; }
.split__media img { border-radius: var(--radius); border: 1px solid var(--garis-kuat); box-shadow: var(--bayang); }
.split__copy h2 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); font-weight: 800; margin-bottom: 12px; }
.split__copy > p { color: var(--redup); margin-bottom: 14px; }
.checklist { list-style: none; padding: 0; display: grid; gap: 12px; margin: 18px 0 24px; }
.checklist li {
  position: relative; padding-left: 34px; font-size: .92rem; color: var(--redup);
}
.checklist li::before {
  content: "✦"; position: absolute; left: 2px; top: 1px;
  color: var(--emas); font-size: 1rem;
}
.checklist b { color: var(--putih); }

/* ---------- Promo highlight ---------- */
.promo-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.pcardx {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--garis-kuat); background: var(--panel);
  display: flex; flex-direction: column;
}
.pcardx__tag {
  font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: #241a02; background: linear-gradient(135deg, var(--emas-2), var(--emas));
  padding: 6px 14px; align-self: flex-start; margin: 18px 18px 0; border-radius: 999px;
}
.pcardx__body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pcardx h3 { font-size: 1.12rem; }
.pcardx .angka { font-size: 1.9rem; font-weight: 800; color: var(--emas); line-height: 1.1; }
.pcardx p { font-size: .87rem; color: var(--redup); flex: 1; }
.pcardx a { font-size: .86rem; font-weight: 700; }
.tag-ilustratif {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  color: var(--langit); border: 1px dashed rgba(76, 194, 255, .5);
  border-radius: 6px; padding: 2px 8px;
}

/* ---------- Testimoni ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.quote {
  background: var(--panel); border: 1px solid var(--garis); border-radius: var(--radius);
  padding: 24px 22px; display: flex; flex-direction: column; gap: 14px;
}
.quote .bintang5 { color: var(--emas); letter-spacing: .22em; font-size: .85rem; }
.quote p { font-size: .9rem; color: var(--putih); flex: 1; }
.quote footer { font-size: .8rem; color: var(--redup); }
.quote footer b { color: var(--emas); display: block; }
.quotes-note { text-align: center; margin-top: 20px; font-size: .78rem; color: var(--redup-2); }

/* ---------- Peta Bintang (inovasi) ---------- */
.starmap { display: grid; grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr); gap: 40px; align-items: center; }
.starmap__sky {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--garis-kuat);
  background:
    radial-gradient(520px 320px at 70% 20%, rgba(42, 111, 240, .2), transparent 65%),
    radial-gradient(420px 300px at 20% 85%, rgba(245, 196, 81, .08), transparent 60%),
    #04060f;
  padding: 26px 22px;
  min-height: 400px;
}
.starmap__sky svg { width: 100%; height: auto; display: block; }
.starmap__radio { position: absolute; opacity: 0; pointer-events: none; }
.starmap__hint { font-size: .74rem; color: var(--redup-2); text-align: center; margin-top: 12px; }

.starbtn { cursor: pointer; }
.starbtn .star-core { transition: r .18s, opacity .18s; }
.starbtn .star-halo { transition: transform .22s, opacity .22s; transform-origin: center; transform-box: fill-box; }
.starbtn text { font-size: 9.5px; fill: var(--redup); font-family: var(--font); font-weight: 600; }
.starbtn:hover text, .starbtn:focus-visible text { fill: var(--emas-2); }

.starmap__panels { display: grid; gap: 14px; }
.spanel {
  display: none; background: var(--panel); border: 1px solid var(--garis);
  border-left: 4px solid var(--emas); border-radius: var(--radius-sm);
  padding: 22px 22px 20px;
}
.spanel h3 { font-size: 1.06rem; margin-bottom: 8px; }
.spanel h3 .idx {
  display: inline-grid; place-items: center; width: 26px; height: 26px; margin-right: 9px;
  border-radius: 50%; background: rgba(245, 196, 81, .16); color: var(--emas);
  font-size: .82rem; vertical-align: 2px;
}
.spanel p { font-size: .9rem; color: var(--redup); }
.spanel .ke {
  margin-top: 12px; font-size: .82rem; font-weight: 700; color: var(--langit);
}
#bintang-1:checked ~ .starmap__sky .starbtn[for="bintang-1"] .star-core,
#bintang-2:checked ~ .starmap__sky .starbtn[for="bintang-2"] .star-core,
#bintang-3:checked ~ .starmap__sky .starbtn[for="bintang-3"] .star-core,
#bintang-4:checked ~ .starmap__sky .starbtn[for="bintang-4"] .star-core,
#bintang-5:checked ~ .starmap__sky .starbtn[for="bintang-5"] .star-core { opacity: 1; r: 7; }
#bintang-1:checked ~ .starmap__sky .starbtn[for="bintang-1"] .star-halo,
#bintang-2:checked ~ .starmap__sky .starbtn[for="bintang-2"] .star-halo,
#bintang-3:checked ~ .starmap__sky .starbtn[for="bintang-3"] .star-halo,
#bintang-4:checked ~ .starmap__sky .starbtn[for="bintang-4"] .star-halo,
#bintang-5:checked ~ .starmap__sky .starbtn[for="bintang-5"] .star-halo { transform: scale(1.35); opacity: 1; }
#bintang-1:checked ~ .starmap__sky .starbtn[for="bintang-1"] text,
#bintang-2:checked ~ .starmap__sky .starbtn[for="bintang-2"] text,
#bintang-3:checked ~ .starmap__sky .starbtn[for="bintang-3"] text,
#bintang-4:checked ~ .starmap__sky .starbtn[for="bintang-4"] text,
#bintang-5:checked ~ .starmap__sky .starbtn[for="bintang-5"] text { fill: var(--emas); }
#bintang-1:checked ~ .starmap__panels .spanel--1,
#bintang-2:checked ~ .starmap__panels .spanel--2,
#bintang-3:checked ~ .starmap__panels .spanel--3,
#bintang-4:checked ~ .starmap__panels .spanel--4,
#bintang-5:checked ~ .starmap__panels .spanel--5 { display: block; animation: naik .28s ease; }
@keyframes naik { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- Awan tag ---------- */
.tagcloud { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tagcloud a {
  font-size: .84rem; font-weight: 600; color: var(--putih);
  border: 1px solid var(--garis-kuat); border-radius: 999px;
  padding: 8px 16px; background: rgba(13, 21, 40, .6);
  transition: .16s;
}
.tagcloud a:hover { color: #241a02; background: var(--emas); border-color: var(--emas); }
.tagcloud .tc--besar { font-size: .98rem; color: var(--emas); }
.tagcloud .tc--besar:hover { color: #241a02; }
.tagcloud .tc--sedang { color: var(--langit-2); }
.tagcloud .tc--sedang:hover { color: #04182e; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--panel); border: 1px solid var(--garis);
  border-radius: var(--radius-sm); overflow: hidden;
}
.faq-item[open] { border-color: var(--emas); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 17px 20px;
  font-weight: 700; font-size: .96rem; display: flex; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "+"; flex: none; width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800;
  background: rgba(245, 196, 81, .14); color: var(--emas);
  transition: .18s;
}
.faq-item[open] summary::before { content: "−"; background: var(--emas); color: #241a02; }
.faq-item .jawab { padding: 0 20px 18px 58px; color: var(--redup); font-size: .91rem; }

/* ---------- RG & keamanan (beranda) ---------- */
.duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.shield {
  border-radius: var(--radius); padding: 28px 26px;
  border: 1px solid var(--garis-kuat); background: var(--panel);
}
.shield--hijau { border-top: 4px solid var(--hijau); }
.shield--biru { border-top: 4px solid var(--langit); }
.shield h3 { display: flex; align-items: center; gap: 10px; font-size: 1.1rem; margin-bottom: 12px; }
.shield p { font-size: .9rem; color: var(--redup); }
.shield ul { margin-top: 12px; display: grid; gap: 8px; }
.shield li { font-size: .88rem; color: var(--redup); }
.shield li b { color: var(--putih); }
.shield .more { display: inline-block; margin-top: 16px; font-size: .85rem; font-weight: 700; }

/* ---------- Ponsel (pengalaman seluler) ---------- */
.phone-wrap { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 46px; align-items: center; }
.phone {
  width: min(272px, 88%); margin: 0 auto; border-radius: 34px;
  border: 2px solid var(--garis-kuat); background: #04060f;
  padding: 12px; box-shadow: var(--bayang);
}
.phone__notch { width: 86px; height: 5px; border-radius: 99px; background: var(--garis-kuat); margin: 2px auto 10px; }
.phone__screen { border-radius: 22px; overflow: hidden; border: 1px solid var(--garis); }
.phone__bar {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--panel-2); padding: 8px 12px;
  font-size: .68rem; font-weight: 700; color: var(--emas);
}
.phone__bar span:last-child { color: var(--merah); }
.phone__body { padding: 10px; display: grid; gap: 8px; background: var(--bg-2); }
.phone__tile {
  display: flex; gap: 10px; align-items: center;
  background: var(--panel); border: 1px solid var(--garis);
  border-radius: 10px; padding: 9px 11px;
}
.phone__tile .ic { font-size: 1.05rem; }
.phone__tile b { display: block; font-size: .72rem; color: var(--putih); }
.phone__tile span span { font-size: .62rem; color: var(--redup); font-weight: 400; display: block; }
.phone__cta {
  text-align: center; font-size: .68rem; font-weight: 800; letter-spacing: .1em;
  color: #241a02; background: linear-gradient(135deg, var(--emas-2), var(--emas));
  border-radius: 10px; padding: 9px 6px; margin-top: 2px;
}
.phone__foot { text-align: center; font-size: .6rem; color: var(--redup-2); padding: 8px 4px 4px; }

/* ---------- Artikel ---------- */
.article-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 322px; gap: 34px;
  align-items: start; padding: 40px 0 64px;
}
.article {
  background: var(--kertas); color: var(--tinta);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--bayang);
}
.article__meta {
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  padding: 16px 30px 0; font-size: .8rem; color: var(--tinta-2);
}
.article__thumb img { width: 100%; height: 300px; object-fit: cover; margin-top: 14px; }
.entry-content { padding: 26px 30px 36px; }
.entry-content h2 {
  font-size: 1.32rem; line-height: 1.34; font-weight: 800; margin: 34px 0 12px;
  letter-spacing: -.01em;
}
.entry-content h2:first-child { margin-top: 4px; }
.entry-content h3 { font-size: 1.06rem; margin: 22px 0 8px; }
.entry-content p { color: #2c3a5e; font-size: .96rem; }
.entry-content li { color: #2c3a5e; font-size: .94rem; margin: 6px 0; }
.entry-content a { color: var(--biru-dalam); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--merah-tua); }
.entry-content .lead { font-size: 1.05rem; color: var(--tinta); font-weight: 500; }
.entry-content figure { margin: 20px 0; }
.entry-content figure img { border-radius: var(--radius-sm); border: 1px solid #dfe6f5; }
.entry-content figcaption { font-size: .8rem; color: var(--tinta-2); margin-top: 8px; text-align: center; }
.entry-content strong { color: var(--tinta); }

.core-anchor {
  display: flex; flex-wrap: wrap; gap: 8px; padding: 12px; margin-bottom: 8px;
  background: var(--kertas-2); border: 1px solid #dde5f6; border-radius: var(--radius-sm);
}
.core-anchor a {
  font-size: .78rem; font-weight: 700; color: var(--biru-dalam);
  text-decoration: none; border: 1px solid rgba(42, 111, 240, .35);
  padding: 6px 12px; border-radius: 999px;
}
.core-anchor a:hover { background: rgba(42, 111, 240, .1); }

.callout {
  border-radius: var(--radius-sm); padding: 16px 18px; margin: 18px 0;
  font-size: .9rem; border: 1px solid; border-left-width: 4px;
}
.callout b { display: block; margin-bottom: 5px; }
.callout--info { background: #eaf3ff; border-color: #bcd7f8; border-left-color: var(--biru-dalam); color: #1d3a68; }
.callout--warn { background: #fff1ec; border-color: #f6cdb9; border-left-color: var(--merah-tua); color: #6e3018; }
.callout--ok { background: #e9faf2; border-color: #bde9d4; border-left-color: var(--hijau-tua); color: #14503a; }

.table-wrap { overflow-x: auto; margin: 18px 0; border-radius: var(--radius-sm); border: 1px solid #dde5f6; }
.table-wrap table { border-collapse: collapse; width: 100%; font-size: .87rem; min-width: 560px; }
.table-wrap th {
  background: #12203f; color: #fdeeb0; text-align: left;
  padding: 11px 14px; font-size: .8rem; letter-spacing: .03em;
}
.table-wrap td { padding: 11px 14px; border-top: 1px solid #e6ebf7; color: #2c3a5e; vertical-align: top; }
.table-wrap tbody tr:nth-child(even) { background: #f4f7fe; }
.table-wrap td b { color: var(--tinta); }

/* ---------- Sidebar ---------- */
.sidebar { display: grid; gap: 18px; position: sticky; top: 92px; }
.widget {
  background: var(--panel); border: 1px solid var(--garis);
  border-radius: var(--radius); padding: 22px 22px 20px;
}
.widget h3 {
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--emas); margin-bottom: 13px;
}
.widget ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.widget a { color: var(--putih); font-size: .88rem; font-weight: 600; }
.widget a:hover { color: var(--emas-2); }
.widget--cta { border-color: rgba(245, 196, 81, .4); background: linear-gradient(160deg, var(--panel-2), var(--panel)); }
.widget--cta p { font-size: .85rem; color: var(--redup); margin: 6px 0; }
.note18 { font-size: .74rem; color: var(--redup-2); margin-top: 12px; }

/* ---------- Formulir ---------- */
.form-wrap { max-width: 560px; margin: 0 auto; }
.form-card {
  background: var(--panel); border: 1px solid var(--garis-kuat);
  border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--bayang);
}
.form-card h2 { font-size: 1.3rem; }
.form-card .fsub { color: var(--redup); font-size: .88rem; margin: 8px 0 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 7px; color: var(--putih); }
.field input[type="text"], .field input[type="password"], .field input[type="tel"], .field select {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  border: 1.4px solid var(--garis-kuat); background: var(--bg-2); color: var(--putih);
  font: .95rem var(--font); outline: none; transition: border-color .16s;
}
.field input:focus, .field select:focus { border-color: var(--emas); }
.field-check { display: flex; gap: 10px; align-items: flex-start; font-size: .8rem; color: var(--redup); margin: 18px 0; }
.field-check input { margin-top: 3px; flex: none; }
.form-note {
  font-size: .76rem; color: var(--redup-2); margin-top: 16px;
  border-top: 1px dashed var(--garis-kuat); padding-top: 14px;
}
.form-aside {
  margin-top: 22px; text-align: center; font-size: .84rem; color: var(--redup);
}
.form-aside a { font-weight: 700; }
.warn18 {
  display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px;
  background: rgba(255, 89, 100, .09); border: 1px solid rgba(255, 89, 100, .35);
  border-radius: var(--radius-sm); padding: 12px 14px; font-size: .8rem; color: #ffc4c9;
}

/* ---------- Pencarian ---------- */
.searchbox { display: flex; gap: 10px; max-width: 640px; margin: 0 auto 30px; }
.searchbox input {
  flex: 1; min-width: 0; padding: 14px 18px; border-radius: 999px;
  border: 1.4px solid var(--garis-kuat); background: var(--panel); color: var(--putih);
  font: .95rem var(--font); outline: none;
}
.searchbox input:focus { border-color: var(--emas); }
.sr-item {
  background: var(--panel); border: 1px solid var(--garis); border-radius: var(--radius-sm);
  padding: 18px 20px; margin-bottom: 12px;
}
.sr-item .crumb { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--langit); }
.sr-item h3 { margin: 5px 0 6px; font-size: 1.02rem; }
.sr-item p { font-size: .86rem; color: var(--redup); }

/* ---------- Footer ---------- */
.site-footer { margin-top: 26px; border-top: 1px solid var(--garis); background: #04060f; }
.footer-cta { padding: 46px 0; border-bottom: 1px solid var(--garis); }
.footer-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.footer-cta h2 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 800; }
.footer-cta p { color: var(--redup); margin-top: 7px; font-size: .92rem; }
.footer-cta .btns { display: flex; gap: 12px; flex-wrap: wrap; }

.footer-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 34px; padding: 48px 0 34px; }
.f-brand p { font-size: .86rem; color: var(--redup); margin: 14px 0 16px; }
.f-sos { display: flex; gap: 9px; }
.f-sos a {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  background: var(--panel); border: 1px solid var(--garis); font-size: 1rem;
}
.f-sos a:hover { border-color: var(--emas); }
.f-col h3 { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--emas); margin-bottom: 14px; }
.f-col ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.f-col a { color: var(--redup); font-size: .87rem; }
.f-col a:hover { color: var(--emas-2); }
.f-rg { font-size: .83rem; color: var(--redup); background: var(--panel); border: 1px solid var(--garis); border-radius: var(--radius-sm); padding: 14px 16px; }
.f-rg b { color: var(--merah); display: block; margin-bottom: 5px; }
.f-bottom { border-top: 1px solid var(--garis); padding: 20px 0 26px; }
.f-bottom .container:first-child { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .78rem; color: var(--redup-2); }
.brand-mini { display: flex; align-items: center; gap: 9px; font-weight: 800; color: var(--putih); }
.brand-mini svg { width: 26px; height: 26px; }
.f-legal { margin-top: 14px; font-size: .72rem; line-height: 1.7; color: var(--redup-2); }

/* ---------- Floatbar ---------- */
.floatbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  background: linear-gradient(90deg, rgba(4, 6, 15, .97), rgba(10, 15, 31, .97));
  border-top: 1.6px solid rgba(245, 196, 81, .55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -14px 40px rgba(0, 0, 0, .5);
}
.floatbar .container { display: flex; align-items: center; gap: 20px; padding: 11px 0; }
.reels { display: flex; gap: 7px; flex: none; }
.reel {
  width: 34px; height: 34px; overflow: hidden; border-radius: 8px;
  background: #0d1528; border: 1px solid var(--garis-kuat);
  display: grid; place-items: start center;
}
.strip { display: grid; gap: 2px; padding: 3px 0; animation: gulir 1.15s steps(4) infinite; }
.strip b { font-size: 15px; line-height: 1.55; text-align: center; }
.reel--mid .strip { animation-duration: .85s; animation-direction: reverse; }
.reel--slow .strip { animation-duration: 1.6s; }
@keyframes gulir { from { transform: translateY(0); } to { transform: translateY(-50%); } }

.floatbar__mid { min-width: 0; flex: 1; }
.floatbar__mid .t1 { font-size: .93rem; font-weight: 800; color: var(--putih); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.floatbar__mid .t1 .gold { color: var(--emas); }
.floatbar__mid .t2 { font-size: .7rem; color: var(--redup); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.floatbar__cta { display: flex; align-items: center; gap: 10px; flex: none; position: relative; }
.floatbar__cta .btn { padding: 13px 22px; font-size: .88rem; }

.coin { position: absolute; font-size: 14px; opacity: 0; pointer-events: none; animation: lempar 2.6s ease-in infinite; }
.coin--1 { left: -4px; animation-delay: .2s; }
.coin--2 { left: 40%; top: -8px; animation-delay: 1.1s; }
.coin--3 { left: 16%; top: -14px; animation-delay: 1.9s; }
@keyframes lempar {
  0% { opacity: 0; transform: translateY(6px) rotate(0deg) scale(.6); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-34px) rotate(340deg) scale(1.05); }
}

/* ---------- Responsif ---------- */
@media (max-width: 1080px) {
  .main-navigation { display: none; }
  .nav-toggle { display: flex; }
  .main-navigation.is-open {
    display: block; position: fixed; inset: 0; z-index: 140;
    background: rgba(4, 6, 15, .98); padding: 92px 6vw 40px; overflow-y: auto;
  }
  .main-navigation.is-open .menu { flex-direction: column; align-items: stretch; gap: 6px; }
  .main-navigation.is-open .menu-item > a { font-size: 1.12rem; padding: 13px 16px; }
  .main-navigation.is-open .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: transparent; min-width: 0; padding: 4px 0 4px 16px;
  }
  .main-navigation.is-open .hdr-actions { display: none; }
}

@media (min-width: 1081px) {
  .hdr-actions .btn { display: inline-block; }
}

@media (max-width: 980px) {
  .hero { padding: 48px 0 54px; }
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .hero__sub { max-width: none; }
  .steps, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .promo-strip, .quotes { grid-template-columns: minmax(0, 1fr); }
  .split, .phone-wrap { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .split__media { order: -1; }
  .starmap { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .starmap__sky { min-height: 320px; }
  .duo { grid-template-columns: minmax(0, 1fr); }
  .article-grid { grid-template-columns: minmax(0, 1fr); }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topbar__left .txt { white-space: normal; }
}

@media (max-width: 640px) {
  .section { padding: 46px 0; }
  .topbar .motto { display: none; }
  .hdr-searchlink { display: none; }
  .hdr-actions .btn { display: none; }
  .steps, .grid--3, .grid--2, .hero__stats { grid-template-columns: minmax(0, 1fr); }
  .hero__card img { height: 210px; }
  .article { border-radius: 0; }
  .article__meta { padding: 14px 20px 0; }
  .entry-content { padding: 20px 20px 30px; }
  .faq-item .jawab { padding-left: 20px; }
  .floatbar .container { gap: 12px; }
  .reels { display: none; }
  .floatbar__mid .t1 { font-size: .84rem; }
  .floatbar__mid .t2 { display: none; }
  .floatbar__cta .btn { padding: 12px 18px; font-size: .84rem; }
  .footer-cta .btns { width: 100%; }
  .footer-cta .btns .btn { flex: 1; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .searchbox { flex-direction: column; }
  .searchbox .btn { width: 100%; }
}

@media (max-width: 400px) {
  .brand__name small { display: none; }
  .floatbar__mid .t1 { font-size: .76rem; }
  .floatbar__cta .btn { padding: 11px 14px; font-size: .78rem; }
  .hero__title { font-size: 1.72rem; }
}
