/* wp-no6 — Merah Putih theme (index + unduh + masuk + inner pages) */

:root {
  --red: #ce1126;
  --red-dark: #a50d1e;
  --red-light: #fff0f2;
  --white: #ffffff;
  --gray-50: #f7f7f8;
  --gray-100: #ececf0;
  --gray-600: #5c5c6a;
  --gray-900: #1a1a22;
  --header-h: 60px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(206, 17, 38, 0.12);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", sans-serif;
  --max: 1120px;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

a {
  color: var(--red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul { list-style: none; }

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-solid {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.btn-solid:hover {
  background: var(--gray-50);
  color: var(--red-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.btn-on-red {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-lg {
  padding: 13px 26px;
  font-size: 15px;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  background: var(--red);
  border-bottom: 3px solid var(--white);
}

.header-row {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  height: 38px;
  width: auto;
  max-width: min(40vw, 160px);
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

.header-cta {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.header-cta .btn-ghost {
  padding: 8px 16px;
  font-size: 13px;
}

.header-cta .btn-solid {
  padding: 8px 16px;
  font-size: 13px;
  background: var(--white);
  color: var(--red);
}

.btn-header {
  padding: 8px 16px;
  font-size: 13px;
}

.header-cta .btn-ghost.btn-header {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
}

.header-cta .btn-ghost.btn-header:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  background: var(--red-dark);
  padding: 8px 16px 16px;
  border-bottom: 3px solid var(--white);
}

.mobile-nav[hidden] { display: none; }

.mobile-nav a {
  display: block;
  color: var(--white);
  padding: 12px 8px;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 48px) 0 64px;
  background: var(--red);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 48%, rgba(255,255,255,0.06) 48%, rgba(255,255,255,0.06) 52%, transparent 52%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.18);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 16px;
  word-break: break-word;
}

.hero-desc {
  font-size: 16px;
  opacity: 0.92;
  margin-bottom: 28px;
  max-width: 52ch;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card {
  background: var(--white);
  color: var(--gray-900);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 24px;
  object-fit: cover;
  border: 4px solid var(--red-light);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
  text-align: left;
}

.hero-stats li {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  border-left: 3px solid var(--red);
}

.hero-stats strong {
  display: block;
  font-size: 16px;
  color: var(--red);
  line-height: 1.3;
}

.hero-stats span {
  font-size: 11px;
  color: var(--gray-600);
}

.hero-card .btn-solid {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  margin-bottom: 12px;
}

.hero-card .btn-solid:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

.hero-meta {
  font-size: 12px;
  color: var(--gray-600);
}

/* ── Sections ── */
.section {
  padding: 64px 0;
}

.section-white { background: var(--white); }
.section-gray { background: var(--gray-50); }
.section-red { background: var(--red); color: var(--white); }
.section-red-light { background: var(--red-light); }

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head-light .section-label,
.section-head-light h2 { color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.section-head h2 {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.3;
  word-break: break-word;
}

.section-intro {
  margin-top: 12px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 68ch;
  margin-inline: auto;
}

/* anchor scroll offset for fixed header */
[id^="sec-"] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ── Left page anchor (desktop only) ── */
.page-anchor {
  display: none;
}

@media (min-width: 1100px) {
  .page-anchor {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    z-index: 150;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    border-right: 4px solid var(--white);
    box-shadow: 4px 0 32px rgba(206, 17, 38, 0.18);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
  }

  .page-anchor-head {
    height: var(--header-h);
    padding: 0 20px;
    border-bottom: 3px solid var(--white);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
  }

  .page-anchor-title {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .page-anchor-sub {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .page-anchor-list {
    flex: 1;
    padding: 16px 14px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding-left: 14px;
    position: relative;
  }

  .page-anchor-list::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    pointer-events: none;
  }

  .page-anchor-list li {
    position: relative;
    z-index: 1;
    list-style: none;
  }

  .page-anchor-list a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 14px 14px 12px;
    border-radius: var(--radius);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.22s, border-color 0.22s, transform 0.18s, box-shadow 0.22s;
  }

  .page-anchor-list a:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateX(4px);
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  }

  .page-anchor-list a.is-active {
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    transform: translateX(6px);
  }

  .anchor-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--red);
    background: var(--white);
    border-radius: 10px;
    letter-spacing: 0.02em;
    transition: background 0.22s, color 0.22s;
  }

  .page-anchor-list a.is-active .anchor-num {
    background: var(--red);
    color: var(--white);
  }

  .anchor-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .anchor-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    transition: color 0.22s;
  }

  .anchor-text small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
    transition: color 0.22s;
  }

  .page-anchor-list a.is-active .anchor-text strong {
    color: var(--red-dark);
  }

  .page-anchor-list a.is-active .anchor-text small {
    color: var(--gray-600);
  }

  body {
    padding-left: 220px;
  }

  .site-header {
    left: 220px;
    width: calc(100% - 220px);
  }
}

/* ── Install guide (SEO) ── */
.install-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

.install-steps {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.install-steps li {
  counter-increment: step;
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 20px 20px 20px 56px;
  position: relative;
  border-left: 4px solid var(--red);
}

.install-steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 18px;
  width: 28px;
  height: 28px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.install-steps strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--gray-900);
}

.install-steps p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

.install-aside {
  background: var(--red-light);
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid rgba(206, 17, 38, 0.12);
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.install-aside h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 12px;
}

.install-aside-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 14px;
}

.install-aside h3 + .spec-list {
  margin-bottom: 20px;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(206, 17, 38, 0.1);
}

.spec-list li span {
  color: var(--gray-600);
}

.spec-list li strong {
  color: var(--gray-900);
  font-weight: 700;
  text-align: right;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 12px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 240px;
}

.data-table th,
.data-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid rgba(206, 17, 38, 0.1);
}

.data-table th {
  font-weight: 700;
  color: var(--gray-900);
  background: rgba(255, 255, 255, 0.5);
}

.data-table td {
  color: var(--gray-600);
}

.badge-ok,
.badge-best {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.badge-ok {
  background: rgba(206, 17, 38, 0.12);
  color: var(--red);
}

.badge-best {
  background: var(--red);
  color: var(--white);
}

.install-note {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
}

.prose p {
  margin-bottom: 16px;
  color: var(--gray-600);
  font-size: 16px;
}

.prose p:last-child { margin-bottom: 0; }

/* ── Section head row ── */
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  flex-wrap: wrap;
}

.section-head-row .section-label,
.section-head-row h2 {
  text-align: left;
}

.section-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
  text-decoration: none;
}

.section-link:hover {
  text-decoration: underline;
}

/* ── App grid ── */
.app-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.app-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 0;
}

.app-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.app-card-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.app-card-link:hover { text-decoration: none; }

.app-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--red-light);
}

.app-card-body {
  flex: 1;
  min-width: 0;
}

.app-card-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-card-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--red);
  background: var(--red-light);
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.app-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 11px;
  color: var(--gray-600);
}

.app-ver {
  font-weight: 600;
  color: var(--gray-900);
}

.app-size::before {
  content: "·";
  margin-right: 6px;
  color: var(--gray-100);
}

/* ── Features ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--white);
  color: var(--gray-900);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.feat-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── Screenshots ── */
.shot-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(12px, 3vw, 28px);
  flex-wrap: wrap;
}

.shot-item {
  flex: 0 1 200px;
  max-width: 240px;
  text-align: center;
}

.shot-item img {
  width: 100%;
  max-width: 384px;
  aspect-ratio: 384 / 688;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid var(--red-light);
  box-shadow: var(--shadow);
  margin: 0 auto;
}

.shot-item--mid {
  flex: 0 1 220px;
  max-width: 260px;
}

.shot-item--mid img {
  border-color: var(--red);
  transform: translateY(-12px);
}

.shot-item figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.5;
  word-break: break-word;
}

/* ── Reviews ── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 4px solid var(--red);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.review-card header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  position: relative;
}

.review-avatar::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.35;
}

.review-card cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
}

.review-meta {
  display: block;
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 2px;
}

.review-stars {
  display: block;
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
}

.review-likes {
  display: block;
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 2px;
}

.review-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── Changelog ── */
.log-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.log-card:hover {
  border-color: rgba(206, 17, 38, 0.25);
  box-shadow: 0 4px 20px rgba(206, 17, 38, 0.08);
}

.log-card--latest {
  border-color: var(--red);
  border-width: 2px;
}

.log-card-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 14px 20px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.log-card--latest .log-card-head {
  background: var(--red-light);
  border-bottom-color: rgba(206, 17, 38, 0.12);
}

.log-ver {
  font-size: 15px;
  font-weight: 800;
  color: var(--red);
  background: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
  border: 2px solid var(--red);
}

.log-size {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
}

.log-date {
  margin-left: auto;
  font-size: 12px;
  color: var(--gray-600);
}

.log-body {
  padding: 18px 20px 20px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

.log-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.35;
}

.log-body p {
  margin-bottom: 10px;
}

.log-body p:last-child {
  margin-bottom: 0;
}

.log-body ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.log-body li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.55;
}

.log-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

/* ── Link cards ── */
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.link-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 18px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.link-card:hover {
  border-color: var(--red);
  background: var(--red-light);
  text-decoration: none;
}

.link-card strong {
  color: var(--gray-900);
  font-size: 15px;
}

.link-card span {
  font-size: 13px;
  color: var(--gray-600);
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(206, 17, 38, 0.15);
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 18px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  word-break: break-word;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-light);
  color: var(--red);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  padding: 0 18px 16px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

.faq-more {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray-600);
}

/* ── Footer ── */
.site-footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 24px;
}

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

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 12px;
  filter: none;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.65;
  max-width: 280px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.site-footer ul li { margin-bottom: 8px; }

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
}

.footer-note {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.6;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .main-nav { display: none; }

  .nav-toggle { display: flex; }

  .header-cta {
    display: flex;
    gap: 6px;
    margin-left: auto;
  }

  .btn-header {
    padding: 6px 12px;
    font-size: 12px;
  }

  .brand img {
    height: 32px;
    max-width: min(28vw, 120px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-card {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .install-layout {
    grid-template-columns: 1fr;
  }

  .install-aside {
    position: static;
  }
}

@media (max-width: 600px) {
  body { font-size: 14px; }

  .container {
    width: min(100% - 24px, var(--max));
  }

  .header-row {
    gap: 8px;
  }

  .btn-header {
    padding: 5px 9px;
    font-size: 11px;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding: calc(var(--header-h) + 32px) 0 48px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .section { padding: 48px 0; }

  .feat-grid {
    grid-template-columns: 1fr;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .app-card-link {
    padding: 12px;
  }

  .shot-item,
  .shot-item--mid {
    flex: 0 1 160px;
    max-width: 180px;
  }

  .shot-item--mid img {
    transform: none;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   Halaman Unduh APK — layout unik
   ══════════════════════════════════════ */

.page-unduh .ud-main {
  padding-top: var(--header-h);
}

.page-unduh [id^="sec-"] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.ud-hero {
  background:
    linear-gradient(160deg, var(--red) 0%, var(--red) 42%, var(--white) 42.1%);
  padding: 40px 0 56px;
  overflow: hidden;
}

.ud-hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.ud-breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 14px;
}

.ud-breadcrumb a {
  color: var(--white);
  text-decoration: none;
}

.ud-breadcrumb a:hover {
  text-decoration: underline;
}

.ud-hero-text h1 {
  font-size: clamp(1.5rem, 3.8vw, 2.15rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.28;
  margin-bottom: 14px;
  word-break: break-word;
}

.ud-lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 54ch;
}

.ud-dl-panel {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
  border: 3px solid var(--red);
  position: relative;
}

.ud-dl-panel::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(206, 17, 38, 0.25);
  border-radius: 24px;
  pointer-events: none;
}

.ud-dl-logo {
  width: 88px;
  height: 88px;
  margin: 0 auto 12px;
  border-radius: 20px;
  border: 3px solid var(--red-light);
}

.ud-dl-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  background: var(--red-light);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.ud-dl-ver {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 18px;
}

.ud-dl-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
  text-align: left;
}

.ud-dl-meta li {
  background: var(--gray-50);
  border-radius: 10px;
  padding: 10px 12px;
  border-left: 3px solid var(--red);
}

.ud-dl-meta span {
  display: block;
  font-size: 11px;
  color: var(--gray-600);
  margin-bottom: 2px;
}

.ud-dl-meta strong {
  font-size: 14px;
  color: var(--gray-900);
}

.ud-dl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(206, 17, 38, 0.35);
}

.ud-dl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(206, 17, 38, 0.4);
  text-decoration: none;
  color: var(--white);
}

.ud-dl-btn-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.ud-dl-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-600);
}

.ud-block {
  padding: 56px 0;
}

.ud-block--white { background: var(--white); }

.ud-block--stripe {
  background: repeating-linear-gradient(
    -45deg,
    var(--gray-50),
    var(--gray-50) 12px,
    var(--white) 12px,
    var(--white) 24px
  );
}

.ud-block--dark {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.85);
}

.ud-block--faq {
  background: var(--red-light);
}

.ud-heading {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1.3;
}

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

.ud-heading--light { color: var(--white); }

.ud-sub {
  font-size: 15px;
  color: var(--gray-600);
  margin: -8px 0 28px;
  line-height: 1.6;
}

.ud-sub--center {
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
}

.ud-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.ud-prose p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 14px;
}

.ud-prose p:last-child { margin-bottom: 0; }

.ud-quote {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin: 0;
  position: relative;
}

.ud-quote::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 48px;
  line-height: 1;
  opacity: 0.25;
  font-family: Georgia, serif;
}

.ud-quote p {
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.ud-quote footer {
  margin-top: 14px;
  font-size: 13px;
  opacity: 0.8;
  font-style: normal;
}

.ud-ver-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin-inline: auto;
}

.ud-ver-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 2px solid var(--gray-100);
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.ud-ver-card:hover {
  border-color: rgba(206, 17, 38, 0.3);
  transform: translateY(-4px);
}

.ud-ver-card--hot {
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(206, 17, 38, 0.15);
}

.ud-ver-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.ud-ver-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.ud-ver-size {
  font-size: 14px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 16px;
}

.ud-ver-feats {
  list-style: none;
  margin-bottom: 20px;
  text-align: left;
}

.ud-ver-feats li {
  font-size: 13px;
  color: var(--gray-600);
  padding: 6px 0 6px 16px;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}

.ud-ver-feats li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 11px;
}

.ud-ver-btn {
  display: block;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--red);
  color: var(--red);
  transition: background 0.2s, color 0.2s;
}

.ud-ver-btn:hover {
  background: var(--red-light);
  text-decoration: none;
}

.ud-ver-btn--fill {
  background: var(--red);
  color: var(--white);
}

.ud-ver-btn--fill:hover {
  background: var(--red-dark);
  color: var(--white);
}

.ud-secure-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.ud-hash-box,
.ud-privacy-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px;
}

.ud-hash-box h3,
.ud-privacy-box h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.ud-hash {
  display: block;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 11px;
  line-height: 1.6;
  word-break: break-all;
  background: rgba(0, 0, 0, 0.35);
  color: #7dcea0;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ud-hash-box p,
.ud-privacy-box p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.ud-hash-link {
  font-size: 13px;
  font-weight: 600;
  color: #ff8a9a;
  text-decoration: none;
}

.ud-hash-link:hover {
  text-decoration: underline;
  color: var(--white);
}

.ud-privacy-list {
  list-style: none;
}

.ud-privacy-list li {
  font-size: 13px;
  padding: 8px 0 8px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ud-privacy-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 8px;
  top: 12px;
}

.ud-privacy-list a {
  color: #ff8a9a;
}

.ud-review-lane {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  overflow: hidden;
}

.ud-review-item {
  padding: 24px 20px;
  border-right: 1px solid var(--gray-100);
  background: var(--white);
}

.ud-review-item:last-child {
  border-right: none;
}

.ud-review-item header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.ud-review-ver {
  font-size: 12px;
  font-weight: 800;
  color: var(--white);
  background: var(--red);
  padding: 4px 10px;
  border-radius: 6px;
}

.ud-review-item cite {
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  color: var(--gray-900);
  display: block;
}

.ud-review-author {
  text-align: right;
}

.ud-review-author .review-meta {
  display: block;
  font-size: 11px;
  color: var(--gray-600);
  margin-top: 2px;
}

.ud-review-item p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

.ud-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ud-faq {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(206, 17, 38, 0.12);
  overflow: hidden;
}

.ud-faq--wide {
  grid-column: 1 / -1;
}

.ud-faq summary {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--gray-900);
  word-break: break-word;
}

.ud-faq summary::-webkit-details-marker { display: none; }

.ud-faq[open] summary {
  color: var(--red);
  border-bottom: 1px solid var(--gray-100);
}

.ud-faq p {
  padding: 12px 16px 16px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
}

.ud-faq-foot {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray-600);
}

/* ── Unduh: Kompatibilitas (SEO) ── */
.ud-compat-single {
  max-width: 640px;
}

.ud-compat-h3--center {
  text-align: center;
  margin-bottom: 16px;
}

.ud-compat-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.ud-compat-h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ud-compat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 260px;
}

.ud-compat-table th,
.ud-compat-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
}

.ud-compat-table th {
  background: var(--red-light);
  color: var(--gray-900);
  font-weight: 700;
  font-size: 12px;
}

.ud-compat-table td {
  color: var(--gray-600);
}

.ud-compat-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
}

.ud-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}

.ud-badge--ok {
  background: var(--red-light);
  color: var(--red);
}

.ud-badge--best {
  background: var(--red);
  color: var(--white);
}

/* ── Unduh: Panduan instalasi (SEO) ── */
.ud-block--red {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
}

.ud-sub--light {
  color: rgba(255, 255, 255, 0.88);
}

.ud-guide-steps {
  list-style: none;
  counter-reset: udstep;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  max-width: 100%;
}

.ud-guide-steps li {
  counter-increment: udstep;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px 14px 16px;
  position: relative;
}

.ud-guide-steps li::before {
  content: counter(udstep);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--white);
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 12px;
}

.ud-guide-steps strong {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  line-height: 1.35;
  color: var(--white);
}

.ud-guide-steps p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.ud-guide-steps a {
  color: #ffc9d0;
  font-weight: 600;
}

.ud-guide-steps a:hover {
  color: var(--white);
}

.ud-inline-hash {
  display: inline;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 10px;
  word-break: break-all;
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 6px;
  border-radius: 4px;
  color: #a8e6cf;
}

.ud-guide-tip {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
}

.ud-guide-tip p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 960px) {
  .ud-hero {
    background: var(--red);
    padding: 28px 0 40px;
  }

  .ud-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ud-dl-panel {
    max-width: 380px;
    margin-inline: auto;
    width: 100%;
  }

  .ud-split {
    grid-template-columns: 1fr;
  }

  .ud-ver-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .ud-secure-grid {
    grid-template-columns: 1fr;
  }

  .ud-review-lane {
    grid-template-columns: 1fr;
  }

  .ud-review-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
  }

  .ud-review-item:last-child {
    border-bottom: none;
  }

  .ud-faq-grid {
    grid-template-columns: 1fr;
  }

  .ud-faq--wide {
    grid-column: auto;
  }

  .ud-compat-layout {
    grid-template-columns: 1fr;
  }

  .ud-guide-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .ud-block {
    padding: 40px 0;
  }

  .ud-dl-meta {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   Halaman Masuk / Daftar — layout unik
   ══════════════════════════════════════ */

.page-masuk .mk-main {
  padding-top: var(--header-h);
}

.page-masuk [id^="sec-"] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.mk-hero {
  background: var(--white);
  border-top: 6px solid var(--red);
  padding: 44px 0 52px;
}

.mk-hero-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
}

.mk-crumb {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.mk-crumb a {
  color: var(--red);
  text-decoration: none;
}

.mk-crumb a:hover {
  text-decoration: underline;
}

.mk-hero-copy h1 {
  font-size: clamp(1.45rem, 3.6vw, 2.1rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.28;
  margin-bottom: 14px;
  word-break: break-word;
}

.mk-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 24px;
  max-width: 52ch;
}

.mk-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mk-trust li {
  text-align: left;
}

.mk-trust strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  line-height: 1.2;
}

.mk-trust span {
  font-size: 12px;
  color: var(--gray-600);
}

.mk-portal {
  background: var(--gray-50);
  border: 2px solid var(--red);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(206, 17, 38, 0.12);
}

.mk-portal-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 16px;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mk-portal-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 18px;
}

.mk-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.mk-btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.mk-btn--login {
  background: var(--white);
  color: var(--red);
  border: 2px solid var(--red);
}

.mk-btn--login:hover {
  background: var(--red-light);
  color: var(--red-dark);
}

.mk-btn--register {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  box-shadow: 0 6px 20px rgba(206, 17, 38, 0.3);
}

.mk-btn--register:hover {
  background: var(--red-dark);
  color: var(--white);
}

.mk-portal-or {
  display: block;
  margin: 14px 0;
  font-size: 12px;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mk-portal-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
}

.mk-portal-note a {
  font-weight: 600;
}

.mk-block {
  padding: 56px 0;
}

.mk-block--gray { background: var(--gray-50); }
.mk-block--white { background: var(--white); }
.mk-block--faq { background: var(--red-light); }

.mk-block--red {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, #e8354a 100%);
  color: var(--white);
}

.mk-heading {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.3;
}

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

.mk-heading--light { color: var(--white); }

.mk-sub {
  font-size: 15px;
  color: var(--gray-600);
  margin: -4px 0 28px;
  line-height: 1.6;
}

.mk-sub--center {
  text-align: center;
  max-width: 52ch;
  margin-inline: auto;
}

.mk-sub--light {
  color: rgba(255, 255, 255, 0.88);
}

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

.mk-trio-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px 20px;
  border-top: 4px solid var(--red);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
}

.mk-trio-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 14px;
}

.mk-trio-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.mk-trio-foot {
  text-align: center;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

.mk-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.mk-benefit {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 22px 18px;
  border-left: 4px solid var(--red);
  transition: box-shadow 0.2s, transform 0.2s;
}

.mk-benefit:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.mk-benefit b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.35;
}

.mk-benefit p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
}

.mk-reg-steps {
  list-style: none;
  counter-reset: mkreg;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.mk-reg-steps li {
  counter-increment: mkreg;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 20px 16px;
}

.mk-reg-steps li::before {
  content: counter(mkreg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--white);
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 12px;
}

.mk-reg-steps strong {
  display: block;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.35;
}

.mk-reg-steps p {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.mk-reg-steps a {
  color: #ffd0d6;
  font-weight: 600;
}

.mk-reg-quote {
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
}

.mk-reg-quote p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.mk-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mk-faq {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(206, 17, 38, 0.12);
  overflow: hidden;
}

.mk-faq--wide {
  grid-column: 1 / -1;
}

.mk-faq summary {
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--gray-900);
  word-break: break-word;
}

.mk-faq summary::-webkit-details-marker { display: none; }

.mk-faq[open] summary {
  color: var(--red);
  border-bottom: 1px solid var(--gray-100);
}

.mk-faq p {
  padding: 12px 16px 16px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── Masuk: Keamanan akun (SEO) ── */
.mk-block--dark {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.88);
}

.mk-security-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.mk-security-main h3,
.mk-security-aside h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.mk-security-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mk-security-list li {
  font-size: 14px;
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}

.mk-security-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
}

.mk-security-list strong {
  color: var(--white);
}

.mk-security-list a {
  color: #ff8a9a;
  font-weight: 600;
}

.mk-security-aside {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.mk-security-quote {
  margin: 0 0 16px;
  padding: 0;
  border: none;
}

.mk-security-quote p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.mk-security-tips {
  list-style: none;
}

.mk-security-tips li {
  font-size: 13px;
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

.mk-security-tips li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
}

/* ── Masuk: Perbandingan (SEO) ── */
.mk-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin-inline: auto;
}

.mk-compare-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 2px solid var(--gray-100);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mk-compare-card--hot {
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.mk-compare-head {
  padding: 16px 20px;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  color: var(--white);
}

.mk-compare-head--login {
  background: var(--gray-900);
}

.mk-compare-head--register {
  background: var(--red);
}

.mk-compare-list {
  list-style: none;
  padding: 20px 20px 8px;
  flex: 1;
}

.mk-compare-list li {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}

.mk-compare-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.mk-compare-list strong {
  color: var(--gray-900);
}

.mk-compare-btn {
  display: block;
  margin: 12px 20px 20px;
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  border: 2px solid var(--red);
  color: var(--red);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.mk-compare-btn:hover {
  background: var(--red-light);
  text-decoration: none;
}

.mk-compare-btn--fill {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.mk-compare-btn--fill:hover {
  background: var(--red-dark);
  color: var(--white);
}

.mk-compare-foot {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  max-width: 60ch;
  margin-inline: auto;
}

@media (max-width: 960px) {
  .mk-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mk-portal {
    max-width: 360px;
    margin-inline: auto;
    width: 100%;
  }

  .mk-trio {
    grid-template-columns: 1fr;
  }

  .mk-benefit-grid {
    grid-template-columns: 1fr;
  }

  .mk-reg-steps {
    grid-template-columns: 1fr;
  }

  .mk-faq-grid {
    grid-template-columns: 1fr;
  }

  .mk-faq--wide {
    grid-column: auto;
  }

  .mk-security-grid {
    grid-template-columns: 1fr;
  }

  .mk-compare-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .mk-block {
    padding: 40px 0;
  }

  .mk-benefit-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   Halaman Pembaruan — timeline changelog
   ══════════════════════════════════════ */

.page-pembaruan .pm-main {
  padding-top: var(--header-h);
}

.page-pembaruan [id^="sec-"] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.pm-hero {
  background: linear-gradient(135deg, var(--red) 0%, #a50e1f 100%);
  color: var(--white);
  padding: 48px 0 56px;
}

.pm-hero-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
}

.pm-crumb {
  font-size: 13px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.pm-crumb a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pm-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  margin-bottom: 14px;
  font-weight: 800;
}

.pm-lead {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 52ch;
  margin-bottom: 24px;
}

.pm-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin: 0;
}

.pm-stats dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
  margin-bottom: 4px;
}

.pm-stats dd {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.pm-latest-card {
  background: var(--white);
  color: var(--gray-900);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  position: relative;
}

.pm-latest-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
}

.pm-latest-card img {
  margin: 8px auto 12px;
  border-radius: 14px;
}

.pm-latest-ver {
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 4px;
}

.pm-latest-meta {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.pm-btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pm-btn--solid {
  background: var(--red);
  color: var(--white);
  margin-bottom: 10px;
}

.pm-btn--solid:hover {
  background: #a50e1f;
  color: var(--white);
}

.pm-btn--ghost {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.pm-btn--ghost:hover {
  background: var(--red);
  color: var(--white);
}

.pm-block {
  padding: 56px 0;
}

.pm-block--white {
  background: var(--white);
}

.pm-block--gray {
  background: var(--gray-100);
}

.pm-block--red {
  background: var(--red);
  color: var(--white);
}

.pm-heading {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: inherit;
}

.pm-heading--center {
  text-align: center;
  margin-bottom: 28px;
}

.pm-section-lead {
  text-align: center;
  max-width: 58ch;
  margin: -12px auto 40px;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.65;
}

.pm-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pm-intro-card {
  background: var(--gray-100);
  border-left: 4px solid var(--red);
  padding: 28px 28px 28px 24px;
  border-radius: 0 10px 10px 0;
}

.pm-intro-icon {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.pm-intro-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-800);
}

/* Timeline */
.pm-timeline {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  padding-left: 8px;
}

.pm-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: linear-gradient(to bottom, var(--red), var(--gray-300));
  border-radius: 2px;
}

.pm-log {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

.pm-log:last-child {
  margin-bottom: 0;
}

.pm-log-marker {
  position: relative;
  padding-top: 4px;
}

.pm-log-dot {
  position: absolute;
  left: 12px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: 50%;
  z-index: 1;
}

.pm-log--latest .pm-log-dot {
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(206, 17, 38, 0.25);
}

.pm-log-meta {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pm-log-ver {
  font-weight: 800;
  font-size: 15px;
  color: var(--red);
}

.pm-log-size {
  font-size: 13px;
  color: var(--gray-600);
}

.pm-log-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--red);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  width: fit-content;
}

.pm-log-body {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 24px 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pm-log--latest .pm-log-body {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(206, 17, 38, 0.1);
}

.pm-log-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--gray-900);
  line-height: 1.35;
}

.pm-log-body p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
}

.pm-log-body p:last-child {
  margin-bottom: 0;
}

.pm-log-body ul {
  margin: 0;
  padding-left: 20px;
}

.pm-log-body li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.pm-log-body li:last-child {
  margin-bottom: 0;
}

.pm-log--compact .pm-log-body {
  padding: 20px 24px;
}

.pm-timeline-foot {
  text-align: center;
  margin-top: 36px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

.pm-timeline-foot a {
  color: var(--red);
  font-weight: 600;
}

/* Split SEO sections */
.pm-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pm-split--reverse {
  direction: rtl;
}

.pm-split--reverse > * {
  direction: ltr;
}

.pm-split-copy p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.pm-block--red .pm-split-copy p {
  opacity: 0.95;
}

.pm-block--red .pm-split-copy strong {
  color: var(--white);
}

.pm-update-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pm-update-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 18px 20px;
}

.pm-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--white);
  color: var(--red);
  font-weight: 800;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-update-steps strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.pm-update-steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.pm-policy-list {
  margin: 0;
  padding-left: 20px;
}

.pm-policy-list li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: var(--gray-700);
}

.pm-policy-panel {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--gray-200);
}

.pm-policy-panel-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--gray-900);
}

.pm-policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.pm-policy-table th,
.pm-policy-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.pm-policy-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  background: var(--white);
}

.pm-policy-table tbody tr:last-child td {
  border-bottom: none;
}

.pm-status {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--gray-200);
  color: var(--gray-700);
}

.pm-status--active {
  background: rgba(206, 17, 38, 0.12);
  color: var(--red);
}

.pm-status--legacy {
  background: var(--gray-300);
  color: var(--gray-600);
}

.pm-policy-note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* FAQ */
.pm-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 960px;
  margin-inline: auto;
}

.pm-faq {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
}

.pm-faq summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  line-height: 1.45;
}

.pm-faq summary::-webkit-details-marker {
  display: none;
}

.pm-faq summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--red);
}

.pm-faq[open] summary::after {
  content: "−";
}

.pm-faq p {
  padding: 0 20px 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
}

.pm-faq--wide {
  grid-column: 1 / -1;
}

@media (max-width: 960px) {
  .pm-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pm-latest-card {
    max-width: 320px;
    margin-inline: auto;
    width: 100%;
  }

  .pm-intro-split {
    grid-template-columns: 1fr;
  }

  .pm-log {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 36px;
  }

  .pm-log-meta {
    padding-left: 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }

  .pm-timeline::before {
    left: 11px;
  }

  .pm-log-dot {
    left: 4px;
  }

  .pm-split,
  .pm-split--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .pm-faq-grid {
    grid-template-columns: 1fr;
  }

  .pm-faq--wide {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .pm-block {
    padding: 40px 0;
  }

  .pm-stats {
    gap: 16px 24px;
  }

  .pm-log-body {
    padding: 18px 20px;
  }
}

/* ══════════════════════════════════════
   Halaman Dokumentasi — panduan instal
   ══════════════════════════════════════ */

.page-dokumentasi .dk-main {
  padding-top: var(--header-h);
}

.page-dokumentasi [id^="sec-"] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

@media (min-width: 1100px) {
  body.page-dokumentasi {
    padding-left: 0;
  }

  body.page-dokumentasi .site-header {
    left: 0;
    width: 100%;
  }
}

.dk-hero {
  background: var(--white);
  border-top: 6px solid var(--red);
  padding: 44px 0 52px;
}

.dk-hero-inner {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.dk-crumb {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.dk-crumb a {
  color: var(--red);
}

.dk-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.3rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--gray-900);
}

.dk-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  max-width: 54ch;
  margin-bottom: 24px;
}

.dk-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dk-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.dk-btn--solid {
  background: var(--red);
  color: var(--white);
}

.dk-btn--solid:hover {
  background: #a50e1f;
  color: var(--white);
}

.dk-btn--outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.dk-btn--outline:hover {
  background: var(--red);
  color: var(--white);
}

.dk-toc-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.dk-toc-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
  margin-bottom: 14px;
}

.dk-toc-list {
  margin: 0 0 16px;
  padding-left: 20px;
}

.dk-toc-list li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.dk-toc-list a {
  color: var(--gray-800);
  text-decoration: none;
}

.dk-toc-list a:hover {
  color: var(--red);
  text-decoration: underline;
}

.dk-toc-meta {
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
}

.dk-block {
  padding: 56px 0;
}

.dk-block--white {
  background: var(--white);
}

.dk-block--gray {
  background: var(--gray-100);
}

.dk-block--red {
  background: var(--red);
  color: var(--white);
}

.dk-section-head {
  margin-bottom: 32px;
}

.dk-section-head--center {
  text-align: center;
  margin-bottom: 36px;
}

.dk-section-head--light .dk-section-sub,
.dk-section-head--light h2 {
  color: var(--white);
}

.dk-chapter {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 8px;
}

.dk-chapter--light {
  color: rgba(255, 255, 255, 0.85);
}

.dk-section-head h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
  color: inherit;
}

.dk-section-sub {
  margin: 12px auto 0;
  max-width: 52ch;
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.92;
}

/* Audience list (dokumentasi3) */
.dk-audience-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.dk-audience-list li {
  background: var(--white);
  border-radius: 10px;
  padding: 22px 22px 22px 48px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-800);
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-200);
}

.dk-audience-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 22px;
  height: 22px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Benefit list (dokumentasi4) */
.dk-benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin-inline: auto;
}

.dk-benefit-list li {
  background: var(--gray-100);
  border-left: 4px solid var(--red);
  padding: 20px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-800);
  border-radius: 0 8px 8px 0;
}

/* Install steps */
.dk-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dk-step {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 24px 22px;
  position: relative;
}

.dk-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--red);
  font-weight: 800;
  font-size: 18px;
  border-radius: 50%;
  margin-bottom: 14px;
}

.dk-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--white);
}

.dk-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.92;
}

.dk-step a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dk-install-foot {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  opacity: 0.9;
}

.dk-install-foot a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
}

/* Split SEO */
.dk-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.dk-split--reverse {
  direction: rtl;
}

.dk-split--reverse > * {
  direction: ltr;
}

.dk-split-copy p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 14px;
}

.dk-req-panel {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--gray-200);
}

.dk-req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.dk-req-table th,
.dk-req-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.dk-req-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  background: var(--white);
}

.dk-req-table tbody tr:last-child td {
  border-bottom: none;
}

.dk-req-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--gray-600);
}

.dk-trouble-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dk-trouble-item {
  background: var(--white);
  border-radius: 10px;
  padding: 18px 20px;
  border: 1px solid var(--gray-200);
}

.dk-trouble-item dt {
  font-weight: 700;
  font-size: 15px;
  color: var(--red);
  margin-bottom: 6px;
}

.dk-trouble-item dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-700);
}

/* FAQ */
.dk-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 960px;
  margin-inline: auto;
}

.dk-faq {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
}

.dk-faq summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  line-height: 1.45;
}

.dk-faq summary::-webkit-details-marker {
  display: none;
}

.dk-faq summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--red);
}

.dk-faq[open] summary::after {
  content: "−";
}

.dk-faq p {
  padding: 0 20px 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
}

.dk-faq--wide {
  grid-column: 1 / -1;
}

@media (max-width: 960px) {
  .dk-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .dk-toc-card {
    position: static;
    max-width: 420px;
  }

  .dk-benefit-list {
    grid-template-columns: 1fr;
  }

  .dk-step-grid {
    grid-template-columns: 1fr;
  }

  .dk-split,
  .dk-split--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .dk-faq-grid {
    grid-template-columns: 1fr;
  }

  .dk-faq--wide {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .dk-block {
    padding: 40px 0;
  }

  .dk-audience-list {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   Halaman Keamanan — verifikasi SHA-256
   ══════════════════════════════════════ */

.page-keamanan .km-main {
  padding-top: var(--header-h);
}

.page-keamanan [id^="sec-"] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.km-hero {
  background: linear-gradient(160deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: var(--white);
  padding: 48px 0 56px;
  border-bottom: 4px solid var(--red);
}

.km-hero-inner {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 40px;
  align-items: center;
}

.km-crumb {
  font-size: 13px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.km-crumb a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.km-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.3rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 14px;
}

.km-lead {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.92;
  max-width: 54ch;
  margin-bottom: 24px;
}

.km-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.km-trust li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.km-trust strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.km-trust span {
  font-size: 12px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.km-shield {
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px 20px;
}

.km-shield-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.km-shield p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.85;
}

.km-shield strong {
  font-size: 14px;
  color: var(--white);
  word-break: break-all;
}

.km-block {
  padding: 56px 0;
}

.km-block--white {
  background: var(--white);
}

.km-block--gray {
  background: var(--gray-100);
}

.km-block--dark {
  background: #1a1a1a;
  color: var(--white);
}

.km-heading {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--gray-900);
}

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

.km-heading--light {
  color: var(--white);
}

.km-about {
  max-width: 720px;
}

.km-prose p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.km-prose p:last-child {
  margin-bottom: 0;
}

.km-section-lead {
  text-align: center;
  max-width: 58ch;
  margin: -8px auto 36px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
}

/* Hash panel */
.km-hash-lead {
  text-align: center;
  max-width: 58ch;
  margin: -8px auto 28px;
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.85;
}

.km-hash-lead a {
  color: var(--white);
  text-decoration: underline;
}

.km-hash-panel {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 28px;
  max-width: 820px;
  margin-inline: auto;
}

.km-hash-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.km-hash-meta dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.65;
  margin-bottom: 4px;
}

.km-hash-meta dd {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.km-hash-value-wrap {
  margin-bottom: 16px;
}

.km-hash-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 10px;
}

.km-hash-value {
  display: block;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: clamp(11px, 2vw, 14px);
  line-height: 1.6;
  word-break: break-all;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(206, 17, 38, 0.4);
  border-radius: 8px;
  padding: 16px 18px;
  color: #f0f0f0;
}

.km-hash-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.8;
}

.km-hash-foot {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  opacity: 0.8;
}

.km-hash-foot a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
}

/* Verify grid */
.km-verify-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.km-verify-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 20px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.km-verify-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  border-radius: 50%;
  margin-bottom: 14px;
}

.km-verify-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--gray-900);
}

.km-verify-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-700);
}

.km-verify-card a {
  color: var(--red);
  font-weight: 600;
}

.km-verify-card code {
  font-size: 12px;
  background: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Split SEO */
.km-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.km-split-copy p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 14px;
}

.km-safe-list {
  margin: 0;
  padding-left: 20px;
}

.km-safe-list li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 10px;
}

.km-safe-list a {
  color: var(--red);
  font-weight: 600;
}

.km-warning-panel {
  background: var(--gray-100);
  border: 2px solid var(--red);
  border-radius: 12px;
  padding: 26px 24px;
}

.km-warning-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 18px;
}

.km-warning-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.km-warning-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
}

.km-warning-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.km-warning-list strong {
  font-size: 14px;
  color: var(--gray-900);
}

.km-warning-list span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--gray-600);
}

.km-warning-foot {
  margin: 18px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-600);
}

.km-warning-foot a {
  color: var(--red);
  font-weight: 600;
}

/* FAQ */
.km-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 960px;
  margin-inline: auto;
}

.km-faq {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
}

.km-faq summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  line-height: 1.45;
}

.km-faq summary::-webkit-details-marker {
  display: none;
}

.km-faq summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--red);
}

.km-faq[open] summary::after {
  content: "−";
}

.km-faq p {
  padding: 0 20px 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
}

.km-faq--wide {
  grid-column: 1 / -1;
}

@media (max-width: 960px) {
  .km-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .km-shield {
    max-width: 240px;
    margin-inline: auto;
  }

  .km-verify-grid {
    grid-template-columns: 1fr 1fr;
  }

  .km-split {
    grid-template-columns: 1fr;
  }

  .km-faq-grid {
    grid-template-columns: 1fr;
  }

  .km-faq--wide {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .km-block {
    padding: 40px 0;
  }

  .km-verify-grid {
    grid-template-columns: 1fr;
  }

  .km-hash-panel {
    padding: 20px 16px;
  }
}

/* ══════════════════════════════════════
   Halaman Akses — status & saluran mirror
   ══════════════════════════════════════ */

.page-akses .ak-main {
  padding-top: var(--header-h);
}

.page-akses [id^="sec-"] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* Hero status dashboard */
.ak-hero {
  background: var(--white);
  border-top: 6px solid var(--red);
  padding: 40px 0 0;
}

.ak-crumb {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.ak-crumb a {
  color: var(--red);
}

.ak-hero-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.ak-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.3rem);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.ak-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  max-width: 58ch;
  margin: 0;
}

.ak-live-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  background: rgba(34, 165, 89, 0.1);
  color: #1a7a42;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(34, 165, 89, 0.25);
}

.ak-pulse {
  width: 10px;
  height: 10px;
  background: #22a559;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 165, 89, 0.5);
  animation: ak-pulse 2s infinite;
}

@keyframes ak-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 165, 89, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(34, 165, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 165, 89, 0); }
}

.ak-dash {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gray-900);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.ak-dash-item {
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.ak-dash-item:last-child {
  border-right: none;
}

.ak-dash-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.ak-dash-val {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.ak-block {
  padding: 56px 0;
}

.ak-block--white {
  background: var(--white);
}

.ak-block--gray {
  background: var(--gray-100);
}

.ak-block--dark {
  background: var(--gray-900);
  color: var(--white);
}

.ak-heading {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--gray-900);
}

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

.ak-heading--light {
  color: var(--white);
}

.ak-narrow {
  max-width: 720px;
}

.ak-prose p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 16px;
}

.ak-prose p:last-child {
  margin-bottom: 0;
}

.ak-note {
  margin: 24px 0 0;
  padding: 14px 18px;
  background: var(--gray-100);
  border-left: 4px solid var(--red);
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-600);
  border-radius: 0 8px 8px 0;
}

.ak-section-lead {
  text-align: center;
  max-width: 60ch;
  margin: -8px auto 32px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
}

.ak-section-lead--light {
  color: rgba(255, 255, 255, 0.78);
}

.ak-section-lead a {
  color: var(--red);
  font-weight: 600;
}

.ak-section-lead--light a {
  color: var(--white);
  text-decoration: underline;
}

/* Context quotes — akses4 & akses5 */
.ak-context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin-inline: auto;
}

.ak-quote {
  margin: 0;
  padding: 28px 26px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.ak-quote--red {
  border-color: var(--red);
  border-width: 2px;
  background: rgba(206, 17, 38, 0.03);
}

.ak-quote-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 12px;
}

.ak-quote p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-800);
}

/* Operator network table */
.ak-net-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.ak-net-table th,
.ak-net-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.ak-net-table th {
  background: var(--gray-100);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-600);
}

.ak-net-table tbody tr:last-child td {
  border-bottom: none;
}

.ak-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
}

.ak-badge--ok {
  background: rgba(34, 165, 89, 0.12);
  color: #1a7a42;
}

.ak-badge--warn {
  background: rgba(230, 126, 34, 0.15);
  color: #c0651a;
}

.ak-badge--best {
  background: rgba(206, 17, 38, 0.1);
  color: var(--red);
}

.ak-net-foot {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-600);
}

/* Channel list — horizontal rows */
.ak-channel-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin-inline: auto;
}

.ak-channel {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 22px;
  transition: border-color 0.2s, background 0.2s;
}

.ak-channel:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
}

.ak-channel--primary {
  border-color: var(--red);
  background: rgba(206, 17, 38, 0.12);
}

.ak-channel-id {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ak-channel-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.ak-channel-type {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.ak-channel-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--white);
}

.ak-channel-path {
  margin: 0 0 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  word-break: break-all;
}

.ak-channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ak-channel-tags li {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
}

.ak-channel-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.ak-channel-state {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.ak-channel-state--on {
  background: rgba(34, 165, 89, 0.2);
  color: #6ee7a0;
}

.ak-channel-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.ak-channel-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.ak-channel-btn--fill {
  background: var(--red);
  border-color: var(--red);
}

.ak-channel-btn--fill:hover {
  background: #a50e1f;
  border-color: #a50e1f;
}

/* Archive rollback row */
.ak-archive-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 840px;
  margin-inline: auto;
}

.ak-archive-item {
  background: var(--white);
  border-radius: 12px;
  padding: 22px 20px;
  border: 1px solid var(--gray-200);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.ak-archive-item--current {
  border-color: var(--red);
  border-width: 2px;
  box-shadow: 0 4px 16px rgba(206, 17, 38, 0.1);
}

.ak-archive-ver {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
}

.ak-archive-size {
  font-size: 14px;
  color: var(--gray-600);
}

.ak-archive-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
}

.ak-archive-item--current .ak-archive-tag {
  color: var(--red);
}

.ak-archive-item a {
  margin-top: 8px;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--red);
  color: var(--red);
  transition: background 0.2s, color 0.2s;
}

.ak-archive-item a:hover {
  background: var(--red);
  color: var(--white);
}

.ak-archive-item--current a {
  background: var(--red);
  color: var(--white);
}

.ak-archive-item--current a:hover {
  background: #a50e1f;
}

.ak-archive-foot {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

.ak-archive-foot a {
  color: var(--red);
  font-weight: 600;
}

/* Verify split */
.ak-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.ak-split-copy p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 14px;
}

.ak-verify-steps {
  margin: 8px 0 0;
  padding-left: 20px;
}

.ak-verify-steps li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 10px;
}

.ak-verify-steps a {
  color: var(--red);
  font-weight: 600;
}

.ak-hash-box {
  background: var(--gray-900);
  color: var(--white);
  border-radius: 12px;
  padding: 26px 24px;
}

.ak-hash-box h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--white);
}

.ak-hash-code {
  display: block;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: clamp(10px, 1.8vw, 13px);
  line-height: 1.6;
  word-break: break-all;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(206, 17, 38, 0.45);
  border-radius: 8px;
  padding: 14px 16px;
  color: #f0f0f0;
  margin-bottom: 14px;
}

.ak-hash-box p {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
}

.ak-hash-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-decoration: underline;
}

/* FAQ */
.ak-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 960px;
  margin-inline: auto;
}

.ak-faq {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
}

.ak-faq summary {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  line-height: 1.45;
}

.ak-faq summary::-webkit-details-marker {
  display: none;
}

.ak-faq summary::after {
  content: "+";
  float: right;
  font-weight: 700;
  color: var(--red);
}

.ak-faq[open] summary::after {
  content: "−";
}

.ak-faq p {
  padding: 0 20px 18px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-700);
}

.ak-faq--wide {
  grid-column: 1 / -1;
}

@media (max-width: 960px) {
  .ak-hero-head {
    flex-direction: column;
  }

  .ak-dash {
    grid-template-columns: 1fr 1fr;
  }

  .ak-dash-item:nth-child(2) {
    border-right: none;
  }

  .ak-dash-item:nth-child(1),
  .ak-dash-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ak-context-grid {
    grid-template-columns: 1fr;
  }

  .ak-channel {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ak-channel-side {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .ak-archive-row {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .ak-split {
    grid-template-columns: 1fr;
  }

  .ak-faq-grid {
    grid-template-columns: 1fr;
  }

  .ak-faq--wide {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .ak-block {
    padding: 40px 0;
  }

  .ak-dash {
    grid-template-columns: 1fr;
  }

  .ak-dash-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ak-dash-item:last-child {
    border-bottom: none;
  }
}

/* ══════════════════════════════════════
   Halaman Aplikasi — daftar (40 aplikasi)
   ══════════════════════════════════════ */

.page-aplikasi .ap-main {
  padding-top: var(--header-h);
}

.page-aplikasi [id^="sec-"] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.app-row--off {
  opacity: 0.35;
}

.ap-pager-wrap {
  margin-top: 22px;
}

#appPager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#appPager a,
#appPager .app-pager-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  background: var(--white);
  text-decoration: none;
}

#appPager a:hover {
  border-color: var(--red);
  color: var(--red);
}

.app-pager-current[aria-current="page"] {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.app-pager-prev,
.app-pager-next {
  height: 34px;
  padding: 0 14px;
  border-color: rgba(206, 17, 38, 0.35);
}

@media (max-width: 600px) {
  #appPager {
    justify-content: flex-start;
  }
}

@media (min-width: 1100px) {
  body.page-aplikasi {
    padding-left: 0;
  }

  body.page-aplikasi .site-header {
    left: 0;
    width: 100%;
  }
}

/* ══════════════════════════════════════
   Halaman Kebijakan Privasi — simple (tanpa anchor)
   ══════════════════════════════════════ */

.page-privasi .pv-main {
  padding-top: var(--header-h);
}

.page-privasi .pv-hero {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 44px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-privasi .pv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 48%, rgba(255,255,255,0.06) 48%, rgba(255,255,255,0.06) 52%, transparent 52%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.10) 0%, transparent 55%);
  pointer-events: none;
}

.page-privasi .pv-hero-inner {
  position: relative;
}

.page-privasi .pv-crumb {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 14px;
}

.page-privasi .pv-crumb a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-privasi .pv-lead {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 60ch;
  margin-top: 8px;
}

.page-privasi .pv-section {
  padding: 56px 0;
}

.page-privasi .pv-section--white { background: var(--white); }
.page-privasi .pv-section--gray { background: var(--gray-50); }

.page-privasi .pv-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 28px 24px;
}

.page-privasi .pv-callout {
  background: var(--white);
  border: 2px solid rgba(206, 17, 38, 0.15);
  border-radius: 18px;
  padding: 26px 22px;
}

.page-privasi .pv-callout h2 {
  font-size: 18px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 12px;
}

.page-privasi .pv-callout p {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
}

.page-privasi .pv-callout p:last-child { margin-bottom: 0; }

.page-privasi .pv-prose h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.page-privasi .pv-prose h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 26px 0 10px;
  color: var(--red);
}

.page-privasi .pv-prose p {
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
}

.page-privasi .pv-prose ul {
  margin: 10px 0 16px;
  padding-left: 18px;
  color: var(--gray-600);
}

.page-privasi .pv-prose li {
  margin-bottom: 8px;
  line-height: 1.7;
}

@media (min-width: 1100px) {
  body.page-privasi {
    padding-left: 0;
  }

  body.page-privasi .site-header {
    left: 0;
    width: 100%;
  }
}

/* ══════════════════════════════════════
   Halaman Syarat & Ketentuan — same design (tanpa anchor)
   ══════════════════════════════════════ */

.page-ketentuan .pv-main {
  padding-top: var(--header-h);
}

.page-ketentuan .pv-hero {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 44px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-ketentuan .pv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 48%, rgba(255,255,255,0.06) 48%, rgba(255,255,255,0.06) 52%, transparent 52%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.10) 0%, transparent 55%);
  pointer-events: none;
}

.page-ketentuan .pv-hero-inner {
  position: relative;
}

.page-ketentuan .pv-crumb {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 14px;
}

.page-ketentuan .pv-crumb a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-ketentuan .pv-lead {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 60ch;
  margin-top: 8px;
}

.page-ketentuan .pv-section {
  padding: 56px 0;
}

.page-ketentuan .pv-section--white { background: var(--white); }
.page-ketentuan .pv-section--gray { background: var(--gray-50); }

.page-ketentuan .pv-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 18px;
  padding: 28px 24px;
}

.page-ketentuan .pv-callout {
  background: var(--white);
  border: 2px solid rgba(206, 17, 38, 0.15);
  border-radius: 18px;
  padding: 26px 22px;
}

.page-ketentuan .pv-callout h2 {
  font-size: 18px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 12px;
}

.page-ketentuan .pv-callout p {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-600);
}

.page-ketentuan .pv-callout p:last-child { margin-bottom: 0; }

.page-ketentuan .pv-prose h2:first-child {
  /* Keep {tiaojian1}/{seo1} internal structure visible; no hiding */
}

.page-ketentuan .pv-prose h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.page-ketentuan .pv-prose h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 26px 0 10px;
  color: var(--red);
}

.page-ketentuan .pv-prose p {
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
}

.page-ketentuan .pv-prose ul {
  margin: 10px 0 16px;
  padding-left: 18px;
  color: var(--gray-600);
}

.page-ketentuan .pv-prose li {
  margin-bottom: 8px;
  line-height: 1.7;
}

@media (min-width: 1100px) {
  body.page-ketentuan {
    padding-left: 0;
  }

  body.page-ketentuan .site-header {
    left: 0;
    width: 100%;
  }
}

/* ══════════════════════════════════════
   Halaman Game / Aplikasi — detail page
   ══════════════════════════════════════ */

.page-game .gm-main {
  padding-top: var(--header-h);
}

.page-game [id^="sec-"] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.gm-hero {
  background: var(--red);
  padding: 44px 0 56px;
  position: relative;
  overflow: hidden;
}

.gm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 48%, rgba(255,255,255,0.06) 48%, rgba(255,255,255,0.06) 52%, transparent 52%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.10) 0%, transparent 55%);
  pointer-events: none;
}

.gm-hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: start;
  position: relative;
}

.gm-crumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.gm-crumb a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gm-time {
  margin: 4px 0 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.gm-time time {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.gm-hero-copy h1 {
  font-size: clamp(1.55rem, 3.8vw, 2.2rem);
  font-weight: 900;
  line-height: 1.22;
  color: var(--white);
  margin-bottom: 12px;
  word-break: break-word;
}

.gm-lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 60ch;
  margin-bottom: 18px;
}

.gm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.gm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.18s, background 0.2s, color 0.2s, border-color 0.2s;
}

.gm-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.gm-btn--fill {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.gm-btn--fill:hover {
  background: var(--gray-50);
  color: var(--red-dark);
}

.gm-btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.gm-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.gm-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.gm-meta > div {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 12px 12px;
}

.gm-meta dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
}

.gm-meta dd {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  word-break: break-word;
}

.gm-card {
  background: var(--white);
  border-radius: 18px;
  border: 3px solid var(--red);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.gm-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-bottom: 1px solid var(--gray-100);
}

.gm-card-body {
  padding: 20px 18px 18px;
  text-align: center;
}

.gm-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}

.gm-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gray-50);
  color: var(--gray-900);
  border: 1px solid var(--gray-100);
}

.gm-badge--hot {
  background: var(--red-light);
  color: var(--red);
  border-color: rgba(206, 17, 38, 0.18);
}

.gm-cta {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(206, 17, 38, 0.35);
  margin-bottom: 10px;
}

.gm-cta:hover {
  text-decoration: none;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(206, 17, 38, 0.42);
  transform: translateY(-1px);
}

.gm-note {
  margin: 0;
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.55;
}

.gm-block {
  padding: 56px 0;
}

.gm-block--white { background: var(--white); }
.gm-block--gray { background: var(--gray-50); }
.gm-block--faq { background: var(--red-light); }

.gm-h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--gray-900);
}

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

.gm-sub {
  font-size: 14px;
  color: var(--gray-600);
  margin: -10px 0 22px;
  line-height: 1.65;
}

.gm-sub--center {
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
}

.gm-prose p {
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
}

.gm-update-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gm-update {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--gray-100);
  padding: 20px 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.gm-update--old {
  background: rgba(255, 255, 255, 0.7);
}

.gm-update-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 12px;
}

.gm-update-head strong {
  font-weight: 900;
  color: var(--gray-900);
}

.gm-update-head time {
  margin-left: auto;
  font-size: 12px;
  color: var(--gray-600);
}

.gm-update-badge {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--red-light);
  color: var(--red);
  border: 1px solid rgba(206, 17, 38, 0.12);
}

.gm-update-badge--old {
  background: var(--gray-50);
  color: var(--gray-600);
  border-color: var(--gray-100);
}

.gm-update p {
  margin: 0;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

.gm-pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gm-pc {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 22px 20px;
  border-top: 4px solid var(--red);
}

.gm-pc--minus {
  border-top-color: rgba(0, 0, 0, 0.25);
}

.gm-pc h3 {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.gm-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gm-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.gm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.gm-shot-wrap {
  display: flex;
  justify-content: center;
}

.gm-shot {
  max-width: 820px;
  text-align: center;
}

.gm-shot img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid var(--red-light);
  box-shadow: var(--shadow);
}

.gm-shot figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.55;
  word-break: break-word;
}

.gm-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gm-review {
  background: var(--white);
  border-radius: 14px;
  padding: 22px 20px;
  border-top: 4px solid var(--red);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.gm-review header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.gm-review-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  position: relative;
}

.gm-review-dot::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.35;
}

.gm-review cite {
  display: block;
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
}

.gm-review-stars {
  display: block;
  font-size: 13px;
  color: var(--red);
  font-weight: 800;
  margin-top: 2px;
}

.gm-review p {
  margin: 0;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

@media (max-width: 960px) {
  .gm-hero {
    background: var(--red);
    padding: 28px 0 40px;
  }

  .gm-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .gm-card {
    max-width: 380px;
    margin-inline: auto;
    width: 100%;
  }

  .gm-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gm-update-grid {
    grid-template-columns: 1fr;
  }

  .gm-pc-grid {
    grid-template-columns: 1fr;
  }

  .gm-review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .gm-block {
    padding: 40px 0;
  }
}
