/*!
 * Royal188 — tema statis gaya WordPress (merah · putih · hijau · kuning · biru · hitam)
 * Seluruh halaman diprerender statis; CSS ini murni presentasi + animasi ringan.
 */

:root {
  --c-ink: #15090c;
  --c-ink-2: #241014;
  --c-red: #c8102e;
  --c-red-dark: #9c0c23;
  --c-red-deep: #5d0a17;
  --c-gold: #ffc233;
  --c-gold-dark: #cf9500;
  --c-green: #17964b;
  --c-green-dark: #0f6e37;
  --c-blue: #1d4ed8;
  --c-blue-dark: #16389e;
  --c-bg: #faf8f4;
  --c-white: #ffffff;
  --c-text: #2b2225;
  --c-muted: #71656a;
  --c-line: #ecdfd7;
  --shadow-sm: 0 2px 10px rgba(43, 10, 16, 0.08);
  --shadow-md: 0 10px 30px rgba(43, 10, 16, 0.14);
  --radius: 14px;
  --radius-sm: 9px;
  --font: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  /* ruang untuk tombol melayang bawah — tanpa area kosong berlebih */
  padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-red); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.3em; }
p { overflow-wrap: break-word; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-link { font-weight: 600; color: var(--c-red); }
.text-link:hover { color: var(--c-red-dark); }

/* ============ Tombol ============ */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15.5px;
  letter-spacing: 0.2px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1.25;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-decoration: none !important;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  background: linear-gradient(180deg, #ffd45f 0%, var(--c-gold) 45%, var(--c-gold-dark) 100%);
  color: #3d2400;
  box-shadow: 0 6px 18px rgba(207, 149, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.btn--gold:hover { box-shadow: 0 9px 24px rgba(207, 149, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.55); }
.btn--red {
  background: linear-gradient(180deg, #e52540 0%, var(--c-red) 55%, var(--c-red-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.4);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); }
.btn--outline {
  background: transparent;
  border-color: var(--c-red);
  color: var(--c-red);
}
.btn--outline:hover { background: var(--c-red); color: #fff; }
.btn--sm { padding: 9px 18px; font-size: 14px; }
.btn--block { display: block; width: 100%; }

.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.badge--gold {
  background: linear-gradient(180deg, #ffd45f, var(--c-gold));
  color: #4a2c00;
}
.badge--red { background: var(--c-red); color: #fff; }

/* ============ Topbar & Header ============ */
.topbar {
  background: linear-gradient(90deg, var(--c-green-dark), var(--c-green));
  color: #fff;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 14px;
  letter-spacing: 0.2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: linear-gradient(180deg, #20100f 0%, var(--c-ink) 100%);
  border-bottom: 3px solid var(--c-gold);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
}
.site-branding { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-coin { width: 44px; height: 44px; filter: drop-shadow(0 2px 6px rgba(255, 194, 51, 0.5)); }
.brand-text {
  font-size: 25px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.4px;
  line-height: 1.05;
  display: inline-block;
}
.brand-text em { font-style: normal; color: var(--c-gold); }
.brand-tag {
  display: block;
  font-size: 10.5px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}

.main-navigation { margin-left: auto; }
.main-navigation ul { display: flex; gap: 4px; list-style: none; padding: 0; }
.main-navigation a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 14.5px;
  padding: 10px 14px;
  border-radius: 8px;
}
.main-navigation a:hover { background: rgba(255, 255, 255, 0.1); color: var(--c-gold); text-decoration: none; }
.main-navigation .current-menu-item a {
  background: rgba(200, 16, 46, 0.35);
  color: var(--c-gold);
  box-shadow: inset 0 -2px 0 var(--c-gold);
}

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.search-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.15s;
}
.search-toggle:hover { background: rgba(255, 255, 255, 0.18); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  cursor: pointer;
  padding: 9px;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.2s, opacity 0.2s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.header-search {
  display: none;
  padding: 12px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.header-search form { display: flex; gap: 8px; max-width: 640px; margin: 0 auto; }
.header-search input {
  flex: 1;
  min-width: 0;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-family: var(--font);
}
body.search-open .header-search { display: block; }

/* ============ Hero beranda ============ */
.hero {
  position: relative;
  color: #fff;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(255, 194, 51, 0.16), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(200, 16, 46, 0.5), transparent 55%),
    linear-gradient(160deg, #2a0d13 0%, var(--c-ink) 45%, #3a0d18 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.025) 0 2px,
    transparent 2px 90px);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
  padding: 66px 20px 72px;
}
.hero__kicker { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.hero__date { font-size: 13px; color: rgba(255, 255, 255, 0.65); font-weight: 600; }
.hero h1 {
  font-size: clamp(30px, 4.3vw, 46px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.3px;
  margin-bottom: 18px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--c-gold);
  text-shadow: 0 2px 18px rgba(255, 194, 51, 0.35);
}
.hero__text > p { color: rgba(255, 255, 255, 0.86); font-size: 16.5px; max-width: 560px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 6px; }
.hero__stats {
  display: flex;
  gap: 34px;
  list-style: none;
  padding: 0;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-size: 26px;
  color: var(--c-gold);
  font-weight: 900;
  line-height: 1.1;
}
.hero__stats span { font-size: 12.5px; color: rgba(255, 255, 255, 0.62); max-width: 130px; line-height: 1.4; }

.hero__media { position: relative; }
.hero__media img {
  border-radius: 20px;
  border: 3px solid rgba(255, 194, 51, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.hero__chip {
  position: absolute;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(255, 255, 255, 0.65);
  white-space: nowrap;
}
.hero__chip--1 { top: 14px; left: -12px; background: var(--c-red); }
.hero__chip--2 { top: 46%; right: -10px; background: var(--c-green); }
.hero__chip--3 { bottom: 48px; left: -14px; background: var(--c-blue); }
.hero__chip--4 { bottom: 12px; right: 8%; background: #b8860b; }

/* ============ Awan tag ============ */
.tagcloud-section {
  background: linear-gradient(180deg, var(--c-ink) 0%, #231014 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}
.tagcloud-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.tagcloud-title { color: var(--c-gold); font-weight: 800; font-size: 14.5px; white-space: nowrap; }
.tagcloud-chips { display: flex; gap: 9px; flex-wrap: wrap; }
.tag-chip {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.tag-chip:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
  text-decoration: none;
}

/* ============ Seksyen umum ============ */
.section { padding: 66px 0; }
.section--steps { background: var(--c-white); }
.section--promo { background: linear-gradient(180deg, var(--c-ink-2), var(--c-ink)); color: #fff; }
.section--why { background: var(--c-bg); }
.section--mobile { background: var(--c-white); }
.section--voices { background: linear-gradient(180deg, #fdf6ea, var(--c-bg)); }
.section--calc { background: linear-gradient(180deg, #eef3ff 0%, #e4ecff 100%); }
.section--security { background: var(--c-white); }
.section--rg { background: linear-gradient(180deg, #effaf3, #e7f6ed); }
.section--latest { background: var(--c-bg); }
.section--faq { background: var(--c-white); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.section-kicker {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 10px;
}
.section--promo .section-kicker { color: var(--c-gold); }
.section--calc .section-kicker { color: var(--c-blue); }
.section--rg .section-kicker { color: var(--c-green-dark); }
.section-head h2 {
  font-size: clamp(23px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  text-wrap: balance;
}
.section-head p { color: var(--c-muted); font-size: 16px; }
.section--promo .section-head p { color: rgba(255, 255, 255, 0.75); }

/* ============ 4 langkah ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-top: 4px solid var(--c-red);
  border-radius: var(--radius);
  padding: 26px 22px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-card__n {
  font-size: 38px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--c-red);
  line-height: 1;
  margin-bottom: 12px;
}
.step-card h3 { font-size: 17.5px; font-weight: 800; margin-bottom: 8px; }
.step-card p { font-size: 14.5px; color: var(--c-muted); flex: 1; }
.step-card .text-link { margin-top: 14px; font-size: 14px; }

/* ============ Promo mini ============ */
.promo-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}
.promo-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 194, 51, 0.35);
  color: #fff;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.promo-mini:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
  background: linear-gradient(160deg, rgba(200, 16, 46, 0.35), rgba(255, 255, 255, 0.03));
  text-decoration: none;
}
.promo-mini__pct {
  font-size: 30px;
  font-weight: 900;
  color: var(--c-gold);
  line-height: 1.1;
}
.promo-mini__name { font-weight: 800; font-size: 16px; }
.promo-mini__terms { font-size: 12.5px; color: rgba(255, 255, 255, 0.62); }

.promo-read-box {
  background: var(--c-white);
  color: var(--c-text);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--c-gold);
}
.promo-read-box h3 { font-size: 20px; font-weight: 900; margin-bottom: 14px; }
.promo-read-steps { margin: 0 0 20px; display: grid; gap: 8px; }
.promo-read-steps li { padding-left: 4px; }
.promo-read-box p { margin-bottom: 14px; }

/* ============ Mengapa memilih ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
  transition: transform 0.2s;
}
.why-card:hover { transform: translateY(-3px); }
.why-card__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 22px;
  background: linear-gradient(160deg, #ffe9bd, #ffd45f);
  margin-bottom: 14px;
}
.why-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.why-card p { font-size: 14.5px; color: var(--c-muted); }

/* ============ Seluler ============ */
.mobile-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}
.mobile-media { position: relative; }
.mobile-media img {
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--c-green);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.mobile-chip {
  position: absolute;
  bottom: -14px;
  left: 18px;
  background: var(--c-green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.mobile-copy h2, .calc-copy h2, .split-copy h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  text-wrap: balance;
}
.mobile-copy > p, .split-copy > p { color: var(--c-muted); margin-bottom: 16px; }

.check-list { list-style: none; padding: 0; display: grid; gap: 10px; margin-bottom: 20px; }
.check-list li { position: relative; padding-left: 32px; font-size: 15px; }
.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-green);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.num-list { display: grid; gap: 10px; margin: 8px 0 18px; }

/* ============ Suara pembaca ============ */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.voice-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 24px 24px 18px;
  box-shadow: var(--shadow-sm);
  position: relative;
  min-width: 0;
}
.voice-card__mark {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 46px;
  color: rgba(255, 194, 51, 0.45);
  font-family: Georgia, serif;
  line-height: 1;
}
.voice-card blockquote { font-size: 15px; color: var(--c-text); margin-bottom: 12px; }
.voice-card figcaption {
  font-size: 13px;
  font-weight: 800;
  color: var(--c-red-dark);
  border-top: 1px dashed var(--c-line);
  padding-top: 10px;
}

/* ============ Kalkulator ============ */
.calc-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}
.calc-copy > p { color: #43506e; margin-bottom: 16px; }
.calc-copy .check-list li::before { background: var(--c-blue); }
.calc-card {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 28px 26px;
  border-top: 5px solid var(--c-blue);
}
.calc-card h3 { font-size: 19px; font-weight: 900; margin-bottom: 18px; }
.calc-field { margin-bottom: 16px; }
.calc-field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 6px; color: #43506e; }
.calc-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #d5dcf0;
  font-size: 16px;
  font-family: var(--font);
  font-weight: 700;
  color: var(--c-text);
}
.calc-field input:focus { outline: none; border-color: var(--c-blue); box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.14); }
.calc-out { margin-top: 18px; border-top: 2px dashed #d5dcf0; padding-top: 14px; }
.calc-out__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 14.5px;
  border-bottom: 1px solid #eef1fa;
}
.calc-out__row strong { color: var(--c-blue-dark); font-size: 16px; white-space: nowrap; }
.calc-note { font-size: 13px; color: var(--c-muted); margin-top: 12px; }

/* ============ Privasi & keamanan ============ */
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}
.split-media img {
  border-radius: 20px;
  border: 3px solid var(--c-blue);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.split-copy .num-list li::marker { color: var(--c-blue); font-weight: 900; }

/* ============ Bertanggung jawab ============ */
.rg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.rg-card {
  background: var(--c-white);
  border: 1px solid #d3e9dd;
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}
.rg-ico { font-size: 26px; margin-bottom: 10px; display: block; }
.rg-card h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 6px; color: var(--c-green-dark); }
.rg-card p { font-size: 14px; color: var(--c-muted); }
.rg-foot { text-align: center; margin-top: 26px; font-size: 15px; }

/* ============ Artikel terbaru ============ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.post-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.2s;
}
.post-card:hover { transform: translateY(-4px); }
.post-card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.post-card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card__meta {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--c-red);
}
.post-card h3 { font-size: 15.5px; line-height: 1.35; font-weight: 800; }
.post-card h3 a { color: var(--c-text); }
.post-card h3 a:hover { color: var(--c-red); }
.post-card p { font-size: 13.5px; color: var(--c-muted); flex: 1; }

/* ============ FAQ ============ */
.faq-wrap { max-width: 820px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 52px 16px 18px;
  font-weight: 800;
  font-size: 15.5px;
  position: relative;
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--c-red);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "–"; }
.faq-n {
  color: var(--c-gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.faq-a { padding: 0 18px 16px 46px; font-size: 14.5px; color: var(--c-muted); }
.faq-a p + p { margin-top: 8px; }

/* ============ Breadcrumb ============ */
.breadcrumb { background: var(--c-white); border-bottom: 1px solid var(--c-line); }
.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 11px 0;
  font-size: 13px;
}
.breadcrumb li { display: flex; align-items: center; gap: 6px; color: var(--c-muted); }
.breadcrumb li + li::before { content: "›"; color: var(--c-gold-dark); font-weight: 900; }
.breadcrumb a { color: var(--c-muted); font-weight: 600; }
.breadcrumb a:hover { color: var(--c-red); }
.breadcrumb [aria-current="page"] { color: var(--c-red-dark); font-weight: 800; }

/* ============ Page hero (halaman dalam) ============ */
.page-hero {
  background:
    radial-gradient(600px 300px at 90% -20%, rgba(255, 194, 51, 0.18), transparent 60%),
    linear-gradient(150deg, #26100f, var(--c-ink) 55%, #43101b);
  color: #fff;
}
.page-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 52px 20px 56px;
}
.page-hero h1 {
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.22;
  font-weight: 900;
  margin-bottom: 14px;
  text-wrap: balance;
}
.page-hero h1 em { font-style: normal; color: var(--c-gold); }
.page-hero p { color: rgba(255, 255, 255, 0.82); margin-bottom: 20px; max-width: 560px; }
.page-hero img {
  border-radius: 18px;
  border: 3px solid rgba(255, 194, 51, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.page-hero--promo {
  background:
    radial-gradient(600px 300px at 10% -20%, rgba(255, 194, 51, 0.2), transparent 60%),
    linear-gradient(150deg, #241010, #38090f 60%, #530a14);
}

/* cegah grid/flex bocor: konten panjang tak boleh memaksa lebar trek */
.page-hero__inner > *, .hero__inner > *, .landing-hero__inner > *, .article-wrap > *,
.auth-grid > *, .auth-wrap > *, .mobile-grid > *, .calc-wrap > *, .split-grid > *,
.promo-detail > *, .footer-widgets > *, .related-grid > *, .promo-grid > *,
.steps-grid > *, .why-grid > *, .rg-grid > *, .voices-grid > *, .promo-mini-grid > *,
.landing-hero > figure { min-width: 0; }

/* ============ Layout artikel ============ */
.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  padding-top: 40px;
  padding-bottom: 60px;
  align-items: start;
}
.article-wrap--narrow { grid-template-columns: minmax(0, 1fr); max-width: 860px; }
.entry { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 34px 34px 30px; box-shadow: var(--shadow-sm); min-width: 0; }
.entry-header h1 {
  font-size: clamp(23px, 3vw, 33px);
  font-weight: 900;
  line-height: 1.24;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  text-wrap: balance;
}
.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13px;
  color: var(--c-muted);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 8px;
}
.entry-content { font-size: 16px; }
.entry-content > * + * { margin-top: 16px; }
.entry-content h2 {
  font-size: 22.5px;
  font-weight: 900;
  margin-top: 36px;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
  scroll-margin-top: 100px;
  padding-left: 14px;
  border-left: 5px solid var(--c-red);
  line-height: 1.3;
}
.entry-content h3 { font-size: 18.5px; font-weight: 800; margin-top: 26px; }
.entry-content h4 { font-size: 16px; font-weight: 800; margin-top: 20px; }
.entry-content ul, .entry-content ol { display: grid; gap: 8px; }
.entry-content li::marker { color: var(--c-red); font-weight: 800; }
.entry-content a { font-weight: 600; text-decoration: underline; text-decoration-color: rgba(200, 16, 46, 0.35); text-underline-offset: 3px; }
.entry-content a:hover { text-decoration-color: var(--c-red); }
.entry-content img.entry-thumb, .entry-thumb { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.entry-thumb img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

.table-scroll { overflow-x: auto; margin-top: 14px; border-radius: var(--radius-sm); border: 1px solid var(--c-line); -webkit-overflow-scrolling: touch; }
.entry-content table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 520px; }
.entry-content th {
  background: linear-gradient(180deg, var(--c-ink-2), var(--c-ink));
  color: var(--c-gold);
  text-align: left;
  padding: 11px 14px;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: nowrap;
}
.entry-content td { padding: 11px 14px; border-top: 1px solid var(--c-line); vertical-align: top; }
.entry-content tbody tr:nth-child(even) { background: #fbf7f2; }

.notice-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: 20px;
  font-size: 14.5px;
}
.notice-ico { font-size: 22px; line-height: 1.3; flex-shrink: 0; }
.notice-box--info { background: #eef3ff; border: 1px solid #d3dff9; border-left: 5px solid var(--c-blue); }
.notice-box--danger { background: #fdeeee; border: 1px solid #f5cfd2; border-left: 5px solid var(--c-red); }

.toc-box {
  background: #fdf6ea;
  border: 1px dashed var(--c-gold-dark);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 22px;
}
.toc-box strong { color: var(--c-red-dark); }
.toc-box a { font-weight: 700; }

.hand-list li { font-size: 15px; }

/* ============ Sidebar ============ */
.sidebar { display: grid; gap: 20px; position: sticky; top: 96px; }
.widget {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.widget h3 {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-gold);
  color: var(--c-ink-2);
}
.widget ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.widget a { font-size: 14px; font-weight: 600; color: var(--c-text); }
.widget a:hover { color: var(--c-red); }
.widget p { font-size: 13.5px; color: var(--c-muted); margin-bottom: 14px; }
.widget--cta {
  background: linear-gradient(160deg, #fff8e8, #fff);
  border-top: 4px solid var(--c-gold);
}
.widget--cta .btn + .btn { margin-top: 10px; }

/* ============ Pusat promosi ============ */
.promo-layout { padding: 44px 20px 60px; }
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.promo-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.2s;
}
.promo-card:hover { transform: translateY(-4px); }
.promo-card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.promo-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.promo-card__body h2, .promo-card__body h3 { font-size: 18px; line-height: 1.3; font-weight: 800; }
.promo-card__body h2 a, .promo-card__body h3 a { color: var(--c-text); }
.promo-card__body h2 a:hover, .promo-card__body h3 a:hover { color: var(--c-red); }
.promo-card__body > p { font-size: 14px; color: var(--c-muted); flex: 1; }
.promo-card__terms { display: flex; flex-wrap: wrap; gap: 6px; }
.promo-card__terms span {
  font-size: 11.5px;
  font-weight: 700;
  background: #fdf0e4;
  color: #8a4b12;
  border: 1px solid #f3ddc6;
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
}

.promo-detail {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.promo-detail__thumb img { border-radius: var(--radius-sm); aspect-ratio: 3 / 2; object-fit: cover; height: 100%; }
.promo-detail__body { min-width: 0; }
.promo-detail__body h3 { font-size: 20px; font-weight: 900; margin: 8px 0 8px; }
.promo-detail__body > p { color: var(--c-muted); font-size: 14.5px; margin-bottom: 6px; }
.promo-detail__body h4 { margin-top: 18px; font-size: 15px; }
.terms-table td:first-child { font-weight: 700; white-space: nowrap; }
.terms-list { font-size: 14px; color: var(--c-muted); }

/* ============ Landing promo ============ */
.landing-hero {
  background:
    radial-gradient(700px 340px at 88% -10%, rgba(255, 194, 51, 0.22), transparent 60%),
    linear-gradient(150deg, #2a0d0f 0%, var(--c-ink) 50%, #52101a 100%);
  color: #fff;
}
.landing-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 56px 20px 60px;
}
.landing-hero h1 {
  font-size: clamp(24px, 3.4vw, 37px);
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 14px;
  text-wrap: balance;
}
.landing-hero h1 em { font-style: normal; color: var(--c-gold); }
.landing-hero p { color: rgba(255, 255, 255, 0.85); margin-bottom: 22px; max-width: 580px; }
.landing-hero img {
  border-radius: 20px;
  border: 3px solid rgba(255, 194, 51, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* ============ Halaman auth ============ */
.auth-wrap { padding: 44px 20px 60px; display: grid; gap: 34px; }
.auth-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}
.auth-media img {
  border-radius: 20px;
  border: 3px solid var(--c-red);
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 2.6;
  object-fit: cover;
}
.form-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-top: 5px solid var(--c-gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 32px 30px;
}
.form-card h1 { font-size: 26px; font-weight: 900; margin-bottom: 6px; }
.form-lead { color: var(--c-muted); font-size: 14.5px; margin-bottom: 20px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.form-field input[type="text"], .form-field input[type="password"], .form-field input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--c-line);
  font-size: 15.5px;
  font-family: var(--font);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input:focus { outline: none; border-color: var(--c-gold-dark); box-shadow: 0 0 0 3px rgba(255, 194, 51, 0.25); }
.form-field--check label { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; font-size: 13.5px; color: var(--c-text); line-height: 1.55; }
.form-field--check input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--c-red); flex-shrink: 0; }
.form-error {
  display: none;
  background: #fdeeee;
  border: 1px solid #f5cfd2;
  color: #9c0c23;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 14px;
}
.form-error.show { display: block; }
.form-card .btn--block { margin-top: 6px; }
.form-alt { font-size: 13.5px; color: var(--c-muted); margin-top: 16px; margin-bottom: 0; }
.auth-articles .entry { padding: 30px; }

/* ============ Pencarian ============ */
.search-page form { display: flex; gap: 10px; margin: 8px 0 26px; flex-wrap: wrap; }
.search-page input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--c-line);
  font-size: 15.5px;
  font-family: var(--font);
}
.search-page input:focus { outline: none; border-color: var(--c-red); box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12); }
.search-results { display: grid; gap: 14px; }
.search-hint { color: var(--c-muted); font-size: 14.5px; }
.search-result {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: #fffdf9;
  padding: 16px 18px;
}
.search-result h3 { font-size: 16px; margin-bottom: 4px; }
.search-result p { font-size: 13.5px; color: var(--c-muted); }
.search-result .post-card__meta { display: inline-block; margin-bottom: 6px; }

/* ============ 404 ============ */
.err404 { text-align: center; padding: 90px 20px 100px; }
.err404__code {
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 3px var(--c-red);
  margin-bottom: 10px;
}
.err404 h1 { font-size: 28px; font-weight: 900; margin-bottom: 10px; }
.err404 p { color: var(--c-muted); max-width: 480px; margin: 0 auto 24px; }

/* ============ Footer ============ */
.site-footer {
  background: linear-gradient(180deg, var(--c-ink-2), var(--c-ink) 40%);
  color: rgba(255, 255, 255, 0.78);
  border-top: 4px solid var(--c-red);
  margin-top: 0;
}
.footer-widgets {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 1fr 1fr;
  gap: 34px;
  padding: 52px 20px 34px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.widget-col h3 {
  color: var(--c-gold);
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 14px;
  font-weight: 900;
}
.widget-col ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.widget-col a { color: rgba(255, 255, 255, 0.75); font-size: 14px; font-weight: 600; }
.widget-col a:hover { color: var(--c-gold); }
.widget-col > p { font-size: 13.5px; line-height: 1.7; color: rgba(255, 255, 255, 0.6); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.fb {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.footer-legal { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 22px 20px 26px; }
.footer-legal p { font-size: 12px; line-height: 1.7; color: rgba(255, 255, 255, 0.5); }
.footer-copy {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

/* ============ Tombol melayang bawah (mesin slot) ============ */
.floatbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: linear-gradient(180deg, rgba(21, 9, 12, 0.94), rgba(21, 9, 12, 0.99));
  border-top: 2px solid var(--c-gold);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.45);
  padding: 7px 0 calc(7px + env(safe-area-inset-bottom, 0px));
  backdrop-filter: blur(8px);
}
.floatbar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.floatbar__reels { display: flex; gap: 4px; flex-shrink: 0; }
.reel {
  width: 30px;
  height: 36px;
  border-radius: 6px;
  background: linear-gradient(180deg, #fff8e1, #ffe9ad);
  border: 2px solid var(--c-gold-dark);
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(120, 70, 0, 0.35);
}
.reel__strip {
  display: flex;
  flex-direction: column;
  animation: reel-spin 2.8s linear infinite;
  font-size: 19px;
  line-height: 36px;
  text-align: center;
}
.reel__strip span { height: 36px; }
.reel:nth-child(2) .reel__strip { animation-duration: 3.4s; }
.reel:nth-child(3) .reel__strip { animation-duration: 2.3s; }
@keyframes reel-spin {
  0% { transform: translateY(0); }
  100% { transform: translateY(-216px); }
}
@media (prefers-reduced-motion: reduce) {
  .reel__strip { animation: none; }
  .coin { display: none; }
}
.floatbar__cta {
  margin-left: auto;
  flex-shrink: 0;
  padding: 11px 34px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.8px;
  background: linear-gradient(180deg, #ffd45f, var(--c-gold) 50%, var(--c-gold-dark));
  color: #3d2400;
  box-shadow: 0 4px 16px rgba(255, 194, 51, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  animation: cta-pulse 1.8s ease-in-out infinite;
  white-space: nowrap;
}
.floatbar__cta--alt {
  background: linear-gradient(180deg, #e52540, var(--c-red) 55%, var(--c-red-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.55);
}
.floatbar__cta:hover { text-decoration: none; transform: translateY(-1px); }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(255, 194, 51, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.6); }
  50% { box-shadow: 0 4px 26px rgba(255, 194, 51, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.6); }
}
.floatbar__coins { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.coin {
  position: absolute;
  bottom: -18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #ffe9a8, var(--c-gold) 55%, var(--c-gold-dark));
  box-shadow: 0 0 8px rgba(255, 194, 51, 0.8);
  animation: coin-rise 2.6s ease-in infinite;
}
.coin--1 { left: 12%; animation-delay: 0s; }
.coin--2 { left: 30%; animation-delay: 0.5s; }
.coin--3 { left: 48%; animation-delay: 1.1s; }
.coin--4 { left: 64%; animation-delay: 0.3s; }
.coin--5 { left: 82%; animation-delay: 1.6s; }
@keyframes coin-rise {
  0% { transform: translateY(0) scale(0.5); opacity: 0; }
  15% { opacity: 1; }
  100% { transform: translateY(-64px) scale(1.05); opacity: 0; }
}

/* ============ Animasi reveal ============ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ Responsif ============ */
@media (max-width: 1080px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-mini-grid { grid-template-columns: repeat(3, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .article-wrap { grid-template-columns: minmax(0, 1fr) 280px; gap: 26px; }
  .promo-detail { grid-template-columns: 240px 1fr; }
}

@media (max-width: 920px) {
  .main-navigation { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open .main-navigation {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-ink);
    border-bottom: 3px solid var(--c-gold);
    padding: 10px 20px 16px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.5);
  }
  body.nav-open .main-navigation ul { flex-direction: column; gap: 2px; }
  body.nav-open .main-navigation a { padding: 13px 12px; font-size: 16px; border-radius: 8px; }
  .hero__inner { grid-template-columns: 1fr; padding: 48px 20px 54px; }
  .hero__media { max-width: 560px; }
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero img { width: 100%; max-width: 560px; margin-left: auto; margin-right: auto; }
  .landing-hero__inner { grid-template-columns: 1fr; }
  .landing-hero img { width: 100%; max-width: 560px; margin-left: auto; margin-right: auto; }
  .mobile-grid, .calc-wrap, .split-grid { grid-template-columns: 1fr; gap: 28px; }
  .split-media { order: -1; }
  .article-wrap { grid-template-columns: minmax(0, 1fr); }
  .sidebar { position: static; }
  .auth-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .rg-grid { grid-template-columns: repeat(2, 1fr); }
  .voices-grid { grid-template-columns: 1fr; }
  .promo-detail { grid-template-columns: 1fr; }
  .promo-detail__thumb img { aspect-ratio: 16 / 9; height: auto; }
  .header-actions .btn--header-daftar, .header-actions .btn--header-masuk { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }
  .steps-grid, .why-grid, .rg-grid { grid-template-columns: 1fr; }
  .promo-mini-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .promo-mini { padding: 16px; }
  .promo-mini__pct { font-size: 24px; }
  .related-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 20px; }
  .hero__chip { font-size: 11.5px; padding: 6px 11px; }
  .hero__chip--1 { left: -6px; }
  .hero__chip--3 { left: -6px; }
  .entry { padding: 22px 18px; }
  .entry-content { font-size: 15.5px; }
  .entry-content h2 { font-size: 20px; }
  .form-card { padding: 24px 20px; }
  .auth-media { display: none; }
  .promo-read-box { padding: 22px 18px; }
  .footer-widgets { grid-template-columns: 1fr 1fr; gap: 26px; padding: 40px 16px 26px; }
  .footer-copy { flex-direction: column; }
  .faq-a { padding-left: 18px; }
  .toc-box { font-size: 13px; }
  .floatbar__inner { gap: 10px; padding: 0 10px; }
  .floatbar__reels { display: none; }
  .floatbar__cta { flex: 1; text-align: center; padding: 11px 10px; font-size: 15px; }
  .floatbar__cta:first-of-type { margin-left: 0; }
  .floatbar__cta { margin-left: 0; }
  .search-toggle { width: 36px; height: 36px; }
  .err404__code { font-size: 72px; }
}

@media (max-width: 400px) {
  .promo-mini-grid { grid-template-columns: 1fr; }
  .brand-text { font-size: 21px; }
  .brand-tag { letter-spacing: 1.4px; }
  .hero__cta .btn { width: 100%; }
}

/* Cetak */
@media print {
  .floatbar, .site-header, .topbar, .header-search, .breadcrumb { display: none !important; }
  body { padding: 0; background: #fff; }
}
