:root {
  --blue-700: #173c8a;
  --blue-600: #2158d6;
  --blue-100: #e8effd;
  --orange-500: #fd8100;
  --orange-600: #fd9f3f;
  --orange-100: #feeee0;
  --ink-900: #14161f;
  --body-600: #5b6270;
  --bg: #f6f7f9;
  --white: #ffffff;
  --line: #e6e8ec;
  --red-600: #c0362c;
  --red-100: #fbe4e2;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  overflow-x: hidden;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 76px; /* ruang untuk info-bar fixed di atas header */
}

.wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 32px 44px 64px;
}

/* ---------- Information Bar (marquee) ---------- */
.info-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 41;
  background: var(--ink-900);
  color: #f4f5f7;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.info-track {
  display: inline-flex;
  width: max-content;
  padding: 10px 0;
  animation: marquee 32s linear infinite;
}
/* marquee tetap berjalan meski kursor diarahkan ke atasnya */
.info-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0 34px;
  letter-spacing: 0.01em;
}
.info-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
  flex-shrink: 0;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .info-track {
    animation: none;
  }
}

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 36px; /* turun sebesar tinggi info-bar biar tidak tumpang tindih */
  z-index: 40;
  width: 100%;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 14px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 26px;
  width: auto;
  display: block;
}
nav {
  flex: 1;
} /* menu dikosongkan sesuai arahan */
.btn-app {
  background: var(--blue-600);
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 9px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--blue-600);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.btn-app:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(33, 88, 214, 0.28);
}

/* ---------- Hero grid ---------- */
.hero {
  display: grid;
  grid-template-columns: minmax(300px, 460px) 1fr;
  gap: 24px;
  align-items: center;
}

h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(2.3rem, 3.2vw + 1rem, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  max-width: 520px;
  margin-bottom: 26px;
  margin-top: 60px;
  min-height: calc(3 * 1.08em);
}
h1 .hl {
  color: var(--orange-600);
}

/* decorative + functional slide indicator, styled after reference's mixed pill/dot row */
.indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}
.indicator .seg {
  height: 12px;
  border-radius: 999px;
  background: var(--ink-900);
  cursor: pointer;
  transition: all 0.2s ease;
}
.indicator .seg.active {
  width: 38px;
  background: var(--orange-500);
}
.indicator .seg:not(.active) {
  width: 12px;
  opacity: 0.85;
}

p.lede {
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--body-600);
  max-width: 440px;
  margin-bottom: 34px;
  min-height: 3.3em;
}

.btn-primary {
  display: inline-block;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 16px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--blue-600);
  box-shadow: 0 12px 26px rgba(33, 88, 214, 0.3);
  transition: transform 0.15s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
}

/* ---------- Visual column ---------- */
.visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-slot {
  position: absolute;
  width: 500px;
  height: 500px;
  left: calc(50% - 255px);
  top: 0;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
}
.photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.photo-img.is-visible {
  opacity: 1;
}
.hero-fade {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.hero-fade.is-switching {
  opacity: 0;
  transform: translateY(8px);
}
.photo-placeholder {
  position: absolute;
  inset: 0;
  border: 2px dashed #c7cdd6;
  border-radius: 20px;
  background: #eef0f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #8b94a3;
  text-align: center;
  padding: 20px;
  transition: opacity 0.25s ease;
}
.photo-placeholder.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.photo-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: #8b94a3;
}
.photo-placeholder p {
  font-size: 0.85rem;
  font-weight: 600;
  max-width: 230px;
  line-height: 1.4;
}
.photo-placeholder span {
  font-size: 0.72rem;
  color: #a7aeb9;
}

/* Panel "Ekosistem Brand": animasi orbit tampil menggantikan foto/placeholder di slide ini saja */
#brandOrbit {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#brandOrbit.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* photoImg.src diisi otomatis oleh JS sesuai slide aktif (assets/images/hero-1.png, hero-2.png, hero-3.png).
     Jika file belum ada, kotak placeholder di atas tetap tampil sebagai penanda. */

/* pill cluster, top right — sekaligus berfungsi sebagai saklar slide */
.pill-stack {
  margin-top: 40px;
  position: absolute;
  top: 10px;
  right: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 3;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 11px 22px 11px 16px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.pill .dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.pill .dot svg {
  width: 11px;
  height: 11px;
}
.pill.outline {
  background: var(--white);
  color: var(--body-600);
  border-color: var(--line);
  box-shadow: 0 2px 6px rgba(20, 22, 31, 0.04);
}
.pill.outline .dot {
  background: var(--bg);
}
.pill.outline .dot svg {
  stroke: var(--body-600);
}
.pill.outline:hover {
  border-color: var(--orange-500);
  color: var(--ink-900);
  transform: translateX(-2px);
}
.pill.active {
  background: var(--orange-500);
  color: var(--white);
  box-shadow: 0 10px 22px -6px rgba(219, 127, 44, 0.55);
  transform: translateX(-4px);
}
.pill.active .dot {
  background: rgba(255, 255, 255, 0.25);
}
.pill.active .dot svg {
  stroke: var(--white);
}

/* floating info card, overlapping bottom of blob — like Interactive Engagement */
.float-card {
  position: absolute;
  right: -8px;
  bottom: 150px;
  width: 236px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 16px 15px;
  box-shadow: 0 18px 36px -10px rgba(20, 22, 31, 0.18);
  z-index: 4;
}
.float-card .row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.float-card .ic {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--orange-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.float-card .ic svg {
  width: 17px;
  height: 17px;
}
.float-card h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.2;
}
.float-card p {
  font-size: 0.77rem;
  line-height: 1.5;
  color: var(--body-600);
}

/* ---------- Footer ---------- */
footer {
  background: var(--white);

  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -100px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    var(--orange-100),
    transparent 70%
  );
  pointer-events: none;
}
footer::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    var(--blue-100),
    transparent 70%
  );
  pointer-events: none;
}

.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 44px;
  position: relative;
  z-index: 1;
}

/* CTA full-width di atas, supaya tidak ada mismatch tinggi dengan kolom lain */
.footer-cta {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 2.4vw + 1rem, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  max-width: 560px;
}
.footer-heading .hl {
  color: var(--orange-600);
}

/* grid link, pakai fr supaya selalu pas mengikuti lebar container */
.footer-links-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(5, 1fr);
  gap: 28px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}
.footer-col-brand {
  padding-right: 12px;
}
.footer-logo {
  display: block;
  height: 24px;
  width: auto;
  margin-bottom: 14px;
}
.footer-col-brand p {
  color: var(--body-600);
  font-size: 0.86rem;
  line-height: 1.6;
  max-width: 230px;
}

.footer-col h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--body-600);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a {
  color: var(--ink-900);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.87rem;
  transition: color 0.15s ease;
}
.footer-col a:hover {
  color: var(--orange-500);
}
.footer-col a.is-active {
  color: var(--orange-500);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-900);
  transition:
    background 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease;
}
.footer-social a:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-bottom {
  padding: 24px 0;
}
.footer-copyright {
  margin-bottom: 40px;
  font-size: 0.8rem;
  color: #8b94a3;
  font-weight: 500;
}

@media (max-width: 1050px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 36px;
  }
  .footer-col-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
  .footer-col-brand p {
    max-width: 420px;
  }
}
@media (max-width: 640px) {
  .header-inner {
    padding: 10px 24px;
  }
  .logo img {
    height: 22px;
  }
  .btn-app {
    padding: 7px 16px;
    font-size: 0.76rem;
  }
  .footer-inner {
    padding: 0 24px;
  }
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 0 36px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Filter Kompetisi ---------- */
.komp-filter {
  background: var(--white);
  padding-top: 30px;
}
.komp-filter-inner {
  max-width: 1360px;
  margin: 0 auto;
}
.komp-filter-inner h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 40px;
  font-weight: 800;
  font-size: clamp(1.7rem, 2.4vw + 1rem, 2.3rem);
  color: var(--ink-900);
  margin-bottom: 12px;
}
.komp-filter-inner > p {
  margin: 40px;
  color: var(--body-600);
  font-size: 0.95rem;
  max-width: 600px;
  margin-bottom: 32px;
}

.komp-cta-secondary {
  color: var(--blue-600);
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.komp-cta-secondary:hover {
  border-color: var(--blue-600);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .komp-cta-secondary {
    transition: none;
  }
  .komp-cta-secondary:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .komp-filter-inner {
    padding: 56px 24px;
  }
}

/* ---------- Papan Pengumuman ---------- */
.papan-pengumuman {
  background: var(--bg);
}
.papan-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 70px 44px;
}
.papan-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
.papan-head h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 2.4vw + 1rem, 2.3rem);
  color: var(--ink-900);
  margin-bottom: 12px;
}
.papan-head > div > p {
  color: var(--body-600);
  font-size: 0.95rem;
  max-width: 600px;
}
.papan-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.papan-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--white);
  color: var(--blue-600);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.papan-nav-btn:hover {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
}

.papan-marquee {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: 44px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}
.papan-marquee.is-dragging {
  cursor: grabbing;
}
.papan-marquee.is-dragging .papan-card {
  pointer-events: none;
}
.papan-track {
  display: flex;
  width: max-content;
  gap: 24px;
  will-change: transform;
}
.papan-card {
  flex: 0 0 320px;
  width: 320px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 32px -20px rgba(20, 22, 31, 0.22);
  padding: 22px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.4s ease;
}
.papan-track.is-entering .papan-card {
  opacity: 0;
  transform: translateX(30px);
}
.papan-track.is-entering .papan-card:nth-child(2) {
  transition-delay: 0.05s;
}
.papan-track.is-entering .papan-card:nth-child(3) {
  transition-delay: 0.1s;
}
.papan-track.is-entering .papan-card:nth-child(4) {
  transition-delay: 0.15s;
}
.papan-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.papan-badge.is-penting {
  background: var(--red-100);
  color: var(--red-600);
}
.papan-badge.is-informasi {
  background: var(--blue-100);
  color: var(--blue-600);
}
.papan-badge.is-pengingat {
  background: var(--orange-100);
  color: var(--orange-600);
}
.papan-badge.is-selesai {
  background: #e7e9ed;
  color: #6b7280;
}
.papan-badge.is-segera {
  background: var(--orange-100);
  color: var(--orange-600);
}
.papan-date {
  color: var(--body-600);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.papan-card h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-900);
  margin-bottom: 10px;
  line-height: 1.35;
}
.papan-ringkasan {
  color: var(--body-600);
  font-size: 0.86rem;
  line-height: 1.5;
  margin-bottom: 16px;
}
.papan-brand {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--body-600);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 12px;
  margin-bottom: 16px;
}
.papan-card .komp-cta-secondary {
  margin-top: auto;
}

@media (hover: hover) and (pointer: fine) {
  .papan-card:hover {
    transform: translateY(-6px);
    border-color: var(--orange-500);
    box-shadow: 0 22px 44px -18px rgba(20, 22, 31, 0.3);
  }
}
@media (prefers-reduced-motion: reduce) {
  .papan-card {
    transition: none;
  }
  .papan-card:hover {
    transform: none;
  }
}

@media (max-width: 640px) {
  .papan-inner {
    padding: 56px 24px;
  }
  .papan-marquee {
    padding-left: 24px;
  }
  .papan-head {
    flex-wrap: wrap;
  }
  .papan-card {
    width: 260px;
  }
}

/* ---------- Detail Pengumuman ---------- */
.pengumuman-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue-600);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.86rem;
  margin: 32px 0 28px;
}
.pengumuman-back:hover {
  text-decoration: underline;
}
.pengumuman-detail {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 96px;
}
.pengumuman-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.pengumuman-detail h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  line-height: 1.3;
  color: var(--ink-900);
  margin-bottom: 22px;
}
.pengumuman-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.pengumuman-brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.pengumuman-brand-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-900);
}
.pengumuman-brand-label {
  font-size: 0.78rem;
  color: var(--body-600);
}
.pengumuman-isi {
  color: var(--body-600);
  font-size: 1.02rem;
  line-height: 1.85;
  white-space: pre-line;
}
.pengumuman-notfound {
  max-width: 480px;
  margin: 96px auto;
  text-align: center;
}
.pengumuman-notfound h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.pengumuman-notfound p {
  color: var(--body-600);
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .pengumuman-detail {
    padding-bottom: 64px;
  }
}

/* ---------- Download App ---------- */
.download-app {
  background: var(--blue-100);
  box-shadow: 0 0 0 100vmax var(--blue-100);
  clip-path: inset(0 -100vmax);
}
.download-app-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
}
.download-copy {
  padding: 70px 0;
}
.download-copy h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw + 1rem, 2.6rem);
  color: var(--ink-900);
  margin: 0 0 16px;
}
.download-copy p {
  color: var(--body-600);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 28px;
}
.google-play-icon {
  width: 30px;
  height: 30px;
  display: block;
  flex-shrink: 0;
}

.store-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 22px;
  text-decoration: none;
  color: var(--ink-900);
  box-shadow: 0 8px 20px -10px rgba(20, 22, 31, 0.25);
}
.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.store-badge small {
  font-size: 11px;
  color: var(--body-600);
}
.store-badge strong {
  font-size: 16px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 48px 0 0;
}
.phone-image {
  width: 100%;
  max-width: 260px;
}
.phone-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 860px) {
  .download-app-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .download-copy {
    padding: 56px 0 0;
  }
  .download-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .download-copy h2 {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
  .store-badges {
    justify-content: center;
  }
  .phone-mockup {
    padding: 32px 0 0;
  }
  .phone-image {
    max-width: 320px;
  }
}

/* ---------- Akses Cepat Peserta ---------- */
.akses-cepat {
  --akses-blue: #155faa;
  --akses-blue-dark: #0d477f;
  --akses-yellow: #fcc910;
  --akses-orange: #fc7801;
  --akses-teal: #15727a;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 82px 0;
  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(252, 201, 16, 0.11) 0 7px,
      transparent 8px
    ),
    radial-gradient(
      circle at 14% 74%,
      rgba(252, 120, 1, 0.07) 0 18px,
      transparent 19px
    ),
    radial-gradient(
      circle at 91% 17%,
      rgba(21, 95, 170, 0.07) 0 12px,
      transparent 13px
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(21, 114, 122, 0.06) 0 25px,
      transparent 26px
    ),
    linear-gradient(180deg, #fffdf7 0%, #fff9e9 100%);
}

.akses-cepat::before,
.akses-cepat::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.akses-cepat::before {
  top: -118px;
  left: -92px;
  width: 280px;
  height: 280px;
  border: 42px solid rgba(252, 201, 16, 0.09);
}

.akses-cepat::after {
  right: -112px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border: 54px solid rgba(21, 95, 170, 0.055);
}

.akses-cepat-inner {
  width: min(100%, 1360px);
  margin-inline: auto;
  padding-inline: 44px;
  box-sizing: border-box;
}

.akses-cepat-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  text-align: center;
}

.akses-cepat-head::before {
  content: none;
  display: none;
}

.akses-cepat-head h2 {
  width: 100%;
  margin: 0;
  font-size: clamp(1.7rem, 2.4vw + 1rem, 2.3rem);
}

.akses-cepat-head p {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.akses-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.akses-item {
  --akses-accent: var(--akses-blue);
  --akses-soft: rgba(21, 95, 170, 0.09);
  --akses-border: rgba(21, 95, 170, 0.12);
  position: relative;
  display: flex;
  min-height: 148px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  padding: 21px 58px 21px 21px;
  border: 1px solid var(--akses-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px -34px rgba(13, 71, 127, 0.58);
  color: #20384e;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.akses-item:nth-child(4n + 2) {
  --akses-accent: var(--akses-orange);
  --akses-soft: rgba(252, 120, 1, 0.09);
  --akses-border: rgba(252, 120, 1, 0.12);
}

.akses-item:nth-child(4n + 3) {
  --akses-accent: #c99200;
  --akses-soft: rgba(252, 201, 16, 0.16);
  --akses-border: rgba(201, 146, 0, 0.14);
}

.akses-item:nth-child(4n + 4) {
  --akses-accent: var(--akses-teal);
  --akses-soft: rgba(21, 114, 122, 0.09);
  --akses-border: rgba(21, 114, 122, 0.12);
}

.akses-item::before {
  content: none;
  display: none;
}

.akses-item::after {
  content: "→";
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--akses-border);
  border-radius: 50%;
  background: #fff;
  color: var(--akses-accent);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.akses-item:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--akses-accent) 28%, transparent);
  background: #fff;
  box-shadow: 0 22px 44px -32px rgba(13, 71, 127, 0.46);
}

.akses-item:hover::after {
  transform: translateX(2px);
  border-color: var(--akses-accent);
  background: var(--akses-accent);
  color: #fff;
}

.akses-item:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--akses-accent) 28%, transparent);
  outline-offset: 3px;
}

.akses-ic {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--akses-border);
  border-radius: 15px;
  background: var(--akses-soft);
  color: var(--akses-accent);
}

.akses-ic svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
}

@media (prefers-reduced-motion: reduce) {
  .akses-item,
  .akses-item::after {
    transition: none;
  }

  .akses-item:hover,
  .akses-item:hover::after {
    transform: none;
  }
}

@media (max-width: 980px) {
  .akses-cepat-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .akses-cepat-head::before {
    grid-column: auto;
    margin-bottom: 5px;
  }

  .akses-cepat-head p {
    max-width: 660px;
  }

  .akses-grid {
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 980px) {
  .akses-cepat-inner {
    padding-inline: 32px;
  }

  .akses-cepat-head {
    gap: 12px;
    margin-bottom: 30px;
  }

  .akses-cepat-head p {
    max-width: 520px;
  }

  .akses-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    margin-bottom: -6px;
    scrollbar-width: thin;
  }

  .akses-item {
    flex: 0 0 auto;
    width: min(78%, 300px);
    scroll-snap-align: start;
    min-height: 132px;
    padding: 18px 52px 18px 18px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .akses-cepat-inner {
    padding-inline: 20px;
  }

  .akses-cepat-head {
    margin-bottom: 26px;
  }

  .akses-cepat-head h2 {
    font-size: clamp(1.8rem, 9vw, 2.25rem);
  }

  .akses-cepat-head p {
    max-width: 390px;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* Menonaktifkan aturan garis vertikal versi mobile */
  .akses-item::before {
    content: none;
    display: none;
  }
}

/* ---------- Ekosistem Brand ---------- */
.ekosistem-brand {
  --ekosistem-blue: #155faa;
  --ekosistem-blue-dark: #0d477f;
  --ekosistem-yellow: #fcc910;
  --ekosistem-orange: #fc7801;
  --ekosistem-cream: #fff9e9;
  padding: 0 0;
  background: #f8f9fb;
}

.ekosistem-inner {
  max-width: none;
  margin: 0;
}

.ekosistem-panel {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.72fr);
  width: 100%;
  overflow: hidden;
  border: 0;
  background: var(--ekosistem-cream);
  box-shadow: none;
}

.ekosistem-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 610px;
  padding: clamp(38px, 4vw, 58px);
  color: var(--ekosistem-blue-dark);
  background:
    radial-gradient(
      circle at 14% 14%,
      rgba(255, 255, 255, 0.22) 0 6px,
      transparent 7px
    ),
    radial-gradient(
      circle at 79% 13%,
      rgba(255, 255, 255, 0.18) 0 13px,
      transparent 14px
    ),
    radial-gradient(
      circle at 88% 40%,
      rgba(21, 95, 170, 0.11) 0 23px,
      transparent 24px
    ),
    radial-gradient(
      circle at 13% 82%,
      rgba(255, 255, 255, 0.18) 0 31px,
      transparent 32px
    ),
    linear-gradient(
      150deg,
      var(--ekosistem-yellow) 0%,
      #f4aa1c 56%,
      var(--ekosistem-orange) 100%
    );
}

.ekosistem-intro::before {
  content: "";
  position: absolute;
  top: -76px;
  right: -78px;
  z-index: -1;
  width: 210px;
  height: 210px;
  border: 34px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.ekosistem-intro::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -48px;
  z-index: -1;
  width: 164px;
  height: 164px;
  border: 24px solid rgba(21, 95, 170, 0.11);
  border-radius: 50%;
}

.ekosistem-eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 32px;
  margin-bottom: 22px;
  padding: 7px 13px;
  border: 1px solid rgba(21, 95, 170, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: var(--ekosistem-blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.ekosistem-intro h2 {
  max-width: 460px;
  margin: 0 0 20px;
  color: #0c477f;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.95rem, 2.25vw + 0.75rem, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.13;
}

.ekosistem-intro > p {
  max-width: 445px;
  margin: 0;
  color: rgba(12, 71, 127, 0.82);
  font-size: 0.96rem;
  line-height: 1.72;
}

.ekosistem-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  max-width: 340px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(21, 95, 170, 0.18);
}

.ekosistem-summary strong {
  color: var(--ekosistem-blue);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1;
}

.ekosistem-summary span {
  color: rgba(12, 71, 127, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
}

.ekosistem-all-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  min-height: 46px;
  margin-top: 30px;
  padding: 11px 17px;
  border: 1px solid rgba(13, 71, 127, 0.16);
  border-radius: 13px;
  background: var(--ekosistem-blue);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 26px -18px rgba(13, 71, 127, 0.9);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.ekosistem-all-link svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.ekosistem-all-link:focus-visible,
.ekosistem-card-link:focus-visible {
  outline: 3px solid rgba(21, 95, 170, 0.27);
  outline-offset: 4px;
}

.ekosistem-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 42px);
  background:
    radial-gradient(
      circle at 10% 14%,
      rgba(252, 201, 16, 0.15) 0 5px,
      transparent 6px
    ),
    radial-gradient(
      circle at 92% 10%,
      rgba(21, 95, 170, 0.08) 0 12px,
      transparent 13px
    ),
    radial-gradient(
      circle at 89% 86%,
      rgba(252, 120, 1, 0.1) 0 22px,
      transparent 23px
    ),
    var(--ekosistem-cream);
}

.ekosistem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ekosistem-card {
  position: relative;
  min-width: 0;
  min-height: 228px;
  overflow: hidden;
  border: 1px solid rgba(21, 95, 170, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: 0 13px 30px -28px rgba(13, 71, 127, 0.68);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.ekosistem-card:nth-child(4n + 2),
.ekosistem-card:nth-child(4n + 3) {
  background: rgba(255, 252, 240, 0.96);
}

.ekosistem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--brand-accent, var(--ekosistem-blue));
}

.ekosistem-card::after {
  content: "";
  position: absolute;
  top: -45px;
  right: -45px;
  width: 126px;
  height: 126px;
  border: 20px solid var(--brand-ring, rgba(21, 95, 170, 0.08));
  border-radius: 50%;
  pointer-events: none;
}

.ekosistem-card-link {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 228px;
  padding: 21px 22px 20px 25px;
  color: inherit;
  text-decoration: none;
}

.ekosistem-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.ekosistem-logo-shell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(100%, 206px);
  min-height: 66px;
  padding: 12px 15px;
  border: 1px solid rgba(21, 95, 170, 0.09);
  border-radius: 16px;
  background: var(--brand-soft, rgba(21, 95, 170, 0.08));
}

.ekosistem-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 39px;
  object-fit: contain;
  object-position: left center;
}

.ekosistem-index {
  flex: 0 0 auto;
  padding-top: 3px;
  color: var(--brand-accent, var(--ekosistem-blue));
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.ekosistem-card-copy {
  margin-top: 18px;
}

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

.ekosistem-tagline {
  max-width: 330px;
  margin: 0;
  color: #19324b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.93rem;
  font-weight: 750;
  letter-spacing: -0.012em;
  line-height: 1.45;
}

.ekosistem-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 10px;
  margin-top: 13px;
  color: #607083;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.4;
}

.ekosistem-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ekosistem-meta-item + .ekosistem-meta-item::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--brand-accent, var(--ekosistem-blue));
  opacity: 0.55;
}

.ekosistem-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
  color: var(--brand-accent, var(--ekosistem-blue));
  font-size: 0.79rem;
  font-weight: 800;
}

.ekosistem-card-action svg {
  width: 19px;
  height: 19px;
  transition: transform 180ms ease;
}

.ekosistem-coming {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  min-height: 92px;
  margin-top: 14px;
  padding: 17px 20px;
  border: 1px dashed rgba(21, 95, 170, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.ekosistem-coming-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: rgba(21, 95, 170, 0.09);
  color: var(--ekosistem-blue);
}

.ekosistem-coming-icon svg {
  width: 24px;
  height: 24px;
}

.ekosistem-coming-label {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--ekosistem-orange);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ekosistem-coming-copy h3 {
  margin: 0 0 3px;
  color: #19324b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.ekosistem-coming-copy p {
  margin: 0;
  color: #687789;
  font-size: 0.76rem;
  line-height: 1.49;
}

@media (hover: hover) and (pointer: fine) {
  .ekosistem-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--brand-accent) 34%, transparent);
    box-shadow: 0 20px 40px -30px rgba(13, 71, 127, 0.72);
  }

  .ekosistem-card:hover .ekosistem-card-action svg,
  .ekosistem-all-link:hover svg {
    transform: translateX(3px);
  }

  .ekosistem-all-link:hover {
    transform: translateY(-2px);
    background: var(--ekosistem-blue-dark);
    box-shadow: 0 17px 30px -18px rgba(13, 71, 127, 0.95);
  }
}

@media (max-width: 1080px) {
  .ekosistem-panel {
    grid-template-columns: 1fr;
  }

  .ekosistem-intro {
    min-height: auto;
    padding: 48px;
  }

  .ekosistem-intro h2,
  .ekosistem-intro > p {
    max-width: 720px;
  }
}

@media (max-width: 720px) {
  .ekosistem-brand {
    padding: 60px 0 72px;
  }

  .ekosistem-inner {
    padding: 0 24px;
  }

  .ekosistem-panel {
    border-radius: 26px;
  }

  .ekosistem-intro {
    padding: 40px 30px;
  }

  .ekosistem-content {
    padding: 22px;
  }

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

  .ekosistem-card,
  .ekosistem-card-link {
    min-height: 214px;
  }
}

@media (max-width: 480px) {
  .ekosistem-inner {
    padding: 0 18px;
  }

  .ekosistem-panel {
    border-radius: 22px;
  }

  .ekosistem-intro {
    padding: 36px 24px;
  }

  .ekosistem-intro h2 {
    font-size: 1.8rem;
  }

  .ekosistem-content {
    padding: 16px;
  }

  .ekosistem-card,
  .ekosistem-card-link {
    min-height: 204px;
  }

  .ekosistem-card-link {
    padding: 18px 18px 17px 21px;
  }

  .ekosistem-logo-shell {
    min-height: 60px;
  }

  .ekosistem-coming {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    padding: 15px;
  }

  .ekosistem-coming-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ekosistem-card,
  .ekosistem-all-link,
  .ekosistem-card-action svg,
  .ekosistem-all-link svg {
    transition: none;
  }

  .ekosistem-card:hover,
  .ekosistem-all-link:hover {
    transform: none;
  }
}
/* panduan */

.guidev2-page {
  --g-blue: #155faa;
  --g-blue-dark: #0e4b87;
  --g-blue-soft: #eaf3fb;
  --g-yellow: #fcc910;
  --g-orange: #fc7801;
  --g-ink: #17324b;
  --g-muted: #65798b;
  --g-line: #dbe6ee;
  --g-surface: #ffffff;
  background-color: #fffaf0;
  background-image:
    radial-gradient(
      circle at 12% 18%,
      rgba(21, 95, 170, 0.035) 0 10px,
      transparent 11px
    ),
    radial-gradient(
      circle at 82% 33%,
      rgba(252, 120, 1, 0.04) 0 14px,
      transparent 15px
    ),
    radial-gradient(
      circle at 48% 78%,
      rgba(252, 201, 16, 0.055) 0 18px,
      transparent 19px
    );
  background-size:
    220px 210px,
    330px 310px,
    430px 390px;
  color: var(--g-ink);
}
.guidev2-page header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(21, 95, 170, 0.1);
}
.guidev2-page .header-inner {
  max-width: 1240px;
  padding: 20px 24px;
}
.guidev2-page .guidev2-header-link {
  margin-left: auto;
  margin-right: 18px;
  color: #52697b;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}
.guidev2-page .guidev2-header-link:hover {
  color: var(--g-blue);
}
.guidev2-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 86px;
}
.guidev2-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 48px;
  align-items: center;
  overflow: hidden;
  padding: 58px;
  border-radius: 30px;
  background: linear-gradient(135deg, #155faa 0%, #104d8d 100%);
  box-shadow: 0 22px 55px rgba(14, 69, 124, 0.16);
}
.guidev2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
        circle at 12% 18%,
        rgba(255, 255, 255, 0.14) 0 9px,
        transparent 10px
      )
      0 0/110px 104px,
    radial-gradient(
        circle at 88% 76%,
        rgba(252, 201, 16, 0.17) 0 15px,
        transparent 16px
      )
      0 0/184px 174px;
}
.guidev2-hero-copy,
.guidev2-flow {
  position: relative;
  z-index: 1;
}
.guidev2-eyebrow,
.guidev2-kicker,
.guidev2-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.guidev2-eyebrow {
  margin-bottom: 18px;
  color: #fff;
}
.guidev2-eyebrow::before,
.guidev2-kicker::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: var(--g-yellow);
}
.guidev2-hero h1 {
  min-height: 0;
  max-width: 700px;
  margin: 0 0 18px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.45rem, 4.2vw, 4.15rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.guidev2-hero-copy > p {
  max-width: 660px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.75;
}
.guidev2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.guidev2-primary,
.guidev2-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 13px;
  font-size: 0.87rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.guidev2-primary {
  gap: 9px;
  background: var(--g-yellow);
  color: #17324b;
}
.guidev2-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}
.guidev2-primary:hover,
.guidev2-secondary:hover {
  transform: translateY(-2px);
}
.guidev2-primary svg,
.guidev2-open-app svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.guidev2-flow {
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(8px);
}
.guidev2-flow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.guidev2-flow-head span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.guidev2-flow-head strong {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
}
.guidev2-flow-list {
  display: grid;
  gap: 8px;
}
.guidev2-flow-item {
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}
.guidev2-flow-item > b {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 12px;
  background: #fff;
  color: var(--g-blue);
  font-size: 0.73rem;
}
.guidev2-flow-item strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
}
.guidev2-flow-item small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.69rem;
}
.guidev2-section {
  margin-top: 66px;
}
.guidev2-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 470px);
  gap: 42px;
  align-items: end;
  margin-bottom: 24px;
}
.guidev2-kicker,
.guidev2-label {
  color: var(--g-orange);
}
.guidev2-heading h2,
.guidev2-content-head h2 {
  margin: 10px 0 0;
  color: var(--g-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.guidev2-heading > p,
.guidev2-content-head > p {
  margin: 0;
  color: var(--g-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.guidev2-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.guidev2-quick {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 28px;
  gap: 13px;
  align-items: center;
  min-height: 82px;
  padding: 14px 16px;
  border: 1px solid rgba(21, 95, 170, 0.12);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(18, 65, 110, 0.045);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.guidev2-quick:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 95, 170, 0.28);
  box-shadow: 0 14px 28px rgba(18, 65, 110, 0.08);
}
.guidev2-quick > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--g-blue-soft);
  color: var(--g-blue);
  font-size: 0.72rem;
  font-weight: 850;
}
.guidev2-quick:nth-child(3n + 2) > span {
  background: #fff6d6;
  color: #7b6100;
}
.guidev2-quick:nth-child(3n) > span {
  background: #fff0e3;
  color: #c65d00;
}
.guidev2-quick strong {
  display: block;
  color: var(--g-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.91rem;
}
.guidev2-quick small {
  display: block;
  margin-top: 4px;
  color: var(--g-muted);
  font-size: 0.74rem;
  line-height: 1.45;
}
.guidev2-quick > svg,
.guidev2-chevron svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.guidev2-quick > svg {
  color: #8da1b0;
}
.guidev2-content-head {
  max-width: 760px;
  margin-bottom: 24px;
}
.guidev2-content-head > p {
  margin-top: 12px;
}
.guidev2-list {
  display: grid;
  gap: 13px;
}
.guidev2-item {
  scroll-margin-top: 100px;
  overflow: hidden;
  border: 1px solid rgba(21, 95, 170, 0.13);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(18, 65, 110, 0.05);
}
.guidev2-item:target {
  border-color: rgba(252, 120, 1, 0.55);
  box-shadow: 0 0 0 4px rgba(252, 120, 1, 0.09);
}
.guidev2-item[open] {
  border-color: rgba(21, 95, 170, 0.3);
}
.guidev2-item > summary {
  display: grid;
  grid-template-columns: 49px minmax(0, 1fr) 38px;
  gap: 14px;
  align-items: center;
  min-height: 84px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}
.guidev2-item > summary::-webkit-details-marker {
  display: none;
}
.guidev2-number {
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  border-radius: 15px;
  background: var(--g-blue-soft);
  color: var(--g-blue);
  font-size: 0.75rem;
  font-weight: 850;
}
.guidev2-summary-copy {
  display: grid;
  gap: 4px;
}
.guidev2-summary-copy strong {
  color: var(--g-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
}
.guidev2-summary-copy small {
  color: var(--g-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}
.guidev2-chevron {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: #f2f6f9;
  color: var(--g-blue);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.guidev2-item[open] .guidev2-chevron {
  transform: rotate(180deg);
  background: var(--g-blue);
  color: #fff;
}
/* Wrapper animasi buka/tutup laci: grid-template-rows 0fr->1fr adalah
   trik CSS native buat animate "height:auto" tanpa JS. Selector
   ".guidev2-item > .guidev2-collapse" sengaja dipakai (bukan cuma
   ".guidev2-collapse") supaya menang specificity dari UA stylesheet
   "details:not([open]) > *:not(summary){display:none}" yang bikin
   konten details ketutup tanpa animasi kalau nggak di-override. */
.guidev2-item > .guidev2-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.guidev2-item[open] > .guidev2-collapse {
  grid-template-rows: 1fr;
}
.guidev2-collapse > .guidev2-body {
  overflow: hidden;
}
.guidev2-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 24px;
  padding: 26px;
  border-top: 1px solid var(--g-line);
  background: linear-gradient(
    180deg,
    rgba(234, 243, 251, 0.45),
    rgba(255, 255, 255, 0) 150px
  );
}
.guidev2-label {
  margin-bottom: 16px;
}
.guidev2-steps {
  counter-reset: step;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.guidev2-steps li {
  counter-increment: step;
  position: relative;
  min-height: 40px;
  padding: 8px 0 8px 49px;
  color: var(--g-ink);
  font-size: 0.87rem;
  line-height: 1.65;
}
.guidev2-steps li::before {
  content: counter(step);
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 11px;
  background: var(--g-blue-soft);
  color: var(--g-blue);
  font-size: 0.72rem;
  font-weight: 850;
}
.guidev2-chip {
  display: inline-flex;
  padding: 2px 7px;
  border-radius: 7px;
  background: #fff0e3;
  color: #b95700;
  font-size: 0.78rem;
  font-weight: 750;
}
.guidev2-body-aside {
  display: grid;
  align-content: start;
  gap: 11px;
}
.guidev2-purpose,
.guidev2-note {
  padding: 16px;
  border-radius: 14px;
}
.guidev2-purpose {
  border: 1px solid rgba(21, 95, 170, 0.12);
  background: #fff;
}
.guidev2-note {
  background: #fff6d6;
}
.guidev2-purpose span,
.guidev2-note span {
  display: block;
  margin-bottom: 7px;
  color: var(--g-ink);
  font-size: 0.73rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.guidev2-purpose p,
.guidev2-note p {
  margin: 0;
  color: var(--g-muted);
  font-size: 0.79rem;
  line-height: 1.6;
}
.guidev2-note p {
  color: #685a30;
}
.guidev2-open-app {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 15px;
  border-radius: 12px;
  background: var(--g-blue);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}
.guidev2-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 56px;
  padding: 30px 34px;
  border-radius: 22px;
  background: linear-gradient(135deg, #155faa, #104b87);
  color: #fff;
}
.guidev2-help h2 {
  margin: 0 0 7px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}
.guidev2-help p {
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.86rem;
  line-height: 1.6;
}
.guidev2-help a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 17px;
  border-radius: 12px;
  background: var(--g-yellow);
  color: #17324b;
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}
@media (max-width: 900px) {
  .guidev2-hero {
    grid-template-columns: 1fr;
    padding: 44px;
  }
  .guidev2-flow {
    max-width: 620px;
  }
  .guidev2-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }
  .guidev2-body {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .guidev2-page .header-inner {
    padding: 16px;
  }
  .guidev2-page .logo img {
    height: 28px;
  }
  .guidev2-page .guidev2-header-link {
    display: none;
  }
  .guidev2-page .btn-app {
    padding: 10px 13px;
    font-size: 0.75rem;
  }
  .guidev2-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 18px;
  }
  .guidev2-hero {
    gap: 28px;
    padding: 34px 23px;
    border-radius: 23px;
  }
  .guidev2-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }
  .guidev2-actions {
    flex-direction: column;
  }
  .guidev2-primary,
  .guidev2-secondary {
    width: 100%;
  }
  .guidev2-section {
    margin-top: 52px;
  }
  .guidev2-quick-grid {
    grid-template-columns: 1fr;
  }
  .guidev2-quick small {
    display: none;
  }
  .guidev2-item > summary {
    grid-template-columns: 43px minmax(0, 1fr) 32px;
    gap: 11px;
    min-height: 74px;
    padding: 13px;
  }
  .guidev2-number {
    width: 43px;
    height: 43px;
  }
  .guidev2-summary-copy small {
    display: none;
  }
  .guidev2-chevron {
    width: 32px;
    height: 32px;
  }
  .guidev2-body {
    padding: 20px 15px;
  }
  .guidev2-help {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 22px;
  }
  .guidev2-help a {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .guidev2-page * {
    scroll-behavior: auto !important;
  }
  .guidev2-primary,
  .guidev2-secondary,
  .guidev2-quick,
  .guidev2-chevron {
    transition: none;
  }
}

/* ---------- Halaman Detail Brand ---------- */
.brand-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 40px;
}
.brand-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 44px;
}
.brand-hero img {
  height: 44px;
  width: auto;
  object-fit: contain;
  object-position: left;
  margin-bottom: 18px;
}
.brand-hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 2.6vw + 1rem, 2.5rem);
  color: var(--ink-900);
  margin-bottom: 8px;
}
.brand-hero p {
  color: var(--blue-600);
  font-weight: 600;
  font-size: 1rem;
}
.brand-detail {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 44px 96px;
}
.brand-section {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.brand-section:last-child {
  border-bottom: none;
}
.brand-section h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink-900);
  margin-bottom: 14px;
}
.brand-section p {
  color: var(--body-600);
  font-size: 0.98rem;
  line-height: 1.75;
}
.brand-target {
  font-size: 0.98rem;
  color: var(--ink-900);
  font-weight: 600;
}
.brand-event-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.brand-event-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
}
.brand-event-list strong {
  color: var(--ink-900);
  font-size: 0.94rem;
}
.brand-event-list span {
  color: var(--body-600);
  font-size: 0.82rem;
}
.brand-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}
.brand-stat {
  background: var(--blue-100);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
}
.brand-stat strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--blue-600);
  margin-bottom: 4px;
}
.brand-stat span {
  font-size: 0.78rem;
  color: var(--body-600);
}
.brand-dokumentasi-placeholder {
  border: 1.5px dashed var(--line);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
  color: var(--body-600);
  font-size: 0.86rem;
}
.brand-testimoni {
  background: var(--bg);
  border-radius: 16px;
  padding: 24px;
}
.brand-testimoni p {
  color: var(--ink-900);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 14px;
}
.brand-testimoni-nama {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink-900);
}
.brand-testimoni-peran {
  font-size: 0.8rem;
  color: var(--body-600);
}
.brand-sosial {
  display: flex;
  gap: 12px;
}
.brand-sosial a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-900);
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}
.brand-sosial a:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
}
.brand-sosial svg {
  width: 18px;
  height: 18px;
}
.brand-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 480px) {
  .brand-hero-inner,
  .brand-detail {
    padding-left: 24px;
    padding-right: 24px;
  }
  .brand-event-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1050px) {
  .wrap {
    padding: 26px 24px 48px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .visual {
    flex-direction: column;
    min-height: 460px;
    margin-top: 20px;
  }
  .photo-slot {
    width: 300px;
    height: 340px;
    left: calc(50% - 150px);
  }
  .pill-stack {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 16px;
  }
  .float-card {
    right: -4px;
    bottom: 30px;
    width: 200px;
  }
}
/* ---------- Dock navigasi (adaptasi vanilla CSS dari hover-gradient-nav-bar: flip icon -> label) ---------- */
.dock-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
}
.dock {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: none;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 0;
  padding: 20px 14px 10px;
  box-shadow: 0 -8px 24px -12px rgba(20, 22, 31, 0.2);
}
.dock-item {
  position: relative;
  cursor: pointer;
  border-radius: 16px;
}
/* Glow radial-gradient per item saat hover/aktif, warna beda tiap ikon */
.dock-glow {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  z-index: 0;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.84);
  transform-origin: center;
  filter: blur(1px);
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}
.dock-item.active .dock-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.3);
}
.dock-item:nth-child(1) .dock-glow {
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.18) 0%,
    rgba(37, 99, 235, 0.07) 50%,
    rgba(29, 78, 216, 0) 100%
  );
}
.dock-item:nth-child(2) .dock-glow {
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.18) 0%,
    rgba(234, 88, 12, 0.07) 50%,
    rgba(194, 65, 12, 0) 100%
  );
}
.dock-item:nth-child(3) .dock-glow {
  background: radial-gradient(
    circle,
    rgba(147, 51, 234, 0.18) 0%,
    rgba(126, 34, 206, 0.07) 50%,
    rgba(88, 28, 135, 0) 100%
  );
}
.dock-item:nth-child(4) .dock-glow {
  background: radial-gradient(
    circle,
    rgba(34, 197, 94, 0.18) 0%,
    rgba(22, 163, 74, 0.07) 50%,
    rgba(21, 128, 61, 0) 100%
  );
}
.dock-item:nth-child(5) .dock-glow {
  background: radial-gradient(
    circle,
    rgba(20, 184, 166, 0.18) 0%,
    rgba(13, 148, 136, 0.07) 50%,
    rgba(15, 118, 110, 0) 100%
  );
}
.dock-item:nth-child(6) .dock-glow {
  background: radial-gradient(
    circle,
    rgba(239, 68, 68, 0.18) 0%,
    rgba(220, 38, 38, 0.07) 50%,
    rgba(185, 28, 28, 0) 100%
  );
}
.dock-item:nth-child(7) .dock-glow {
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.18) 0%,
    rgba(79, 70, 229, 0.07) 50%,
    rgba(67, 56, 202, 0) 100%
  );
}
.dock-item:nth-child(8) .dock-glow {
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.18) 0%,
    rgba(219, 39, 119, 0.07) 50%,
    rgba(190, 24, 93, 0) 100%
  );
}

.dock-face {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 16px;
  color: #525252;
  transform-origin: center bottom;
  transition: transform 0.2s ease;
}
/* Section-nya lagi aktif di layar (scroll/klik): full icon, membesar. Berlaku di semua device. */
.dock-item.active .dock-face {
  transform: scale(1.3);
}
.dock-face svg {
  width: 20px;
  height: 20px;
  stroke: #525252;
  flex-shrink: 0;
  transition: stroke 0.2s ease;
}
.dock-face i {
  font-size: 20px;
  line-height: 1;
  color: #525252;
  flex-shrink: 0;
  transition: color 0.2s ease;
}
.dock-item:nth-child(1).active .dock-face svg {
  stroke: #3b82f6;
}
.dock-item:nth-child(2).active .dock-face svg {
  stroke: #f97316;
}
.dock-item:nth-child(3).active .dock-face svg {
  stroke: #9333ea;
}
.dock-item:nth-child(4).active .dock-face svg {
  stroke: #22c55e;
}
.dock-item:nth-child(5).active .dock-face svg {
  stroke: #14b8a6;
}
.dock-item:nth-child(6).active .dock-face svg {
  stroke: #ef4444;
}
.dock-item:nth-child(7).active .dock-face svg {
  stroke: #6366f1;
}
.dock-item:nth-child(8).active .dock-face i {
  color: #ec4899;
}
.dock-label {
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  margin-top: 3px;
  max-height: 20px;
  opacity: 1;
  overflow: hidden;
  transition:
    opacity 0.2s ease,
    max-height 0.2s ease,
    margin-top 0.2s ease;
}
.dock-item.active .dock-label {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
}

/* Efek :hover CUMA buat device yang beneran punya mouse. Di touchscreen, :hover bisa
   "nyangkut" abis disentuh (nggak ada mouse-leave), jadi sengaja nggak dipakai di sana —
   status "aktif" mobile sepenuhnya diatur .active dari JS (scroll/klik), bukan :hover. */
@media (hover: hover) and (pointer: fine) {
  .dock-item:hover .dock-glow {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(1.2);
  }
  .dock-item:hover .dock-face {
    transform: scale(1.15);
  }
  .dock-item:nth-child(1):hover .dock-face svg {
    stroke: #3b82f6;
  }
  .dock-item:nth-child(2):hover .dock-face svg {
    stroke: #f97316;
  }
  .dock-item:nth-child(3):hover .dock-face svg {
    stroke: #9333ea;
  }
  .dock-item:nth-child(4):hover .dock-face svg {
    stroke: #22c55e;
  }
  .dock-item:nth-child(5):hover .dock-face svg {
    stroke: #14b8a6;
  }
  .dock-item:nth-child(6):hover .dock-face svg {
    stroke: #ef4444;
  }
  .dock-item:nth-child(7):hover .dock-face svg {
    stroke: #6366f1;
  }
  .dock-item:nth-child(8):hover .dock-face i {
    color: #ec4899;
  }
  .dock-item:hover .dock-label {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
  }
}

/* Desktop-only: dock jadi floating pill mengambang di tengah ala macOS dock,
   ikon magnify+lift saat hover, label jadi tooltip yang muncul di atas ikon.
   Scope persis kebalikan dari breakpoint mobile (max-width:640px) di bawah,
   jadi tampilan mobile tidak tersentuh sama sekali. */
@media (min-width: 641px) {
  .dock-wrap {
    left: 50%;
    right: auto;
    bottom: 18px;
    transform: translateX(-50%);
  }
  .dock {
    width: max-content;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 14px 12px;
    border-radius: 20px;
    box-shadow: 0 12px 32px -14px rgba(20, 22, 31, 0.28);
  }
  .dock-face {
    padding: 10px 14px;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .dock-face svg,
  .dock-face i {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }
  .dock-item.active .dock-face {
    transform: translateY(-6px) scale(1.15);
  }
  /* Label default disembunyikan; muncul sebagai tooltip di atas ikon saat hover. */
  .dock-label {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    z-index: 3;
    width: max-content;
    max-width: 160px;
    max-height: none;
    margin-top: 0;
    padding: 5px 10px;
    border-radius: 6px;
    background: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(20, 22, 31, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 4px);
    transition:
      opacity 0.16s ease,
      transform 0.16s ease;
  }
  /* Warna teks tooltip mengikuti warna ikon masing-masing, sama seperti mobile. */
  .dock-item:nth-child(1) .dock-label {
    color: #3b82f6;
  }
  .dock-item:nth-child(2) .dock-label {
    color: #f97316;
  }
  .dock-item:nth-child(3) .dock-label {
    color: #9333ea;
  }
  .dock-item:nth-child(4) .dock-label {
    color: #22c55e;
  }
  .dock-item:nth-child(5) .dock-label {
    color: #14b8a6;
  }
  .dock-item:nth-child(6) .dock-label {
    color: #ef4444;
  }
  .dock-item:nth-child(7) .dock-label {
    color: #6366f1;
  }
  .dock-item:nth-child(8) .dock-label {
    color: #ec4899;
  }
  .dock-item.active .dock-glow {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(0.95);
  }
  /* Glow disamain sama bounding box item (face) biar rapi, ngga lebih kecil/gede dari itemnya. */
  .dock-glow {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 641px) and (hover: hover) and (pointer: fine) {
  .dock-item:hover .dock-face {
    transform: translateY(-8px) scale(1.2);
  }
  .dock-item:hover .dock-label {
    opacity: 1;
    max-height: none;
    transform: translate(-50%, 0);
  }
  .dock-item:hover .dock-glow {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.9);
  }
}

@media (max-width: 640px) {
  .dock-item {
    flex: 1 1 0;
    min-width: 0;
  }

  /* Mobile: dock dibuat putih solid supaya bersih dan konsisten. */
  .dock {
    gap: 0;
    padding: 10px 2px calc(8px + env(safe-area-inset-bottom));
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: 1px solid #e6e8ec;
    box-shadow: 0 -8px 22px -16px rgba(20, 22, 31, 0.28);
  }

  .dock-face {
    padding: 6px 2px;
    width: 100%;
  }

  /* Glow mobile dibuat kecil agar tidak bocor ke slot ikon di sebelahnya. */
  .dock-glow {
    width: 32px;
    height: 32px;
    filter: none;
  }

  .dock-item.active .dock-glow {
    transform: translate(-50%, -50%) scale(1.08);
  }

  /* Label aktif mobile: putih minimal dan ukurannya mengikuti teks. */
  .dock-label {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 14px);
    z-index: 3;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: max-content;
    height: auto;
    min-width: 0;
    min-height: 0;
    max-width: calc(100vw - 20px);
    max-height: none;

    margin: 0;
    padding: 4px 8px;

    border: 0;
    border-radius: 6px;
    background: #ffffff;

    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    white-space: nowrap;

    box-shadow: 0 3px 10px rgba(20, 22, 31, 0.06);
    opacity: 0;
    overflow: visible;
    pointer-events: none;

    transform: translate(-50%, 3px);
    transform-origin: center bottom;
    transition:
      opacity 0.16s ease,
      transform 0.16s ease;
  }

  /* Warna font label mengikuti warna ikon masing-masing. */
  .dock-item:nth-child(1) .dock-label {
    color: #3b82f6;
  }
  .dock-item:nth-child(2) .dock-label {
    color: #f97316;
  }
  .dock-item:nth-child(3) .dock-label {
    color: #9333ea;
  }
  .dock-item:nth-child(4) .dock-label {
    color: #22c55e;
  }
  .dock-item:nth-child(5) .dock-label {
    color: #14b8a6;
  }
  .dock-item:nth-child(6) .dock-label {
    color: #ef4444;
  }
  .dock-item:nth-child(7) .dock-label {
    color: #6366f1;
  }
  .dock-item:nth-child(8) .dock-label {
    color: #ec4899;
  }

  /* Tanpa ekor/segitiga agar popup tetap minimal. */
  .dock-label::after {
    content: none;
    display: none;
  }

  .dock-item.active .dock-label {
    opacity: 1;
    max-height: none;
    height: auto;
    overflow: visible;
    transform: translate(-50%, 0);
  }

  /* Di mobile jangan scale seluruh .dock-face karena label ikut membesar dan bisa keluar layar. */
  .dock-item.active .dock-face {
    transform: none;
  }

  /* Item paling kiri/kanan: label dikunci ke dalam viewport agar tidak terpotong. */
  .dock-item:first-child .dock-label {
    left: 4px;
    transform: translate(0, 3px);
    transform-origin: left bottom;
  }

  .dock-item:first-child.active .dock-label {
    max-height: none;
    height: auto;
    transform: translate(0, 0);
  }

  .dock-item:last-child .dock-label {
    left: auto;
    right: 4px;
    transform: translate(0, 3px);
    transform-origin: right bottom;
  }

  .dock-item:last-child.active .dock-label {
    max-height: none;
    height: auto;
    transform: translate(0, 0);
  }

  /* Saat sedang smooth-scroll akibat klik dock, jangan tampilkan label section yang dilewati. */
  .dock.is-navigating .dock-label {
    opacity: 0 !important;
    transform: translate(-50%, 3px) !important;
    transition: none;
  }
}

@media (max-width: 380px) {
  .dock-face svg,
  .dock-face i {
    width: 18px;
    height: 18px;
    font-size: 18px;
  }
  .dock-glow {
    width: 30px;
    height: 30px;
  }
  .dock-label {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .pill-stack {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 16px;
  }
  .pill.active,
  .pill.outline:hover {
    transform: none;
  }
  .float-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
  .photo-slot {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 auto;
    width: 260px;
    height: 300px;
  }
  .visual {
    flex-direction: column;
    min-height: auto;
  }
  .wrap {
    padding-bottom: 90px;
  }
}

/* ---------- Testimoni ---------- */
/* Background section testimoni sedikit lebih gelap */
.testimoni-section {
  --bg: #eceff3;
  background-color: var(--bg);
}
.testimoni-section {
  --testimoni-edge-fade: clamp(130px, 12vw, 190px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg, #eceff3);
}

/* Beri ruang agar judul dan kartu tidak masuk ke area fade. */
.testimoni-section .testimoni-inner {
  padding-top: var(--testimoni-edge-fade);
  padding-bottom: var(--testimoni-edge-fade);
}

/* Background testimoni ikut menghilang secara bertahap di atas dan bawah. */
.testimoni-section .testimoni-bg {
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 var(--testimoni-edge-fade),
    #000 calc(100% - var(--testimoni-edge-fade)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 var(--testimoni-edge-fade),
    #000 calc(100% - var(--testimoni-edge-fade)),
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* Lapisan fade yang benar-benar terlihat pada batas section. */
.testimoni-section {
  isolation: isolate;
}

/* Matikan gradient lama yang menghasilkan batas terlihat kasar */
.testimoni-bg::before,
.testimoni-bg::after {
  display: none !important;
}

/* Pastikan isi utama testimoni tetap tajam dan berada di depan */
.testimoni-inner {
  position: relative;
  z-index: 4;
}

/* Lapisan blur lembut pada batas section */
.testimoni-section::before,
.testimoni-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(120px, 15vw, 190px);
  z-index: 3;
  pointer-events: none;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

/* Fade bagian atas: kuat di ujung, lalu hilang perlahan */
.testimoni-section::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    color-mix(in srgb, var(--bg) 94%, transparent) 16%,
    color-mix(in srgb, var(--bg) 78%, transparent) 36%,
    color-mix(in srgb, var(--bg) 52%, transparent) 58%,
    color-mix(in srgb, var(--bg) 24%, transparent) 79%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    rgba(0, 0, 0, 0.96) 18%,
    rgba(0, 0, 0, 0.76) 42%,
    rgba(0, 0, 0, 0.42) 67%,
    rgba(0, 0, 0, 0.14) 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    rgba(0, 0, 0, 0.96) 18%,
    rgba(0, 0, 0, 0.76) 42%,
    rgba(0, 0, 0, 0.42) 67%,
    rgba(0, 0, 0, 0.14) 86%,
    transparent 100%
  );
}

/* Fade bagian bawah: transparan lalu semakin kuat ke ujung */
.testimoni-section::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    var(--bg) 0%,
    color-mix(in srgb, var(--bg) 94%, transparent) 16%,
    color-mix(in srgb, var(--bg) 78%, transparent) 36%,
    color-mix(in srgb, var(--bg) 52%, transparent) 58%,
    color-mix(in srgb, var(--bg) 24%, transparent) 79%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to top,
    #000 0%,
    rgba(0, 0, 0, 0.96) 18%,
    rgba(0, 0, 0, 0.76) 42%,
    rgba(0, 0, 0, 0.42) 67%,
    rgba(0, 0, 0, 0.14) 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to top,
    #000 0%,
    rgba(0, 0, 0, 0.96) 18%,
    rgba(0, 0, 0, 0.76) 42%,
    rgba(0, 0, 0, 0.42) 67%,
    rgba(0, 0, 0, 0.14) 86%,
    transparent 100%
  );
}

/* Tinggi fade sedikit diperkecil pada layar HP */
@media (max-width: 640px) {
  .testimoni-section::before,
  .testimoni-section::after {
    height: 110px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}
.testimoni-section,
.testimoni-page {
  position: relative;
  overflow: hidden;
}
.testimoni-inner {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 70px 44px;
}
.testimoni-bg {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 16px;
  padding: 0;
  perspective: 500px;
  transform: rotateX(14deg) rotateZ(-4deg) scale(1.15);
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}
.testimoni-bg::before,
.testimoni-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 30%;
  z-index: 2;
}
.testimoni-bg::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg), transparent);
}
.testimoni-bg::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg), transparent);
}
.testimoni-bg-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
  animation: testimoni-bg-scroll 32s linear infinite;
}
.testimoni-bg-col.is-reverse {
  animation-direction: reverse;
}
@keyframes testimoni-bg-scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .testimoni-bg-col {
    animation: none;
  }
}
.testimoni-bg-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 10px 24px -18px rgba(20, 22, 31, 0.3);
}
.testimoni-bg-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 10px;
  object-fit: cover;
  border: none;
}
.testimoni-bg-nama {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
}
.testimoni-bg-isi {
  font-size: 0.82rem;
  color: var(--body-600);
  line-height: 1.5;
}
.testimoni-head {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}
.testimoni-head h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
}
.testimoni-head p {
  color: var(--body-600);
  font-size: 0.95rem;
  line-height: 1.5;
}
.testimoni-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.testimoni-chip {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--body-600);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.testimoni-chip:hover {
  border-color: var(--blue-600);
}
.testimoni-chip.is-active {
  background: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
}
.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimoni-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 8px 24px -12px rgba(20, 22, 31, 0.08);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.testimoni-isi,
.testimoni-proof-info {
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimoni-card.is-expanded .testimoni-isi,
.testimoni-card.is-expanded .testimoni-proof-info {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}
.testimoni-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.testimoni-foto {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimoni-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimoni-avatar.is-alt,
.testimoni-bg-avatar.is-alt {
  background: var(--orange-100);
  color: var(--orange-600);
}
.testimoni-nama {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1e293b;
}
.testimoni-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #eef4ff;
  color: #3b82f6;
}
.testimoni-isi {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
  margin-bottom: 5px;
  font-weight: 400;
}
.testimoni-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testimoni-proof-media {
  width: 92px;
  height: 80px;
  flex-shrink: 0;
}
.testimoni-proof-foto,
.testimoni-proof-avatar {
  position: absolute;
  left: 24px;
  bottom: 22px;
  width: 92px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--ink-900);
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.85), 0 0 18px 5px rgba(15, 23, 42, 0.14);
  transition: left 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              bottom 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s ease;
}

.testimoni-proof-avatar {
  object-fit: contain;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.8rem;
}

.testimoni-proof-avatar.is-alt {
  background: var(--orange-100);
  color: var(--orange-600);
}

.testimoni-proof-foto:hover,
.testimoni-proof-avatar:hover {
  transform: scale(1.04);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.85), 0 0 18px 5px rgba(15, 23, 42, 0.14), 0 8px 20px rgba(0, 0, 0, 0.14);
}

.testimoni-card.is-expanded .testimoni-proof-foto,
.testimoni-card.is-expanded .testimoni-proof-avatar {
  left: 14px;
  bottom: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 122px);
  border-radius: 18px;
  object-fit: contain;
  background: #1e293b;
  box-shadow: 0 12px 36px -6px rgba(15, 23, 42, 0.35);
  z-index: 10;
  transform: scale(1);
}
.testimoni-expand-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease;
  cursor: pointer;
  padding: 0;
}
.testimoni-expand-close:hover {
  background: rgba(15, 23, 42, 0.9);
}
.testimoni-expand-close svg {
  width: 18px;
  height: 18px;
}
.testimoni-card.is-expanded .testimoni-expand-close {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.testimoni-proof-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.testimoni-stars {
  display: inline-flex;
  color: #d9dce1;
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 4px;
}
.testimoni-star {
  position: relative;
  display: inline-block;
  width: 1em;
}
.testimoni-star.is-full {
  color: #fbbc04;
}
.testimoni-star.is-half::after {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
  color: #fbbc04;
}
.testimoni-status {
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
}
.testimoni-meta {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
}
.testimoni-empty {
  text-align: center;
  color: var(--body-600);
  padding: 40px 0;
}
@media (max-width: 900px) {
  .testimoni-bg {
    left: -10%;
    right: -10%;
    gap: 12px;
    transform: rotateX(9deg) rotateZ(-3deg) scale(1.08);
    opacity: 0.28;
  }

  .testimoni-bg-col {
    gap: 12px;
  }

  /* Dari 6 kolom menjadi 4 kolom */
  .testimoni-bg-col:nth-child(n + 5) {
    display: none;
  }

  .testimoni-bg-card {
    min-width: 0;
    padding: 15px;
    border-radius: 15px;
  }

  .testimoni-bg-avatar {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
    font-size: 0.78rem;
  }

  .testimoni-bg-nama {
    font-size: 0.78rem;
    margin-bottom: 5px;
  }

  .testimoni-bg-isi {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.72rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}

/* Mobile: tampilkan hanya 2 kolom agar kartu tidak terlalu sempit */
@media (max-width: 600px) {
  .testimoni-bg {
    left: -16%;
    right: -16%;
    gap: 10px;
    transform: rotateX(6deg) rotateZ(-2.5deg) scale(1.04);
    opacity: 0.22;
  }

  .testimoni-bg-col {
    gap: 10px;
    flex-basis: 50%;
  }

  .testimoni-bg-col:nth-child(n + 3) {
    display: none;
  }

  .testimoni-bg-card {
    width: 100%;
    padding: 13px;
    border-radius: 14px;
    box-shadow: 0 8px 20px -18px rgba(20, 22, 31, 0.28);
  }

  .testimoni-bg-avatar {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }

  .testimoni-bg-nama {
    overflow: hidden;
    font-size: 0.72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .testimoni-bg-isi {
    font-size: 0.66rem;
    line-height: 1.4;
    -webkit-line-clamp: 3;
  }
}

/* HP sangat kecil: beri ruang lebih agar tidak terlihat penuh */
@media (max-width: 380px) {
  .testimoni-bg {
    left: -22%;
    right: -22%;
    gap: 8px;
    opacity: 0.18;
  }

  .testimoni-bg-col {
    gap: 8px;
  }

  .testimoni-bg-card {
    padding: 11px;
    border-radius: 12px;
  }

  .testimoni-bg-isi {
    -webkit-line-clamp: 2;
  }
}
.testimoni-bg {
  opacity: 0.22;
}

@media (max-width: 900px) {
  .testimoni-bg {
    opacity: 0.2;
  }
}

@media (max-width: 600px) {
  .testimoni-bg {
    opacity: 0.16;
  }
}

@media (max-width: 380px) {
  .testimoni-bg {
    opacity: 0.13;
  }
}
/* ---------- Mengapa Memilih PUSKANAS ---------- */
.alasan-section {
  --alasan-blue: #155faa;
  --alasan-blue-dark: #0d477f;
  --alasan-yellow: #fcc910;
  --alasan-orange: #fc7801;
  --alasan-cream: #fff9e9;
}

.alasan-inner {
  max-width: none;
  margin: 0;
}

.alasan-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.6fr);
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  border: 0;
  background: var(--alasan-cream);
  box-shadow: none;
}

.alasan-intro {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(36px, 4vw, 58px);
  color: #fff;
  background:
    radial-gradient(
      circle at 14% 16%,
      rgba(255, 255, 255, 0.13) 0 5px,
      transparent 6px
    ),
    radial-gradient(
      circle at 75% 12%,
      rgba(252, 201, 16, 0.26) 0 11px,
      transparent 12px
    ),
    radial-gradient(
      circle at 84% 38%,
      rgba(255, 255, 255, 0.09) 0 18px,
      transparent 19px
    ),
    radial-gradient(
      circle at 14% 78%,
      rgba(252, 120, 1, 0.24) 0 26px,
      transparent 27px
    ),
    linear-gradient(150deg, var(--alasan-blue) 0%, var(--alasan-blue-dark) 100%);
}

.alasan-intro::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -58px;
  z-index: -1;
  width: 190px;
  height: 190px;
  border: 30px solid rgba(252, 201, 16, 0.15);
  border-radius: 50%;
}

.alasan-eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 32px;
  margin-bottom: 22px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff4c5;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.alasan-intro h2 {
  max-width: 460px;
  margin: 0 0 20px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.9rem, 2.25vw + 0.75rem, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.alasan-intro > p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.72;
}

.alasan-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  max-width: 330px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.alasan-summary strong {
  color: var(--alasan-yellow);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.55rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.alasan-summary span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
}

.alasan-content {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(24px, 3vw, 42px);
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(252, 201, 16, 0.15) 0 4px,
      transparent 5px
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(252, 120, 1, 0.1) 0 12px,
      transparent 13px
    ),
    var(--alasan-cream);
}

.alasan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.alasan-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  min-height: 108px;
  padding: 19px 46px 19px 19px;
  overflow: hidden;
  border: 1px solid rgba(21, 95, 170, 0.11);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px -26px rgba(13, 71, 127, 0.58);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.alasan-card:nth-child(4n + 2),
.alasan-card:nth-child(4n + 3) {
  background: rgba(255, 252, 240, 0.95);
}

.alasan-card:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 95, 170, 0.24);
  box-shadow: 0 18px 36px -28px rgba(13, 71, 127, 0.7);
}

.alasan-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: rgba(21, 95, 170, 0.1);
  color: var(--alasan-blue);
}

.alasan-card:nth-child(even) .alasan-icon {
  background: rgba(252, 120, 1, 0.1);
  color: var(--alasan-orange);
}

.alasan-icon svg {
  width: 25px;
  height: 25px;
}

.alasan-card h3 {
  margin: 0;
  color: #19324b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.45;
}

.alasan-number {
  position: absolute;
  top: 14px;
  right: 15px;
  color: rgba(21, 95, 170, 0.26);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.alasan-card:nth-child(even) .alasan-number {
  color: rgba(252, 120, 1, 0.3);
}

@media (max-width: 1040px) {
  .alasan-panel {
    grid-template-columns: 1fr;
  }

  .alasan-intro {
    min-height: auto;
    padding: 46px;
  }

  .alasan-intro h2,
  .alasan-intro > p {
    max-width: 700px;
  }

  .alasan-summary {
    margin-top: 30px;
  }
}

@media (max-width: 720px) {
  .alasan-section {
    padding: 56px 0 72px;
  }

  .alasan-inner {
    padding: 0 24px;
  }

  .alasan-panel {
    border-radius: 26px;
  }

  .alasan-intro {
    padding: 38px 30px;
  }

  .alasan-content {
    padding: 22px;
  }

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

@media (max-width: 480px) {
  .alasan-inner {
    padding: 0 18px;
  }

  .alasan-panel {
    border-radius: 22px;
  }

  .alasan-intro {
    padding: 34px 24px;
  }

  .alasan-intro h2 {
    font-size: 1.78rem;
  }

  .alasan-content {
    padding: 16px;
  }

  .alasan-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    min-height: 96px;
    padding: 16px 40px 16px 16px;
    border-radius: 16px;
  }

  .alasan-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .alasan-icon svg {
    width: 22px;
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .alasan-card {
    transition: none;
  }

  .alasan-card:hover {
    transform: none;
  }
}

/* ---------- Halaman Panduan Peserta ---------- */
.panduan-wrap {
  max-width: 860px;
  padding-top: 48px;
}
.panduan-hero {
  text-align: center;
  margin-bottom: 36px;
}
.panduan-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-600);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.panduan-hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 2vw + 1.2rem, 2.6rem);
  margin-bottom: 14px;
}
.panduan-hero p {
  color: var(--body-600);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.panduan-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.panduan-toc a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-900);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}
.panduan-toc a:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
}

.panduan-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 96px;
}
.panduan-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 22px;
  scroll-margin-top: 90px;
}
.panduan-item > summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
}
.panduan-item > summary::-webkit-details-marker {
  display: none;
}
.panduan-item > summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-600);
}
.panduan-item[open] > summary::after {
  content: "−";
}
.panduan-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.86rem;
}
.panduan-judul {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-900);
}
.panduan-body {
  padding: 0 0 26px 44px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.panduan-tujuan {
  color: var(--body-600);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.panduan-tujuan strong {
  color: var(--ink-900);
}
.panduan-screenshot {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  border: 1.5px dashed var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--body-600);
  font-size: 0.84rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
.panduan-steps {
  padding-left: 20px;
  margin-bottom: 18px;
  color: var(--ink-900);
  font-size: 0.94rem;
  line-height: 1.9;
}
.panduan-tombol {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--orange-100);
  color: var(--orange-600);
  font-weight: 700;
  font-size: 0.82rem;
}
.panduan-catatan {
  background: var(--blue-100);
  border-left: 3px solid var(--blue-600);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--ink-900);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.panduan-link {
  padding: 12px 24px;
  font-size: 0.88rem;
}

@media (max-width: 640px) {
  .panduan-wrap {
    padding-top: 32px;
  }
  .panduan-body {
    padding-left: 0;
  }
}

/* ---------- Halaman FAQ ---------- */
body.faq-redesign {
  min-width: 0;
  overflow-x: hidden;
  background: #f5f6f8;
}

.faq-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--blue-700);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.faq-skip-link:focus {
  transform: translateY(0);
}

/* Navbar khusus FAQ */
.faq-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  min-height: 72px;
  border-bottom: 1px solid rgba(8, 37, 86, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.faq-navbar__inner {
  width: min(100% - 48px, 1360px);
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq-navbar .logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.faq-navbar .logo img {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
}

.faq-navbar__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.faq-home-button,
.faq-navbar .btn-app {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 17px;
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.faq-home-button {
  border: 1px solid rgba(8, 37, 86, 0.14);
  background: #ffffff;
  color: var(--blue-600);
}

.faq-home-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-home-button:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 37, 86, 0.3);
  box-shadow: 0 10px 24px rgba(8, 37, 86, 0.08);
}

.faq-navbar .btn-app {
  border: 1px solid var(--blue-700);
  background: var(--blue-600);
  color: #ffffff;
}

.faq-navbar .btn-app:hover {
  transform: translateY(-2px);
  background: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: 0 10px 24px rgba(8, 37, 86, 0.16);
}

.faq-home-button:focus-visible,
.faq-navbar .btn-app:focus-visible,
.faq-redesign .testimoni-chip:focus-visible,
.faq-redesign .faq-question:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px var(--blue-600);
}

/* Hero */
.faq-hero-v2 {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(
    120deg,
    var(--orange-600) 0%,
    #f5b62a 58%,
    var(--orange-500) 100%
  );
  color: var(--blue-700);
}

.faq-hero-v2::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 440px;
  height: 440px;
  border: 82px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.faq-hero-v2__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1360px);
  min-height: 360px;
  margin-inline: auto;
  padding-block: 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.faq-hero-v2 h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ink-900);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.55rem, 5.4vw, 5rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.faq-hero-v2 p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(8, 37, 86, 0.82);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.75;
}

.faq-hero-v2__visual {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
}

.faq-hero-v2__symbol {
  position: relative;
  width: clamp(170px, 18vw, 230px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 37, 86, 0.12);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 28px 60px rgba(8, 37, 86, 0.14);
  transform: rotate(4deg);
}

.faq-hero-v2__symbol::before,
.faq-hero-v2__symbol::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 36px;
  background: rgba(8, 37, 86, 0.1);
}

.faq-hero-v2__symbol::before {
  transform: translate(-46px, 36px) rotate(-10deg);
}

.faq-hero-v2__symbol::after {
  transform: translate(52px, -40px) rotate(14deg);
  background: rgba(255, 255, 255, 0.26);
}

.faq-hero-v2__symbol svg {
  width: 52%;
  height: 52%;
  color: var(--orange-500);
  transform: rotate(-4deg);
}

/* Area FAQ */
.faq-redesign .wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.faq-redesign .faq-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.faq-content-v2 {
  width: min(100% - 48px, 1360px);
  margin-inline: auto;
  padding-block: 72px 104px;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
}

.faq-category-panel {
  position: sticky;
  top: 96px;
  min-width: 0;
}

.faq-category-panel__title {
  margin: 0 0 8px;
  color: var(--blue-600);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-category-panel__description {
  margin: 0 0 24px;
  color: var(--ink-900);
  font-size: 0.9rem;
  line-height: 1.65;
}

.faq-redesign .testimoni-filter {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 7px;
}

.faq-redesign .testimoni-chip {
  position: relative;
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--ink-900);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  text-align: left;
  white-space: normal;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.faq-redesign .testimoni-chip::after {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.42;
}

.faq-redesign .testimoni-chip:hover {
  transform: translateX(3px);
  border-color: rgba(8, 37, 86, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--faq-navy);
}

.faq-redesign .testimoni-chip.is-active {
  border-color: rgba(8, 37, 86, 0.08);
  background: var(--orange-500);
  color: var(--blue-700);
  box-shadow: 0 10px 26px rgba(244, 170, 28, 0.2);
}

.faq-redesign .testimoni-chip.is-active::after {
  opacity: 1;
}

.faq-results-panel {
  min-width: 0;
}

.faq-results-panel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink-900);
}

.faq-results-panel__head h2 {
  margin: 0;
  color: var(--blue-700);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.faq-results-panel__head p {
  max-width: 420px;
  margin: 0;
  color: var(--ink-900);
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: right;
}

.faq-redesign .faq-list {
  counter-reset: faq-counter;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-redesign .faq-item {
  counter-increment: faq-counter;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink-900);
  border-radius: 18px;
  background: var(--orange-600);
  box-shadow: 0 8px 24px rgba(8, 37, 86, 0.045);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease,
    background-color 200ms ease;
}

.faq-redesign .faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 95, 170, 0.28);
  box-shadow: 0 14px 32px rgba(8, 37, 86, 0.08);
}

.faq-redesign .faq-item.is-open {
  border-color: rgba(244, 170, 28, 0.78);
  background: #fffaf0;
  box-shadow: 0 18px 38px rgba(244, 170, 28, 0.12);
}

.faq-redesign .faq-question {
  width: 100%;
  min-height: 74px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--ink-900);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(0.94rem, 1.3vw, 1.02rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
}

.faq-redesign .faq-question::before {
  content: counter(faq-counter, decimal-leading-zero);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.faq-redesign .faq-icon {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;

  border-radius: 50%;
  background: var(--orange-600);
  color: var(--ink-900);

  /* Sembunyikan karakter + bawaan */
  font-size: 0;
  line-height: 0;

  transition:
    transform 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease;
}

/* Garis horizontal dan vertikal pembentuk tanda + */
.faq-redesign .faq-icon::before,
.faq-redesign .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  width: 16px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;

  transform: translate(-50%, -50%);
}

.faq-redesign .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Saat FAQ dibuka, tanda + berubah menjadi × */
.faq-redesign .faq-item.is-open .faq-icon {
  transform: rotate(45deg);

  background: var(--white);
  color: var(--faq-navy);
}

.faq-redesign .faq-answer {
  margin: 0 18px 18px 76px;
  padding: 18px 20px;
  border-left: 3px solid var(--orange-500);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 255, 255, 0.78);
  color: var(--faq-text);
  font-size: 0.93rem;
  line-height: 1.8;
}

.faq-redesign .faq-answer p {
  margin: 0;
}

.faq-redesign .testimoni-empty {
  margin: 24px 0 0;
  padding: 24px;
  border: 1px dashed rgba(8, 37, 86, 0.2);
  border-radius: 16px;
  background: #ffffff;
  color: var(--faq-text);
  text-align: center;
}

/* Footer tetap sederhana, tetapi lebih menyatu */
.faq-redesign footer {
  margin: 0;
  background: var(--faq-navy);
}

.faq-redesign footer .footer-inner {
  width: min(100% - 48px, 1360px);
  margin-inline: auto;
}

.faq-redesign footer .footer-bottom {
  padding-block: 26px;
  border-top: 0;
}

.faq-redesign footer .footer-copyright {
  color: rgba(255, 255, 255, 0.72);
}

/* Tablet */
@media (max-width: 980px) {
  .faq-hero-v2__inner {
    grid-template-columns: minmax(0, 1fr) 240px;
    min-height: 320px;
    padding-block: 62px;
    gap: 40px;
  }

  .faq-content-v2 {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 32px;
    padding-block: 60px 88px;
  }

  .faq-results-panel__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .faq-results-panel__head p {
    text-align: left;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .faq-navbar,
  .faq-navbar__inner {
    min-height: 64px;
  }

  .faq-navbar__inner,
  .faq-hero-v2__inner,
  .faq-content-v2,
  .faq-redesign footer .footer-inner {
    width: min(100% - 32px, 1360px);
  }

  .faq-navbar .logo img {
    height: 31px;
  }

  .faq-navbar__actions {
    gap: 8px;
  }

  .faq-home-button,
  .faq-navbar .btn-app {
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .faq-home-button span {
    display: none;
  }

  .faq-hero-v2__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 56px;
  }

  .faq-hero-v2__visual {
    display: none;
  }

  .faq-hero-v2::after {
    width: 260px;
    height: 260px;
    top: auto;
    right: -110px;
    bottom: -150px;
    border-width: 50px;
  }

  .faq-hero-v2 h1 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .faq-content-v2 {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 48px 72px;
  }

  .faq-category-panel {
    position: static;
  }

  .faq-category-panel__description {
    margin-bottom: 16px;
  }

  .faq-redesign .testimoni-filter {
    width: calc(100vw - 16px);
    margin-right: calc((100vw - 100%) / -2);
    padding: 0 16px 8px 0;
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .faq-redesign .testimoni-filter::-webkit-scrollbar {
    display: none;
  }

  .faq-redesign .testimoni-chip {
    width: auto;
    min-width: max-content;
    padding-inline: 15px;
    border-color: rgba(8, 37, 86, 0.1);
    background: #ffffff;
    white-space: nowrap;
  }

  .faq-redesign .testimoni-chip::after {
    display: none;
  }

  .faq-redesign .testimoni-chip:hover {
    transform: none;
  }

  .faq-results-panel__head {
    margin-bottom: 20px;
  }

  .faq-redesign .faq-question {
    min-height: 68px;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 12px;
    padding: 14px;
  }

  .faq-redesign .faq-question::before {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 0.65rem;
  }

  .faq-redesign .faq-icon {
    width: 32px;
    height: 32px;
  }

  .faq-redesign .faq-answer {
    margin: 0 14px 14px;
    padding: 16px;
    border-left-width: 3px;
  }
}

@media (max-width: 430px) {
  .faq-navbar__inner {
    gap: 10px;
  }

  .faq-navbar .btn-app {
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .faq-hero-v2__eyebrow {
    margin-bottom: 18px;
    font-size: 0.66rem;
  }

  .faq-hero-v2 p {
    font-size: 0.94rem;
  }

  .faq-results-panel__head h2 {
    font-size: 1.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .faq-skip-link,
  .faq-home-button,
  .faq-navbar .btn-app,
  .faq-redesign .testimoni-chip,
  .faq-redesign .faq-item,
  .faq-redesign .faq-icon {
    transition: none;
  }

  .faq-home-button:hover,
  .faq-navbar .btn-app:hover,
  .faq-redesign .testimoni-chip:hover,
  .faq-redesign .faq-item:hover {
    transform: none;
  }
}
/* =====================================================
   CTA PENUTUP
   ===================================================== */
/* =====================================================
   CTA PENUTUP
   ===================================================== */

.closing-cta {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 88px 24px;
  background-color: #efad27;
  color: #082556;
}

/* Container utama */
.closing-cta__container {
  width: min(100%, 1480px);
  margin-inline: auto;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: center;
  gap: clamp(56px, 8vw, 140px);
}

/* Bagian teks */
.closing-cta__content {
  min-width: 0;
}

.closing-cta__label {
  margin: 0 0 30px;

  color: #082556;

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* Judul utama */
.closing-cta__title {
  max-width: 1080px;
  margin: 0;

  color: #082556;

  font-family: inherit;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;

  text-wrap: balance;
}

/* Font tetap sama, hanya italic */
.closing-cta__title span {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: italic;
  line-height: inherit;
  letter-spacing: inherit;
}

/* Container kedua tombol */
.closing-cta__actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

/* Tombol Masuk ke Aplikasi dan Hubungi Admin */
.closing-cta__button {
  width: 100%;
  min-height: 62px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 14px 24px;

  border-radius: 22px;

  background-color: #ffffff;
  color: #082556;

  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;

  cursor: pointer;

  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

/* Panah tombol */
.closing-cta__arrow {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #082556;

  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;

  transition: transform 220ms ease;
}

/* Hover */
.closing-cta__button:hover {
  transform: translateY(-3px);
  background-color: #fffdf8;

  box-shadow:
    0 14px 30px rgba(8, 37, 86, 0.11),
    0 4px 10px rgba(8, 37, 86, 0.05);
}

.closing-cta__button:hover .closing-cta__arrow {
  transform: translate(3px, -3px);
}

/* Saat tombol ditekan */
.closing-cta__button:active {
  transform: translateY(-1px);
}

/* Aksesibilitas keyboard */
.closing-cta__button:focus-visible {
  outline: 3px solid #082556;
  outline-offset: 4px;
}

/* =====================================================
     TABLET
     ===================================================== */

@media (max-width: 1100px) {
  .closing-cta {
    padding-block: 76px;
  }

  .closing-cta__container {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 52px;
  }

  .closing-cta__title {
    font-size: clamp(42px, 5.8vw, 62px);
  }

  .closing-cta__button {
    min-height: 58px;
    padding-inline: 21px;
    border-radius: 20px;
  }
}

/* =====================================================
     MOBILE
     ===================================================== */

@media (max-width: 767px) {
  .closing-cta {
    padding: 64px 20px;
  }

  .closing-cta__container {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .closing-cta__label {
    margin-bottom: 20px;

    font-size: 12px;
    letter-spacing: 0.2em;
  }

  .closing-cta__title {
    max-width: 680px;

    font-size: clamp(36px, 10vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .closing-cta__actions {
    width: 100%;
    max-width: 360px;
    gap: 12px;
  }

  .closing-cta__button {
    min-height: 56px;

    padding: 12px 20px;
    border-radius: 19px;

    font-size: 15px;
  }

  .closing-cta__arrow {
    font-size: 18px;
  }
}

/* =====================================================
     MOBILE KECIL
     ===================================================== */

@media (max-width: 420px) {
  .closing-cta {
    padding: 56px 16px;
  }

  .closing-cta__title {
    font-size: 37px;
  }

  .closing-cta__actions {
    max-width: none;
  }

  .closing-cta__button {
    min-height: 54px;
    padding-inline: 18px;
    border-radius: 18px;
  }
}

/* =====================================================
     REDUCED MOTION
     ===================================================== */

@media (prefers-reduced-motion: reduce) {
  .closing-cta__button,
  .closing-cta__arrow {
    transition: none;
  }

  .closing-cta__button:hover,
  .closing-cta__button:active {
    transform: none;
  }

  .closing-cta__button:hover .closing-cta__arrow {
    transform: none;
  }
}
/* ---------- Section Kurasi ---------- */
.kurasi-section.kurasi-v4 {
  --kurasi-blue: #155faa;
  --kurasi-blue-dark: #0d477f;
  --kurasi-yellow: #fcc910;
  --kurasi-orange: #fc7801;
  --kurasi-cream: #fff9e9;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--kurasi-cream);
}

.kurasi-v4__inner {
  width: 100%;
  max-width: none;
  margin: 0;
}

.kurasi-v4__panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.6fr);
  width: 100%;
  min-height: 660px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--kurasi-cream);
  box-shadow: none;
}

.kurasi-v4__intro {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(38px, 4.5vw, 64px);
  color: var(--kurasi-blue-dark);
  background: linear-gradient(
    150deg,
    var(--kurasi-yellow) 0%,
    #f4aa1c 56%,
    var(--kurasi-orange) 100%
  );
}

.kurasi-v4__intro p {
  margin-bottom: 20px;
}

.kurasi-v4__intro::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -72px;
  z-index: -1;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(21, 95, 170, 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.kurasi-v4 .kurasi-eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 32px;
  margin-bottom: 22px;
  padding: 7px 13px;
  border: 1px solid rgba(21, 95, 170, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: var(--kurasi-blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.kurasi-v4__intro h2 {
  max-width: 470px;
  margin: 0 0 20px;
  color: var(--kurasi-blue-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 2.4vw + 0.7rem, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.mitra-logo img {
  height: 36px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 38px;
  padding-top: 26px;
}

.kurasi-v4__disclaimer-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.32);
  color: var(--kurasi-blue-dark);
}

.kurasi-v4__disclaimer-icon svg {
  width: 22px;
  height: 22px;
}

.kurasi-v4__disclaimer p {
  margin-top: 20px;
 ;
  color: rgba(12, 71, 127, 0.8);
  font-size: 0.78rem;
  line-height: 1.62;
}

.kurasi-v4__disclaimer strong,
.kurasi-v4__disclaimer a {
  color: var(--kurasi-blue-dark);
  font-weight: 700;
}

.kurasi-v4__disclaimer a {
  text-underline-offset: 3px;
}

.kurasi-v4__check-btn {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--kurasi-blue-dark);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.kurasi-v4__check-btn svg {
  width: 16px;
  height: 16px;
}

.kurasi-v4__check-btn:hover {
  background: #0a3a66;
  transform: translateY(-1px);
}

.kurasi-v4__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 3.4vw, 48px);
  background: var(--kurasi-cream);
}

.kurasi-v4__content-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 20px;
  color: var(--kurasi-blue-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.kurasi-v4 .kurasi-events {
  display: grid;
  gap: 12px;
  width: 100%;
}

.kurasi-v4 .kurasi-event-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  padding: 17px 20px;
  border: 1px solid rgba(21, 95, 170, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px -26px rgba(13, 71, 127, 0.58);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.kurasi-v4 .kurasi-event-row:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 95, 170, 0.24);
  box-shadow: 0 18px 36px -28px rgba(13, 71, 127, 0.7);
}

.kurasi-v4 .kurasi-event-row:has(.kurasi-event-logo) {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.kurasi-v4 .kurasi-event-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
}

.kurasi-v4 .kurasi-event-title {
  margin: 0 0 4px;
  color: var(--kurasi-blue-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: -0.012em;
  line-height: 1.4;
}

.kurasi-v4 .kurasi-event-meta {
  color: rgba(12, 71, 127, 0.72);
  font-size: 0.76rem;
  line-height: 1.5;
}

.kurasi-v4 .kurasi-event-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.kurasi-v4 .kurasi-badge--selesai {
  background: rgba(21, 95, 170, 0.1);
  color: var(--kurasi-blue);
}

.kurasi-v4 .kurasi-badge--proses {
  background: rgba(252, 201, 16, 0.2);
  color: #8a6500;
}

.kurasi-v4 .kurasi-badge--revisi {
  background: rgba(252, 120, 1, 0.12);
  color: #b95400;
}

.kurasi-v4 .kurasi-badge--belum {
  background: rgba(83, 103, 126, 0.12);
  color: #53677e;
}


/* Jaga tinggi area data setara 5 baris agar pagination tidak naik-turun di halaman terakhir. */
.kurasi-v4 .kurasi-events {
  min-height: calc((78px * 5) + (12px * 4));
  align-content: start;
}

/* Footer bar: Cek Kurasi (kiri) & Pagination (kanan), sejajar satu baris */
.kurasi-v4__footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* Pagination data Kurasi: 5 item per halaman */
.kurasi-pagination {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  min-height: 46px;
}

.kurasi-pagination[hidden] {
  display: none;
}

.kurasi-pagination__group {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(13, 71, 127, 0.18);
  border-radius: 11px;
  background: #ffffff;
  box-shadow: 0 8px 22px -18px rgba(13, 71, 127, 0.42);
}

.kurasi-pagination__button {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 46px;
  padding: 0 13px;
  border: 0;
  border-right: 1px solid rgba(13, 71, 127, 0.16);
  background: #ffffff;
  color: #66758a;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.kurasi-pagination__button:last-child {
  border-right: 0;
}

.kurasi-pagination__button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kurasi-pagination__button:hover:not(:disabled):not(.is-active) {
  background: #f7fafc;
  color: var(--kurasi-blue-dark);
}

.kurasi-pagination__button.is-active {
  position: relative;
  z-index: 1;
  background: #f5f7ff;
  color: #4054e8;
  box-shadow: inset 0 0 0 1px #5266ff;
}

.kurasi-pagination__button:disabled {
  color: #aeb8c5;
  cursor: default;
  background: #fbfcfd;
}

.kurasi-pagination__button:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid rgba(82, 102, 255, 0.22);
  outline-offset: -3px;
}

@media (max-width: 1080px) {
  .kurasi-v4__panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .kurasi-v4__intro {
    justify-content: flex-start;
    min-height: 0;
    padding: 48px;
  }

  .kurasi-v4__intro h2,
  .kurasi-v4__intro > p {
    max-width: 780px;
  }

  .kurasi-v4__disclaimer {
    max-width: 780px;
  }
}

@media (max-width: 720px) {
  .kurasi-section.kurasi-v4 {
    padding: 0;
  }

  .kurasi-v4__intro,
  .kurasi-v4__content {
    padding: 32px 24px;
  }

  .kurasi-v4__intro::after {
    right: -84px;
    bottom: -92px;
  }

  .kurasi-v4__content-head {
    display: none;
  }

  .kurasi-v4 .kurasi-events {
    gap: 10px;
    min-height: 0;
  }

  .kurasi-v4 .kurasi-event-row {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 17px;
  }

  .kurasi-v4 .kurasi-event-badge {
    justify-self: start;
  }

  .kurasi-v4__footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .kurasi-pagination {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
    width: 100%;
  }

  .kurasi-pagination::-webkit-scrollbar {
    display: none;
  }

  .kurasi-pagination__button {
    min-width: 42px;
    height: 42px;
    padding-inline: 11px;
    font-size: 0.82rem;
  }
}

@media (max-width: 420px) {
  .kurasi-section.kurasi-v4 {
    padding: 0;
  }

  .kurasi-v4__intro,
  .kurasi-v4__content {
    padding: 28px 20px;
  }

  .kurasi-v4__disclaimer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kurasi-v4 .kurasi-event-row {
    transition: none;
  }

  .kurasi-v4 .kurasi-event-row:hover {
    transform: none;
  }
}

/* ---------- Bertumbuh melalui Kolaborasi ---------- */
.kolaborasi-section {
  padding: 72px 0 56px;
  text-align: center;
}
.kolaborasi-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
}
.kolaborasi-inner h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem);
  margin-bottom: 12px;
}
.kolaborasi-inner p {
  color: var(--body-600);
  font-size: 0.95rem;
  line-height: 1.6;
}
.mitra-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  margin-top: 36px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.mitra-track {
  display: inline-flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.mitra-logo {
  width: 350px;
  display: inline-flex;
  align-items: center;
  padding: 0 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--body-600);
  opacity: 0.7;
}
.mitra-logo img {
  height: 66px;
  width: auto;
  object-fit: contain;
}
@media (prefers-reduced-motion: reduce) {
  .mitra-track {
    animation: none;
  }
}