/* z18 homepage — bright product site */
:root {
  --zh-bg: #F7F8FA;
  --zh-bg-soft: #EEF3F2;
  --zh-ink: #1C2430;
  --zh-muted: #5B6675;
  --zh-brand: #0B3D3A;
  --zh-accent: #0D9488;
  --zh-accent-deep: #0F766E;
  --zh-line: #D7E0DE;
  --zh-white: #FFFFFF;
  --zh-radius: 10px;
  --zh-shadow: 0 8px 24px rgba(11, 61, 58, 0.08);
  --zh-font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --zh-display: "Fraunces", Georgia, serif;
  --zh-header-h: 72px;
  --zh-wrap: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body.page-home,
body.page-alt,
body.page-unduh,
body.page-masuk,
body.page-panduan,
body.page-lokasi,
body.page-legal {
  margin: 0;
  color: var(--zh-ink);
  font-family: var(--zh-font);
  font-size: 16px;
  line-height: 1.6;
  background:
    radial-gradient(1200px 520px at 12% -10%, rgba(13, 148, 136, 0.14), transparent 60%),
    radial-gradient(900px 480px at 88% 0%, rgba(56, 140, 180, 0.12), transparent 55%),
    var(--zh-bg);
  -webkit-font-smoothing: antialiased;
}

body.page-home a,
body.page-alt a,
body.page-unduh a,
body.page-masuk a,
body.page-panduan a,
body.page-lokasi a,
body.page-legal a {
  color: inherit;
  text-decoration: none;
}

body.page-home img,
body.page-alt img,
body.page-unduh img,
body.page-masuk img,
body.page-panduan img,
body.page-lokasi img,
body.page-legal img {
  max-width: 100%;
  height: auto;
  display: block;
}

.zh-wrap {
  width: min(100% - 2rem, var(--zh-wrap));
  margin-inline: auto;
}

.zh-narrow {
  width: min(100% - 2rem, 760px);
}

/* Header */
.zh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--zh-header-h);
  background: rgba(247, 248, 250, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.zh-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--zh-line);
  box-shadow: 0 1px 0 rgba(11, 61, 58, 0.04);
}

.zh-header-inner {
  width: min(100% - 2rem, var(--zh-wrap));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.zh-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  max-width: 140px;
}

body.page-home .zh-logo img,
body.page-alt .zh-logo img,
body.page-unduh .zh-logo img,
body.page-masuk .zh-logo img,
body.page-panduan .zh-logo img,
body.page-lokasi .zh-logo img,
body.page-legal .zh-logo img {
  height: 36px;
  width: auto;
  max-width: 140px;
  max-height: 36px;
  object-fit: contain;
  object-position: left center;
}

.zh-nav {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

.zh-nav a {
  padding: 0.45rem 0.7rem;
  color: var(--zh-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.zh-nav a:hover {
  color: var(--zh-brand);
  background: rgba(13, 148, 136, 0.08);
}

.zh-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

/* Buttons */
.zh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border-radius: var(--zh-radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.zh-btn:hover {
  transform: translateY(-1px);
}

.zh-btn-primary {
  background: var(--zh-accent);
  color: #fff !important;
}

.zh-btn-primary:hover {
  background: var(--zh-accent-deep);
}

.zh-btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--zh-brand) !important;
  border-color: rgba(255, 255, 255, 0.5);
}

.zh-btn-secondary:hover {
  background: #fff;
}

.zh-btn-ghost {
  background: transparent;
  color: var(--zh-brand) !important;
  border-color: var(--zh-line);
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
}

.zh-btn-ghost:hover {
  background: rgba(13, 148, 136, 0.06);
}

.zh-btn-solid {
  background: var(--zh-accent);
  color: #fff !important;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
}

.zh-btn-solid:hover {
  background: var(--zh-accent-deep);
}

.zh-btn-ghost-light {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
}

.zh-btn-secondary-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28);
}

/* Mobile menu button */
#mbt {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--zh-line);
  border-radius: 8px;
  background: var(--zh-white);
  cursor: pointer;
}

#mbt span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--zh-brand);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

#mbt.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#mbt.active span:nth-child(2) {
  opacity: 0;
}

#mbt.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero — full bleed */
.zh-hero {
  position: relative;
  min-height: calc(100svh - var(--zh-header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.zh-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.zh-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.zh-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11, 61, 58, 0.35) 0%, rgba(11, 61, 58, 0.72) 55%, rgba(8, 28, 32, 0.9) 100%),
    linear-gradient(90deg, rgba(8, 28, 32, 0.55) 0%, transparent 55%);
}

.zh-hero-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 2rem, var(--zh-wrap));
  margin: 0 auto;
  padding: 4.5rem 0 4rem;
  max-width: 640px;
  margin-left: max(1rem, calc((100% - var(--zh-wrap)) / 2));
  animation: zhHeroIn 0.7s ease both;
}

@keyframes zhHeroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zh-brand {
  margin: 0 0 0.75rem;
  font-family: var(--zh-display);
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
}

.zh-hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--zh-font);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
  max-width: 28ch;
}

.zh-hero-lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 36ch;
}

.zh-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Sections */
.zh-section {
  padding: 4.5rem 0;
}

.zh-section-head {
  margin-bottom: 2rem;
}

.zh-section-head h2 {
  margin: 0 0 0.4rem;
  font-family: var(--zh-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--zh-brand);
  letter-spacing: -0.02em;
}

.zh-section-head p {
  margin: 0;
  color: var(--zh-muted);
  max-width: 42ch;
}

/* Product */
.zh-product-grid {
  display: grid;
  gap: 2.5rem;
}

.zh-prose {
  margin: 0 0 1.25rem;
  color: var(--zh-ink);
}

.zh-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.zh-features li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--zh-muted);
}

.zh-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--zh-accent);
}

.zh-meta {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--zh-line);
}

.zh-meta div {
  min-width: 0;
}

.zh-meta dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--zh-muted);
  margin-bottom: 0.2rem;
}

.zh-meta dd {
  margin: 0;
  font-weight: 600;
  color: var(--zh-brand);
}

/* Preview gallery */
.zh-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.zh-gallery figure {
  margin: 0;
}

.zh-gallery img {
  width: 100%;
  border-radius: var(--zh-radius);
  box-shadow: var(--zh-shadow);
  background: var(--zh-white);
}

.zh-gallery figcaption {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--zh-muted);
}

/* FAQ */
.zh-faq {
  background: var(--zh-bg-soft);
}

.zh-faq-list details {
  border-bottom: 1px solid var(--zh-line);
}

.zh-faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 0;
  font-weight: 600;
  color: var(--zh-brand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.zh-faq-list summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--zh-accent);
  flex-shrink: 0;
}

.zh-faq-list details[open] summary::after {
  content: "–";
}

.zh-faq-list details p {
  margin: 0 0 1.1rem;
  color: var(--zh-muted);
}

/* Reviews */
.zh-reviews-stack {
  display: grid;
  gap: 1.5rem;
}

.zh-review {
  padding: 0 0 1.5rem;
  border-bottom: 1px solid var(--zh-line);
}

.zh-review:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.zh-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.zh-stars {
  color: var(--zh-accent-deep);
  font-size: 0.9rem;
}

.zh-stars b {
  color: var(--zh-brand);
  margin-left: 0.25rem;
}

.zh-review-head small {
  color: var(--zh-muted);
}

.zh-review h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--zh-brand);
}

.zh-review p {
  margin: 0 0 0.85rem;
  color: var(--zh-muted);
}

.zh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.zh-tags mark {
  background: rgba(13, 148, 136, 0.1);
  color: var(--zh-brand);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}

.zh-tags .sm6afe-tc {
  background: rgba(91, 102, 117, 0.1);
  color: var(--zh-muted);
}

/* Changelog */
.zh-timeline {
  display: grid;
  gap: 1.75rem;
}

.zh-log-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.zh-log-head strong {
  font-size: 1.1rem;
  color: var(--zh-brand);
}

.zh-log-head time {
  color: var(--zh-muted);
  font-size: 0.9rem;
}

.zh-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--zh-accent-deep);
  background: rgba(13, 148, 136, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.zh-log h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--zh-ink);
}

.zh-log ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--zh-muted);
}

.zh-log li + li {
  margin-top: 0.35rem;
}

/* About */
.zh-about-body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--zh-display);
  font-size: 1.5rem;
  color: var(--zh-brand);
}

.zh-slogan {
  color: var(--zh-muted);
  margin: 0 0 1rem;
}

.zh-about-body > p {
  color: var(--zh-muted);
}

.zh-about-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--zh-line);
  border-bottom: 1px solid var(--zh-line);
}

.zh-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--zh-muted);
  margin-bottom: 0.2rem;
}

.zh-value {
  font-weight: 700;
  color: var(--zh-brand);
}

.zh-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.zh-certs .sm6afe-cert {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--zh-brand);
  background: var(--zh-bg-soft);
  border: 1px solid var(--zh-line);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
}

.zh-milestones h4 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--zh-brand);
}

.zh-milestones > div {
  color: var(--zh-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--zh-line);
}

.zh-milestones > div:last-child {
  border-bottom: 0;
}

/* CTA band */
.zh-cta-band {
  background:
    linear-gradient(135deg, #0B3D3A 0%, #0F766E 55%, #0D9488 100%);
  color: #fff;
  padding: 3rem 0;
}

.zh-cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.zh-cta-band-title {
  margin: 0;
  font-family: var(--zh-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  max-width: 20ch;
}

.zh-cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Discussion */
.zh-disc-form {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: start;
  margin-bottom: 1.75rem;
}

.sm6afe-disc-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--zh-bg-soft);
}

#smDiscInput {
  width: 100%;
  min-height: 72px;
  resize: vertical;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--zh-line);
  border-radius: var(--zh-radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--zh-white);
  color: var(--zh-ink);
}

#smDiscInput:focus {
  outline: 2px solid rgba(13, 148, 136, 0.35);
  border-color: var(--zh-accent);
}

.sm6afe-disc-send {
  padding: 0.65rem 1rem;
  border: none;
  border-radius: var(--zh-radius);
  background: var(--zh-accent);
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.sm6afe-disc-send:hover {
  background: var(--zh-accent-deep);
}

.zh-disc-thread {
  display: grid;
  gap: 1.25rem;
}

.zh-disc-post {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--zh-line);
}

.zh-disc-post:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.sm6afe-disc-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.55rem;
}

.sm6afe-disc-meta {
  display: flex;
  flex-direction: column;
}

.sm6afe-disc-name {
  font-weight: 600;
  color: var(--zh-brand);
  font-size: 0.95rem;
}

.sm6afe-disc-time {
  font-size: 0.8rem;
  color: var(--zh-muted);
}

.sm6afe-disc-body {
  margin: 0 0 0.65rem;
  color: var(--zh-muted);
}

.sm6afe-disc-actions {
  display: flex;
  gap: 0.5rem;
}

.sm6afe-disc-like,
.sm6afe-disc-reply-btn {
  border: 1px solid var(--zh-line);
  background: var(--zh-white);
  color: var(--zh-muted);
  font-family: inherit;
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
}

.sm6afe-disc-like:hover,
.sm6afe-disc-reply-btn:hover {
  color: var(--zh-brand);
  border-color: var(--zh-accent);
}

/* Footer */
.zh-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--zh-line);
  background: var(--zh-white);
}

.zh-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.zh-footer p {
  margin: 0;
  color: var(--zh-muted);
  font-size: 0.9rem;
  max-width: 100%;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal-links a {
  color: var(--zh-brand);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-legal-links a:hover {
  color: var(--zh-accent-deep);
}

.footer-age {
  font-size: 0.8rem;
  color: var(--zh-muted);
  line-height: 1.5;
}

/* Redirect overlay */
.sm6afe-ro-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(28, 36, 48, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.sm6afe-ro-overlay.active {
  display: flex;
}

.sm6afe-ro-card {
  border-radius: 16px;
  padding: 36px 32px 28px;
  text-align: center;
  box-shadow: var(--zh-shadow);
  max-width: 320px;
  width: 90%;
  background: var(--zh-white);
  animation: zhRoIn 0.35s ease;
}

@keyframes zhRoIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.sm6afe-ro-ring {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

.sm6afe-ro-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.sm6afe-ro-ring #smRoArc {
  transition: stroke-dashoffset 0.3s linear;
}

.sm6afe-ro-ring span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--zh-brand);
  font-family: var(--zh-font);
}

#smRoText {
  font-size: 15px;
  margin: 0 0 18px;
  line-height: 1.5;
  color: var(--zh-muted);
}

#smRoSkip {
  display: inline-block;
  padding: 10px 28px;
  color: #fff;
  border: none;
  border-radius: var(--zh-radius);
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  background: var(--zh-accent);
  cursor: pointer;
}

#smRoSkip:hover {
  background: var(--zh-accent-deep);
}

/* Responsive */
@media (min-width: 768px) {
  .zh-product-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .zh-meta {
    border-top: 0;
    padding-top: 0;
    border-left: 1px solid var(--zh-line);
    padding-left: 1.75rem;
  }

  .zh-reviews-stack {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .zh-nav {
    display: flex;
    margin-left: auto;
  }

  #mbt {
    display: none;
  }

  .zh-header-actions {
    margin-left: 0.5rem;
  }

  .zh-hero-copy {
    padding: 5.5rem 0 5rem;
  }
}

@media (max-width: 1023px) {
  .zh-nav {
    display: none;
    position: fixed;
    top: var(--zh-header-h);
    left: 0;
    right: 0;
    background: var(--zh-white);
    border-bottom: 1px solid var(--zh-line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1rem;
    gap: 0.15rem;
    box-shadow: var(--zh-shadow);
  }

  .zh-nav.open {
    display: flex;
  }

  .zh-nav a {
    padding: 0.85rem 0.75rem;
  }

  .zh-header-actions .zh-btn-ghost,
  .zh-header-actions .zh-btn-solid {
    display: none;
  }
}

@media (max-width: 767px) {
  .zh-gallery {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-inline: auto;
  }

  .zh-about-meta {
    grid-template-columns: 1fr;
  }

  .zh-disc-form {
    grid-template-columns: auto 1fr;
  }

  .sm6afe-disc-send {
    grid-column: 1 / -1;
  }

  .zh-cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .zh-section {
    padding: 3.25rem 0;
  }
}

/* —— Alternatif page —— */
.zh-page-hero {
  padding: 3rem 0 2rem;
}

.zh-page-hero--split {
  padding-bottom: 1.5rem;
}

.zh-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--zh-muted);
}

.zh-crumb a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

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

.zh-alt-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.zh-page-hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--zh-display);
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--zh-brand);
  max-width: 18ch;
  animation: zhHeroIn 0.65s ease both;
}

.zh-page-hero .zh-lead {
  margin: 0 0 1.15rem;
  color: var(--zh-muted);
  max-width: 48ch;
  font-size: 1.05rem;
  animation: zhHeroIn 0.65s ease 0.08s both;
}

.zh-page-hero .zh-lead strong {
  color: var(--zh-brand);
  font-weight: 600;
}

.zh-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--zh-muted);
  animation: zhHeroIn 0.65s ease 0.1s both;
}

.zh-meta-line li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.zh-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--zh-accent);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.18);
}

.zh-page-hero .zh-hero-cta {
  animation: zhHeroIn 0.65s ease 0.14s both;
}

.zh-shot {
  margin: 0;
}

.zh-alt-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.zh-alt-hero-visual .zh-shot {
  width: 100%;
  max-width: 220px;
  margin-inline: auto;
  padding: 1.75rem 1.25rem;
  text-align: center;
  background: #0B1220;
  border-radius: 14px;
}

.zh-alt-hero-visual .zh-shot img {
  width: 140px;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  border-radius: 16px;
  box-shadow: none;
  background: transparent;
}

.zh-alt-hero-visual .zh-shot figcaption {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  max-width: 28ch;
}

.zh-shot img {
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  border-radius: 14px;
  box-shadow: var(--zh-shadow);
  background:
    radial-gradient(circle at 30% 20%, rgba(13, 148, 136, 0.18), transparent 55%),
    var(--zh-white);
}

.zh-shot--banner img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  background: #0a0a0a;
}

.zh-shot figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--zh-muted);
  text-align: center;
  max-width: 36ch;
  margin-inline: auto;
}

.zh-shot--inline {
  margin-top: 2rem;
}

.zh-shot--inline img {
  max-width: 280px;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.zh-note {
  margin: 0 auto 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--zh-accent);
  background: rgba(13, 148, 136, 0.08);
  color: var(--zh-ink);
  font-size: 0.95rem;
  border-radius: 0 var(--zh-radius) var(--zh-radius) 0;
}

.zh-note a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-note a:hover {
  text-decoration: underline;
}

.zh-meter-wrap {
  margin-bottom: 1rem;
}

.zh-meter {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--zh-line);
  border-bottom: 1px solid var(--zh-line);
}

.zh-meter-cell {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.zh-meter-cell em {
  font-style: normal;
  font-family: var(--zh-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--zh-brand);
  line-height: 1.1;
}

.zh-meter-cell span {
  font-size: 0.8rem;
  color: var(--zh-muted);
}

.zh-alt-list {
  display: grid;
  gap: 0;
}

.zh-alt-row {
  display: grid;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--zh-line);
}

.zh-alt-row:first-child {
  border-top: 1px solid var(--zh-line);
}

.zh-alt-row--prime {
  background: linear-gradient(90deg, rgba(13, 148, 136, 0.06), transparent 70%);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: var(--zh-radius);
}

.zh-alt-row-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.zh-alt-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--zh-accent-deep);
}

.zh-alt-row h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--zh-brand);
}

.zh-alt-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--zh-accent-deep);
  background: rgba(13, 148, 136, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.zh-alt-url {
  display: block;
  margin: 0.5rem 0;
  padding: 0.55rem 0.75rem;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.85rem;
  color: var(--zh-brand);
  background: var(--zh-bg-soft);
  border-radius: 8px;
  word-break: break-all;
}

.zh-alt-row p {
  margin: 0 0 0.75rem;
  color: var(--zh-muted);
  font-size: 0.95rem;
}

.zh-alt-row p a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-alt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  padding: 0;
  list-style: none;
}

.zh-alt-tags li {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--zh-muted);
  background: var(--zh-white);
  border: 1px solid var(--zh-line);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.zh-alt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.zh-btn-copy {
  background: var(--zh-white);
  color: var(--zh-brand);
  border: 1px solid var(--zh-line);
  padding: 0.65rem 1rem;
  border-radius: var(--zh-radius);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.zh-btn-copy:hover,
.zh-btn-copy.is-ok {
  border-color: var(--zh-accent);
  color: var(--zh-accent-deep);
}

.zh-compare {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--zh-line);
}

.zh-compare-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--zh-line);
}

.zh-compare-head {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.zh-compare-head .zh-compare-bad,
.zh-compare-head .zh-compare-good {
  font-weight: 700;
}

.zh-compare-label {
  font-weight: 700;
  color: var(--zh-brand);
  font-size: 0.9rem;
}

.zh-compare-bad {
  color: #9A3412;
  font-size: 0.9rem;
}

.zh-compare-good {
  color: var(--zh-accent-deep);
  font-size: 0.9rem;
}

.zh-compare-good a {
  color: var(--zh-accent-deep);
  font-weight: 600;
  text-decoration: underline;
}

.zh-prose-stack {
  display: grid;
  gap: 1rem;
}

.zh-prose-stack p {
  margin: 0;
  color: var(--zh-muted);
}

.zh-prose-stack a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-prose-stack strong {
  color: var(--zh-brand);
}

.zh-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: zh-step;
  display: grid;
  gap: 1.25rem;
}

.zh-steps li {
  counter-increment: zh-step;
  position: relative;
  padding-left: 2.75rem;
}

.zh-steps li::before {
  content: counter(zh-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--zh-accent-deep);
  letter-spacing: 0.04em;
}

.zh-steps b {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--zh-brand);
}

.zh-steps p {
  margin: 0;
  color: var(--zh-muted);
}

.zh-steps a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-section-head--spaced {
  margin-top: 2.5rem;
}

.zh-dns-grid {
  display: grid;
  gap: 0.85rem;
}

.zh-dns-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--zh-line);
}

.zh-dns-item strong {
  display: block;
  color: var(--zh-brand);
  margin-bottom: 0.2rem;
}

.zh-dns-item code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.95rem;
  color: var(--zh-accent-deep);
}

.zh-dns-item span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: var(--zh-muted);
}

.zh-isp-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.zh-isp-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--zh-line);
  font-size: 0.9rem;
}

.zh-isp-name {
  font-weight: 700;
  color: var(--zh-brand);
}

.zh-isp-sym {
  color: var(--zh-muted);
}

.zh-isp-fix {
  color: var(--zh-accent-deep);
  font-weight: 500;
}

.zh-trust-bar {
  padding: 1.25rem 0;
  background: var(--zh-brand);
  color: rgba(255, 255, 255, 0.88);
}

.zh-trust-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.zh-playbook {
  display: grid;
  gap: 2rem;
}

.zh-playbook-col h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  color: var(--zh-brand);
}

.zh-playbook-col ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--zh-muted);
  display: grid;
  gap: 0.45rem;
}

.zh-playbook-col a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-voices {
  display: grid;
  gap: 1.5rem;
}

.zh-quote {
  margin: 0;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid var(--zh-line);
}

.zh-quote:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.zh-quote blockquote {
  margin: 0 0 0.65rem;
  font-family: var(--zh-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--zh-brand);
}

.zh-quote figcaption {
  font-size: 0.85rem;
  color: var(--zh-muted);
}

.zh-faq-list a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-outro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.zh-outro-links a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-outro-links a:hover {
  text-decoration: underline;
}

.zh-nav a[aria-current="page"] {
  color: var(--zh-brand);
  background: rgba(13, 148, 136, 0.1);
}

@media (min-width: 768px) {
  .zh-alt-hero-grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 3rem;
  }

  .zh-meter {
    grid-template-columns: repeat(4, 1fr);
  }

  .zh-alt-row {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .zh-alt-row--prime {
    margin: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .zh-alt-actions {
    flex-direction: column;
    min-width: 120px;
  }

  .zh-compare-row {
    grid-template-columns: 0.9fr 1.2fr 1.2fr;
    gap: 1rem;
    align-items: start;
  }

  .zh-dns-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .zh-dns-item {
    border-bottom: 0;
    padding: 0;
  }

  .zh-isp-list li {
    grid-template-columns: 1fr 1.2fr 1.4fr;
    gap: 1rem;
    align-items: baseline;
  }

  .zh-playbook {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .zh-voices {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .zh-shot img {
    max-width: 360px;
  }

  .zh-alt-hero-visual .zh-shot {
    max-width: 240px;
    padding: 2rem 1.5rem;
  }

  .zh-alt-hero-visual .zh-shot img {
    width: 160px;
  }

  .zh-shot--banner img {
    max-width: 100%;
  }
}

/* —— Unduh page —— */
.zh-pkg-grid {
  display: grid;
  gap: 1.25rem;
}

.zh-pkg {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--zh-line);
}

.zh-pkg:first-child {
  border-top: 1px solid var(--zh-line);
}

.zh-pkg--prime {
  background: linear-gradient(90deg, rgba(13, 148, 136, 0.06), transparent 70%);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: var(--zh-radius);
}

.zh-pkg-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--zh-accent-deep);
  background: rgba(13, 148, 136, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.zh-pkg h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
  color: var(--zh-brand);
}

.zh-pkg-meta {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  color: var(--zh-muted);
  font-size: 0.95rem;
}

.zh-pkg-meta strong {
  color: var(--zh-brand);
  font-weight: 600;
  margin-right: 0.35rem;
}

.zh-hash-box {
  margin: 1rem 0 0.75rem;
  padding: 1rem;
  background: var(--zh-bg-soft);
  border-radius: var(--zh-radius);
}

.zh-hash-panel {
  max-width: 760px;
}

.zh-hash-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--zh-muted);
  margin-bottom: 0.55rem;
}

.zh-hash-row {
  display: grid;
  gap: 0.75rem;
}

.zh-hash-value,
.dxund-hash-value {
  display: block;
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--zh-brand);
  word-break: break-all;
}

.zh-hash-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--zh-muted);
}

.zh-hash-note a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-ready-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.15rem;
}

.zh-ready-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.zh-ready-list li > span {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--zh-accent-deep);
  letter-spacing: 0.04em;
}

.zh-ready-list strong {
  display: block;
  color: var(--zh-brand);
  margin-bottom: 0.2rem;
}

.zh-ready-list p {
  margin: 0;
  color: var(--zh-muted);
  font-size: 0.95rem;
}

.zh-ready-list a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-channel-grid {
  display: grid;
  gap: 1.25rem;
}

.zh-channel-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--zh-brand);
}

.zh-channel-item h3 a {
  color: var(--zh-accent-deep);
}

.zh-channel-item p {
  margin: 0;
  color: var(--zh-muted);
}

.zh-exclude {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--zh-muted);
  display: grid;
  gap: 0.45rem;
}

.zh-after-flow {
  display: grid;
  gap: 0.85rem;
}

.zh-after-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--zh-line);
}

.zh-after-step > span {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(13, 148, 136, 0.12);
  color: var(--zh-accent-deep);
  font-weight: 700;
  font-size: 0.85rem;
}

.zh-after-step p {
  margin: 0;
  color: var(--zh-muted);
}

.zh-after-step strong {
  color: var(--zh-brand);
}

.zh-after-step a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

@media (min-width: 768px) {
  .zh-pkg-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .zh-pkg,
  .zh-pkg:first-child {
    border: 0;
    padding: 0;
  }

  .zh-pkg--prime {
    margin: 0;
    padding: 1.25rem;
  }

  .zh-pkg:not(.zh-pkg--prime) {
    padding: 1.25rem 0 1.25rem 0.5rem;
    border-left: 1px solid var(--zh-line);
    padding-left: 1.5rem;
  }

  .zh-hash-row {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .zh-channel-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .zh-after-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .zh-after-step {
    border-bottom: 0;
    padding: 0;
  }
}

/* —— Masuk page —— */
.zh-gates {
  display: grid;
  gap: 1.5rem;
}

.zh-gate {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--zh-line);
}

.zh-gate:first-child {
  border-top: 1px solid var(--zh-line);
}

.zh-gate--prime {
  background: linear-gradient(90deg, rgba(13, 148, 136, 0.06), transparent 70%);
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: var(--zh-radius);
}

.zh-gate-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--zh-accent-deep);
  background: rgba(13, 148, 136, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.zh-gate h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  color: var(--zh-brand);
}

.zh-gate > p {
  margin: 0 0 0.85rem;
  color: var(--zh-muted);
}

.zh-gate-list {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  color: var(--zh-muted);
  font-size: 0.95rem;
}

.zh-gate-list li {
  position: relative;
  padding-left: 1.1rem;
}

.zh-gate-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--zh-accent);
}

.zh-portal-note {
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
  color: var(--zh-muted);
}

.zh-portal-note a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-tracks {
  display: grid;
  gap: 1.5rem;
}

.zh-track h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--zh-brand);
}

.zh-track ol {
  margin: 0 0 0.75rem;
  padding-left: 1.2rem;
  color: var(--zh-muted);
  display: grid;
  gap: 0.4rem;
}

.zh-track-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--zh-accent-deep);
}

.zh-check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.zh-check-grid span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--zh-brand);
  background: var(--zh-bg-soft);
  border: 1px solid var(--zh-line);
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
}

.zh-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

.zh-benefits li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--zh-line);
}

.zh-benefits strong {
  display: block;
  color: var(--zh-brand);
  margin-bottom: 0.2rem;
}

.zh-benefits p {
  margin: 0;
  color: var(--zh-muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .zh-gates {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .zh-gate,
  .zh-gate:first-child {
    border: 0;
    padding: 0;
  }

  .zh-gate--prime {
    margin: 0;
    padding: 1.25rem;
  }

  .zh-gate:not(.zh-gate--prime) {
    padding: 1.25rem 0 1.25rem 1.5rem;
    border-left: 1px solid var(--zh-line);
  }

  .zh-tracks {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .zh-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
  }

  .zh-benefits li {
    border-bottom: 0;
    padding: 0;
  }
}

/* —— Panduan page —— */
.zh-dl-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--zh-line);
  border-bottom: 1px solid var(--zh-line);
  margin-bottom: 0.5rem;
}

.zh-dl-band h2 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  color: var(--zh-brand);
}

.zh-dl-band p {
  margin: 0;
  color: var(--zh-muted);
  font-size: 0.95rem;
  max-width: 42ch;
}

.zh-scenario-grid {
  display: grid;
  gap: 1.5rem;
}

.zh-scenario {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--zh-line);
}

.zh-scenario:first-child {
  border-top: 1px solid var(--zh-line);
}

.zh-scenario-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--zh-accent-deep);
  background: rgba(13, 148, 136, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.zh-scenario h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  color: var(--zh-brand);
}

.zh-scenario > p {
  margin: 0 0 0.75rem;
  color: var(--zh-muted);
  font-size: 0.95rem;
}

.zh-scenario ol {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--zh-muted);
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.zh-scenario a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-gloss {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.zh-gloss > div {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--zh-line);
}

.zh-gloss dt {
  font-weight: 700;
  color: var(--zh-brand);
  margin-bottom: 0.25rem;
}

.zh-gloss dd {
  margin: 0;
  color: var(--zh-muted);
  font-size: 0.95rem;
}

.zh-verify-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.15rem;
}

.zh-verify-list li strong {
  display: block;
  color: var(--zh-brand);
  margin-bottom: 0.25rem;
}

.zh-verify-list p {
  margin: 0;
  color: var(--zh-muted);
  font-size: 0.95rem;
}

.zh-verify-list a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-myth-grid {
  display: grid;
  gap: 0.85rem;
}

.zh-myth {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--zh-line);
}

.zh-myth-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
}

.zh-myth-label--no {
  color: #9A3412;
  background: rgba(154, 52, 18, 0.1);
}

.zh-myth-label--ok {
  color: var(--zh-accent-deep);
  background: rgba(13, 148, 136, 0.12);
}

.zh-myth p:last-child {
  margin: 0;
  color: var(--zh-muted);
  font-size: 0.95rem;
}

.zh-danger {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--zh-muted);
  display: grid;
  gap: 0.45rem;
}

.zh-danger code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.85em;
  color: var(--zh-brand);
}

@media (min-width: 768px) {
  .zh-scenario-grid {
    grid-template-columns: 1fr;
  }

  .zh-gloss {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
  }

  .zh-gloss > div {
    border-bottom: 0;
    padding: 0;
  }

  .zh-myth-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
  }

  .zh-myth {
    border-bottom: 0;
    padding: 0.5rem 0;
  }
}

@media (min-width: 1024px) {
  .zh-scenario-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .zh-scenario,
  .zh-scenario:first-child {
    border: 0;
    padding: 0;
  }
}

/* —— Lokasi / Wilayah page —— */
.zh-section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.35rem;
}

.zh-section-head-row .zh-section-head {
  margin-bottom: 0;
}

.zh-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--zh-accent-deep);
  background: rgba(13, 148, 136, 0.12);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  white-space: nowrap;
}

.zh-coverage {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.15rem;
}

.zh-cov-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.zh-cov-name {
  font-weight: 700;
  color: var(--zh-brand);
}

.zh-cov-score {
  font-weight: 700;
  color: var(--zh-accent-deep);
  font-variant-numeric: tabular-nums;
}

.zh-cov-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.12);
  overflow: hidden;
  margin-bottom: 0.45rem;
}

.zh-cov-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--zh-accent), var(--zh-accent-deep));
}

.zh-cov--var .zh-cov-bar i {
  background: linear-gradient(90deg, #5B8FA8, #3D6F86);
}

.zh-cov > p {
  margin: 0;
  color: var(--zh-muted);
  font-size: 0.95rem;
}

.zh-access-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--zh-line);
  border-bottom: 1px solid var(--zh-line);
}

.zh-access-band h2 {
  margin: 0 0 0.3rem;
  font-size: 1.15rem;
  color: var(--zh-brand);
}

.zh-access-band > div:first-child p {
  margin: 0;
  color: var(--zh-muted);
  font-size: 0.95rem;
  max-width: 48ch;
}

.zh-access-band a:not(.zh-btn) {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-access-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.zh-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 0.5rem;
}

.zh-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 560px;
}

.zh-table th,
.zh-table td {
  text-align: left;
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--zh-line);
  vertical-align: top;
  color: var(--zh-muted);
}

.zh-table th {
  color: var(--zh-brand);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.zh-table td strong {
  display: block;
  color: var(--zh-brand);
  font-weight: 700;
}

.zh-table td small {
  display: block;
  margin-top: 0.15rem;
  color: var(--zh-muted);
  font-size: 0.8rem;
}

.zh-tz-grid {
  display: grid;
  gap: 1.25rem;
}

.zh-tz {
  padding: 1rem 0;
  border-bottom: 1px solid var(--zh-line);
}

.zh-tz:first-child {
  border-top: 1px solid var(--zh-line);
}

.zh-tz h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: var(--zh-brand);
}

.zh-tz h3 small {
  font-weight: 600;
  color: var(--zh-accent-deep);
  margin-left: 0.35rem;
}

.zh-tz-cities {
  margin: 0 0 0.45rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--zh-accent-deep);
}

.zh-tz > p:last-child {
  margin: 0;
  color: var(--zh-muted);
  font-size: 0.95rem;
}

.zh-diag {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--zh-muted);
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
}

.zh-diag strong {
  color: var(--zh-brand);
}

.zh-diag a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
}

.zh-pill {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--zh-brand);
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid var(--zh-line);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
}

.zh-pills-note {
  margin: 0;
  color: var(--zh-muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .zh-coverage {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
  }

  .zh-tz-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .zh-tz,
  .zh-tz:first-child {
    border: 0;
    padding: 0;
  }
}

/* —— Home editorial / path —— */
.zh-intro {
  padding: 2.5rem 0 0;
}

.zh-intro .zh-prose-stack {
  max-width: 62ch;
}

.zh-intro .zh-prose-stack p {
  margin: 0 0 0.85rem;
  color: var(--zh-muted);
  font-size: 1.02rem;
}

.zh-intro .zh-prose-stack a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-editorial-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.zh-editorial-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--zh-line);
}

.zh-editorial-item:first-child {
  border-top: 1px solid var(--zh-line);
}

.zh-editorial-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: var(--zh-brand);
}

.zh-editorial-item p {
  margin: 0;
  color: var(--zh-muted);
  font-size: 0.95rem;
}

.zh-editorial-item a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-editorial-note {
  margin: 1.5rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--zh-line);
  color: var(--zh-muted);
  font-size: 0.95rem;
}

.zh-path-grid {
  display: grid;
  gap: 1.25rem;
}

.zh-path-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--zh-line);
}

.zh-path-item:first-child {
  border-top: 1px solid var(--zh-line);
}

.zh-path-num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--zh-accent-deep);
  background: rgba(13, 148, 136, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.45rem;
}

.zh-path-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  color: var(--zh-brand);
}

.zh-path-item ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--zh-muted);
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.zh-path-item a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-features a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-fuse {
  display: grid;
  gap: 1.75rem;
  align-items: start;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--zh-line);
}

.zh-fuse--flip {
  direction: ltr;
}

.zh-fuse-copy h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--zh-brand);
}

.zh-fuse-copy p {
  margin: 0 0 0.75rem;
  color: var(--zh-muted);
  font-size: 0.98rem;
}

.zh-fuse-copy p:last-child {
  margin-bottom: 0;
}

.zh-fuse-copy a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-fuse-shot,
.zh-product-visual {
  margin: 0;
  width: min(100%, 288px);
  justify-self: center;
}

.zh-fuse-shot img,
.zh-product-visual img {
  display: block;
  width: 100%;
  max-width: 288px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  border: 1px solid rgba(11, 61, 58, 0.08);
  box-shadow: 0 10px 28px rgba(11, 61, 58, 0.1);
  background: var(--zh-white);
}

.zh-fuse-shot figcaption,
.zh-product-visual figcaption {
  margin: 0.7rem 0 0;
  padding: 0 0.25rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--zh-muted);
  text-align: center;
}

@media (min-width: 768px) {
  .zh-editorial-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  .zh-editorial-item,
  .zh-editorial-item:first-child {
    border: 0;
    padding: 0;
  }

  .zh-path-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .zh-path-item,
  .zh-path-item:first-child {
    border: 0;
    padding: 0;
  }

  .zh-fuse {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
  }

  .zh-fuse--flip {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .zh-fuse--flip .zh-fuse-shot {
    order: -1;
    justify-self: start;
  }

  .zh-fuse:not(.zh-fuse--flip) .zh-fuse-shot {
    justify-self: end;
  }

  .zh-product-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .zh-product-visual {
    justify-self: end;
    padding-top: 0.15rem;
  }

  .zh-product-grid .zh-meta {
    grid-column: 1 / -1;
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid var(--zh-line);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
}

/* —— Legal pages (syarat / privasi) —— */
.zh-legal-hero {
  padding: calc(var(--zh-header-h) + 2.5rem) 0 2rem;
}

.zh-legal-hero h1 {
  margin: 0.5rem 0 0.75rem;
  font-family: var(--zh-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.2;
  color: var(--zh-brand);
  font-weight: 700;
  max-width: 22ch;
}

.zh-legal-hero .zh-lead {
  margin: 0;
  color: var(--zh-muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.zh-legal-meta {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--zh-muted);
}

.zh-legal-meta time {
  font-weight: 600;
  color: var(--zh-brand);
}

.zh-legal-toc {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.zh-legal-toc a {
  color: var(--zh-accent-deep);
  font-weight: 600;
  font-size: 0.95rem;
}

.zh-legal-toc a:hover {
  text-decoration: underline;
}

.zh-legal-article {
  display: grid;
  gap: 2rem;
}

.zh-legal-block {
  padding-top: 0.25rem;
  border-top: 1px solid var(--zh-line);
}

.zh-legal-block:first-child {
  border-top: 0;
  padding-top: 0;
}

.zh-legal-block h2 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  color: var(--zh-brand);
  scroll-margin-top: calc(var(--zh-header-h) + 1rem);
}

.zh-legal-block p,
.zh-legal-block li {
  color: var(--zh-muted);
  font-size: 0.98rem;
}

.zh-legal-block p {
  margin: 0 0 0.75rem;
}

.zh-legal-block p:last-child {
  margin-bottom: 0;
}

.zh-legal-block ul {
  margin: 0 0 0.75rem;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.4rem;
}

.zh-legal-block a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}

.zh-legal-back {
  margin-top: 0.5rem;
}

.zh-legal-back a {
  color: var(--zh-accent-deep);
  font-weight: 600;
}
