/* Dompet QU landing */

:root {
  --lp-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --lp-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --lp-sky: #0ea5e9;
  --lp-sky-deep: #0369a1;
  --lp-mist: #f0f9ff;
  --lp-ink: #0b1f33;
  --lp-muted: #64748b;
  --lp-line: #e2e8f0;
  --lp-radius: 1.25rem;
  --lp-radius-lg: 1.6rem;
  --dq-btn-radius: .95rem;
  /* Full-bleed shell: content uses viewport width with fluid side padding */
  --lp-max: 100%;
  --lp-pad: clamp(1.15rem, 4vw, 3.5rem);
  --lp-section-y: clamp(3.25rem, 7vw, 5.5rem);
  --lp-shadow: 0 22px 50px -28px rgba(3, 105, 161, .5);
  --lp-prose: 42rem;
  --lp-header-h: 4.1rem;
  --lp-detail-hero-h: 22.5rem;
  /* Mobile: 2 kolom, tinggi seragam & ringkas untuk scan katalog */
  --lp-service-ratio: 1 / 1;
  --lp-service-min-h: 12.75rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

html[data-portal="landing"] {
  height: 100%;
  overflow: hidden;
  scrollbar-gutter: auto;
}

.lp-body {
  font-family: var(--lp-body);
  color: var(--lp-ink);
  background: #fff;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size-adjust: 0.52;
  letter-spacing: -0.011em;
  line-height: 1.55;
  /* Shell: header tetap, konten+footer di .lp-shell-scroll */
  height: 100%;
  max-height: 100dvh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.lp-display {
  font-family: var(--lp-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---------- Layout primitives ---------- */
.lp-container {
  width: 100%;
  max-width: var(--lp-max);
  margin-inline: 0;
  padding-inline: var(--lp-pad);
}

/* Full-width shells (edge to edge) */
.lp-header,
.lp-hero,
.lp-detail-hero,
.lp-section,
.lp-marquee,
.lp-footer,
#dq-page,
main {
  width: 100%;
  max-width: 100%;
}

/* Cadangan tinggi konten agar footer tidak loncat saat konten pendek */
#dq-page {
  flex: 1 0 auto;
  width: 100%;
  max-width: 100%;
  /* Isi sisa viewport di bawah header — footer tetap di dasar saat konten pendek */
  min-height: calc(100svh - var(--lp-header-h) - 12.5rem);
  min-height: calc(100dvh - var(--lp-header-h) - 12.5rem);
}
.lp-section {
  padding: var(--lp-section-y) 0;
  position: relative;
}

.lp-section--mist {
  background:
    radial-gradient(700px 280px at 8% 0%, rgba(56,189,248,.16), transparent 60%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.lp-section--tight-top { padding-top: clamp(2rem, 4vw, 3rem); }
.lp-section--tight-bottom { padding-bottom: clamp(2rem, 4vw, 3rem); }
.lp-section--flush-bottom { padding-bottom: 0; }

.lp-stack { display: grid; gap: 1rem; }
.lp-stack-lg { display: grid; gap: clamp(2rem, 5vw, 3.5rem); }

.lp-page-intro {
  max-width: var(--lp-prose);
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}
.lp-page-intro--center { margin-inline: auto; text-align: center; }
.lp-page-intro--center .lp-sub { margin-inline: auto; }
.lp-page-intro--wide { max-width: min(56rem, 100%); }

.lp-kicker {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lp-sky);
  margin: 0 0 .35rem;
}
.lp-kicker--light { color: #bae6fd; }

.lp-title {
  font-family: var(--lp-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.65rem, 3.8vw, 2.65rem);
  line-height: 1.15;
  margin: 0;
  color: var(--lp-ink);
}

.lp-title--sm { font-size: clamp(1.35rem, 2.8vw, 1.85rem); }

.lp-sub {
  color: var(--lp-muted);
  margin: .7rem 0 0;
  max-width: 40rem;
  line-height: 1.65;
  font-size: clamp(.92rem, 1.6vw, 1.02rem);
}

.lp-sub--wide { max-width: none; }

/* ---------- Buttons ---------- */
/* Default tinggi = kontrol form (--dqf-height via forms.css). CTA pemasaran boleh lebih tinggi. */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: var(--dqf-height, 2.7rem);
  min-height: var(--dqf-height, 2.7rem);
  padding: 0 1.15rem;
  border-radius: var(--dq-btn-radius, .95rem);
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  box-sizing: border-box;
}
.lp-btn:hover { transform: translateY(-2px); }
.lp-btn:active { transform: translateY(0); }
.lp-btn-sm {
  height: var(--dqf-height, 2.7rem);
  min-height: var(--dqf-height, 2.7rem);
  padding: 0 1rem;
  font-size: .84rem;
}
/* CTA hero / section pemasaran — sedikit lebih besar dari kontrol form */
.lp-hero .lp-btn,
.lp-cta .lp-btn,
.lp-page-hero .lp-btn,
.lp-btn-row .lp-btn:not(.lp-form__submit) {
  height: auto;
  min-height: 2.85rem;
  max-height: none;
  padding: .75rem 1.35rem;
}

.lp-btn-primary {
  background: #fff;
  color: var(--lp-sky-deep);
  box-shadow: 0 14px 34px -16px rgba(255,255,255,.75);
}
.lp-btn-primary:hover { background: #e0f2fe; }

.lp-btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.lp-btn-ghost:hover { background: rgba(255,255,255,.2); }

.lp-btn-sky {
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
  color: #fff;
  box-shadow: 0 16px 36px -16px rgba(14,165,233,.8);
}
.lp-btn-sky:hover { filter: brightness(1.05); }

.lp-btn-outline {
  background: #fff;
  color: var(--lp-sky-deep);
  border-color: #bae6fd;
  box-shadow: none;
}
.lp-btn-outline:hover { background: #f0f9ff; }

.lp-btn-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.35rem; }

/* ---------- Header (di luar .lp-shell-scroll) ---------- */
.lp-header {
  position: relative;
  top: auto;
  z-index: 60;
  flex: 0 0 auto;
  flex-shrink: 0;
  height: var(--lp-header-h);
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(186,230,253,.45);
  transition: box-shadow .25s ease, background .25s ease;
}

.lp-shell-scroll {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  scrollbar-gutter: auto !important;
}
.lp-header.is-scrolled {
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 30px -22px rgba(3,105,161,.4);
}

.lp-header__inner {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding-inline: var(--lp-pad);
  height: var(--lp-header-h);
  min-height: var(--lp-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.02em;
  color: var(--lp-ink);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  position: relative;
  z-index: 1;
}
.lp-logo:hover,
.lp-logo:active,
.lp-logo:focus,
.lp-logo:focus-visible,
.lp-logo.active,
.lp-logo.is-active {
  color: var(--lp-ink);
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
  filter: none;
}
.lp-logo__mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: .85rem;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 10px 24px -12px rgba(14,165,233,.8);
}
.lp-logo__text { white-space: nowrap; }
.lp-logo__text em,
.lp-footer__brand-text em {
  font-style: normal;
  color: var(--lp-sky-deep);
}
.lp-nav {
  display: none;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  font-size: .88rem;
}
.lp-nav a {
  position: relative;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  padding: .25rem 0;
  transition: color .2s;
}
.lp-nav a:hover,
.lp-nav a.active { color: var(--lp-sky-deep); }
.lp-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--lp-sky), var(--lp-sky-deep));
}

.lp-header__actions {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
}

.lp-link-quiet {
  display: none;
  font-size: .86rem;
  font-weight: 700;
  color: #475569;
  text-decoration: none;
  padding: .45rem .7rem;
}
.lp-link-quiet:hover { color: var(--lp-sky-deep); }

.lp-menu-btn {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: .9rem;
  border: 1px solid #bae6fd;
  background: #fff;
  color: var(--lp-sky-deep);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.lp-menu-btn:hover {
  background: #f0f9ff;
  box-shadow: 0 10px 22px -16px rgba(3,105,161,.55);
}
.lp-menu-btn__box {
  position: relative;
  width: 1.15rem;
  height: .9rem;
  display: block;
  flex-shrink: 0;
}
.lp-menu-btn__bar {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .28s ease, opacity .2s ease, top .28s ease;
}
.lp-menu-btn__bar:nth-child(1) { top: 0; }
.lp-menu-btn__bar:nth-child(2) { top: .35rem; }
.lp-menu-btn__bar:nth-child(3) { top: .7rem; }
.lp-menu-btn[aria-expanded="true"] {
  background: #0369a1;
  border-color: #0369a1;
  color: #fff;
}
.lp-menu-btn[aria-expanded="true"] .lp-menu-btn__bar:nth-child(1) {
  top: .35rem;
  transform: rotate(45deg);
}
.lp-menu-btn[aria-expanded="true"] .lp-menu-btn__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.lp-menu-btn[aria-expanded="true"] .lp-menu-btn__bar:nth-child(3) {
  top: .35rem;
  transform: rotate(-45deg);
}

/* ---------- Mobile sheet menu ---------- */
.lp-mobile {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  visibility: hidden;
}
.lp-mobile.is-open {
  pointer-events: auto;
  visibility: visible;
}
.lp-mobile[hidden] { display: block !important; visibility: hidden; pointer-events: none; }
.lp-mobile.is-open[hidden] { visibility: visible; pointer-events: auto; }

.lp-mobile__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(11, 31, 51, .48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .3s ease;
}
.lp-mobile.is-open .lp-mobile__backdrop { opacity: 1; }

.lp-mobile__sheet {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  max-height: min(92dvh, 42rem);
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem 1.5rem 0 0;
  background:
    radial-gradient(480px 180px at 10% 0%, rgba(56,189,248,.22), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(186,230,253,.75);
  border-bottom: 0;
  box-shadow: 0 -24px 60px -28px rgba(3,105,161,.55);
  padding: 1rem 1rem calc(1.15rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(108%);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
  overflow: hidden;
  /* tinggi mengikuti konten, dibatasi max-height */
  height: auto;
}
.lp-mobile.is-open .lp-mobile__sheet { transform: translateY(0); }

.lp-mobile__glow {
  position: absolute;
  top: -.5rem; left: 50%;
  width: 4.5rem; height: .28rem;
  margin-left: -2.25rem;
  border-radius: 999px;
  background: #cbd5e1;
  z-index: 2;
}

.lp-mobile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .85rem;
  padding-top: .55rem;
}
.lp-mobile__brand {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.lp-mobile__brand img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: .8rem;
  box-shadow: 0 10px 22px -12px rgba(14,165,233,.7);
}
.lp-mobile__brand strong {
  display: block;
  font-family: var(--lp-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--lp-ink);
  line-height: 1.15;
}
.lp-mobile__brand em {
  font-style: normal;
  color: var(--lp-sky-deep);
}
.lp-mobile__brand span {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: #64748b;
  margin-top: .1rem;
}
.lp-mobile__close {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: .85rem;
  border: 1px solid #dbeafe;
  background: #fff;
  color: #0369a1;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background .2s ease, transform .2s ease;
}
.lp-mobile__close:hover {
  background: #f0f9ff;
  transform: rotate(90deg);
}

.lp-mobile__nav {
  overflow-y: auto;
  overscroll-behavior: contain;
  flex: 1 1 auto;
  min-height: 12rem;
  max-height: min(58dvh, 26rem);
  padding-right: .15rem;
  margin-right: -.1rem;
  scrollbar-width: thin;
}
.lp-mobile__label {
  margin: .55rem 0 .4rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #94a3b8;
}
.lp-mobile__grid {
  display: grid;
  gap: .4rem;
}

.lp-mobile__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .75rem;
  padding: .72rem .8rem;
  border-radius: 1rem;
  text-decoration: none;
  color: #0f172a;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(226,232,240,.95);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  opacity: 0;
  transform: translateY(10px);
}
.lp-mobile.is-open .lp-mobile__item {
  animation: lpMobileItemIn .38s cubic-bezier(.22, 1, .36, 1) both;
}
.lp-mobile.is-open .lp-mobile__grid:nth-of-type(1) .lp-mobile__item:nth-child(1) { animation-delay: .05s; }
.lp-mobile.is-open .lp-mobile__grid:nth-of-type(1) .lp-mobile__item:nth-child(2) { animation-delay: .09s; }
.lp-mobile.is-open .lp-mobile__grid:nth-of-type(1) .lp-mobile__item:nth-child(3) { animation-delay: .13s; }
.lp-mobile.is-open .lp-mobile__grid:nth-of-type(1) .lp-mobile__item:nth-child(4) { animation-delay: .17s; }
.lp-mobile.is-open .lp-mobile__grid:nth-of-type(2) .lp-mobile__item:nth-child(1) { animation-delay: .21s; }
.lp-mobile.is-open .lp-mobile__grid:nth-of-type(2) .lp-mobile__item:nth-child(2) { animation-delay: .25s; }
.lp-mobile.is-open .lp-mobile__grid:nth-of-type(2) .lp-mobile__item:nth-child(3) { animation-delay: .29s; }
.lp-mobile.is-open .lp-mobile__grid:nth-of-type(2) .lp-mobile__item:nth-child(4) { animation-delay: .33s; }
@keyframes lpMobileItemIn {
  to { opacity: 1; transform: none; }
}
.lp-mobile__item:active { transform: scale(.985); }
.lp-mobile__item.is-active {
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  border-color: #7dd3fc;
  box-shadow: 0 12px 28px -20px rgba(3,105,161,.55);
}
.lp-mobile__ico {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: .8rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e0f2fe, #ffffff);
  border: 1px solid #bae6fd;
  color: #0369a1;
  font-size: 1.05rem;
}
.lp-mobile__item.is-active .lp-mobile__ico {
  background: linear-gradient(145deg, #0ea5e9, #0369a1);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 20px -12px rgba(3,105,161,.8);
}
.lp-mobile__txt {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  min-width: 0;
}
.lp-mobile__txt b {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.lp-mobile__txt small {
  font-size: .72rem;
  font-weight: 600;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-mobile__go {
  color: #94a3b8;
  font-size: .85rem;
}
.lp-mobile__item.is-active .lp-mobile__go { color: #0284c7; }

.lp-mobile__cta {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: .55rem;
  margin-top: .9rem;
  padding-top: .85rem;
  border-top: 1px solid #e2e8f0;
}
.lp-mobile__cta-btn {
  width: 100%;
  justify-content: center;
  min-height: 2.75rem;
  margin: 0;
}

body.lp-menu-open {
  overflow: hidden;
  touch-action: none;
}

@media (min-width: 1024px) {
  .lp-nav { display: flex; }
  .lp-link-quiet { display: inline-flex; }
  .lp-menu-btn,
  .lp-mobile { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-mobile__backdrop,
  .lp-mobile__sheet,
  .lp-menu-btn__bar,
  .lp-mobile__item {
    transition: none !important;
    animation: none !important;
  }
  .lp-mobile.is-open .lp-mobile__item {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Hero (full-bleed overlay — konten SELALU di atas gambar) ---------- */
.lp-hero {
  position: relative;
  isolation: isolate;
  min-height: min(100svh, 820px);
  height: min(100svh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #0369a1;
}
.lp-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.04);
  transform-origin: center center;
  will-change: transform;
  transition: transform .5s ease;
  animation: lpHeroZoom 18s ease-in-out infinite alternate;
}
@keyframes lpHeroZoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.08); }
}
.lp-hero__veil {
  --lp-spot-x: 22%;
  --lp-spot-y: 28%;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3,105,161,.22) 0%, rgba(11,31,51,.45) 48%, rgba(11,31,51,.92) 100%),
    radial-gradient(640px 360px at var(--lp-spot-x) var(--lp-spot-y), rgba(125,211,252,.32), transparent 62%),
    radial-gradient(900px 420px at 18% 18%, rgba(56,189,248,.28), transparent 60%),
    radial-gradient(700px 280px at 90% 80%, rgba(14,165,233,.2), transparent 55%);
  transition: opacity .4s ease;
}
.lp-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding: clamp(5.5rem, 12vw, 8rem) var(--lp-pad) clamp(3.5rem, 8vw, 5rem);
  transform: translateZ(0);
}
.lp-hero__brand-row {
  display: flex;
  align-items: center;
  gap: clamp(.85rem, 2.5vw, 1.35rem);
}
.lp-hero__mark {
  width: clamp(3.25rem, 9vw, 5.25rem);
  height: clamp(3.25rem, 9vw, 5.25rem);
  border-radius: clamp(.9rem, 2vw, 1.35rem);
  flex-shrink: 0;
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.45);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
}
.lp-hero.is-hot .lp-hero__mark {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 48px -14px rgba(14,165,233,.55);
}
.lp-hero__brand {
  font-family: var(--lp-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(2.2rem, 7.5vw, 4.5rem);
  line-height: .95;
  margin: 0;
  text-shadow: 0 10px 40px rgba(0,0,0,.28);
}
.lp-hero__brand span {
  color: #7dd3fc;
  background: linear-gradient(120deg, #7dd3fc, #e0f2fe 55%, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-hero__lead {
  max-width: 34rem;
  margin: .85rem 0 0;
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,.94);
  line-height: 1.5;
  font-weight: 500;
  text-shadow: 0 6px 24px rgba(0,0,0,.28);
}
.lp-hero .lp-btn-row { margin-top: 1.5rem; }
.lp-hero .lp-btn {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lp-scroll-hint {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  width: 22px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.55);
  cursor: pointer;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.lp-scroll-hint:hover {
  opacity: 1;
  border-color: rgba(255,255,255,.95);
  transform: translateX(-50%) translateY(2px);
}
.lp-scroll-hint::after {
  content: '';
  position: absolute; left: 50%; top: 7px;
  width: 4px; height: 8px; margin-left: -2px; border-radius: 999px;
  background: #fff;
  animation: lpScroll 1.6s ease-in-out infinite;
}
@keyframes lpScroll {
  0%, 100% { opacity: .25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(9px); }
}
@media (max-width: 640px) {
  .lp-hero {
    min-height: min(92svh, 700px);
    height: min(92svh, 700px);
  }
  .lp-hero__content {
    padding-bottom: clamp(2.75rem, 8vw, 3.75rem);
  }
  .lp-scroll-hint { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-hero__media { animation: none !important; transition: none !important; }
}

/* ---------- Marquee ---------- */
.lp-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(186,230,253,.7);
  background: var(--lp-mist);
  padding: .85rem 0;
}
.lp-marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: lpMarquee 32s linear infinite;
  font-weight: 700;
  color: var(--lp-sky-deep);
  font-size: .86rem;
}
.lp-marquee__track span { white-space: nowrap; opacity: .85; }
@keyframes lpMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Service tiles ---------- */
.lp-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.lp-service {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: calc(var(--lp-radius-lg) - .2rem);
  min-height: var(--lp-service-min-h);
  aspect-ratio: var(--lp-service-ratio);
  width: 100%;
  height: auto;
  isolation: isolate;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--lp-shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  contain: layout paint;
}
.lp-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 55px -24px rgba(3,105,161,.6);
}
.lp-service img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.lp-service:hover img { transform: scale(1.06); }
.lp-service__veil {
  position: absolute; inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(11,31,51,.08) 8%, rgba(11,31,51,.55) 48%, rgba(11,31,51,.92) 100%);
}
.lp-service__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: .85rem .85rem .9rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: .2rem;
  min-height: 42%;
}
.lp-service__meta {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #bae6fd;
  margin: 0;
}
.lp-service__body h3,
.lp-service__body h2 {
  font-family: var(--lp-display);
  font-weight: 750;
  font-size: .92rem;
  letter-spacing: -.02em;
  margin: 0;
  line-height: 1.22;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.44em;
}
.lp-service__body p {
  margin: 0;
  font-size: .72rem;
  color: rgba(255,255,255,.84);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  min-height: 2.8em;
}
.lp-service__go {
  display: inline-flex;
  margin-top: .15rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #bae6fd;
}
.lp-service--tall {
  min-height: var(--lp-service-min-h);
  aspect-ratio: var(--lp-service-ratio);
}

/* Feature blocks on Fitur page — same rhythm as spotlight */
.lp-feature-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--lp-radius-lg);
  border: 1px solid #dbeafe;
  background: #fff;
  box-shadow: 0 14px 40px -30px rgba(15, 23, 42, .35);
}
.lp-feature-block__media {
  position: relative;
  overflow: hidden;
  border-radius: 1.15rem;
  min-height: 200px;
  order: -1;
}
.lp-feature-block__media img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.lp-feature-block__body .lp-title { margin-bottom: .35rem; }
.lp-feature-block__body .lp-sub { margin-top: .35rem; }
@media (min-width: 900px) {
  .lp-feature-block {
    grid-template-columns: 1.05fr .95fr;
    gap: 2rem;
    padding: 1.75rem;
  }
  .lp-feature-block__media {
    order: 0;
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }
  .lp-feature-block__media img {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }
  .lp-feature-block--reverse { grid-template-columns: .95fr 1.05fr; }
  .lp-feature-block--reverse .lp-feature-block__media { order: -1; }
}

@media (min-width: 640px) {
  .lp-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .lp-grid-3 { gap: 1rem; }
  :root {
    --lp-service-ratio: 4 / 5;
    --lp-service-min-h: 0;
  }
  .lp-service { border-radius: var(--lp-radius-lg); }
  .lp-service__body {
    padding: 1.1rem 1.15rem 1.2rem;
    gap: .28rem;
    min-height: 0;
  }
  .lp-service__meta { font-size: .65rem; }
  .lp-service__body h3,
  .lp-service__body h2 { font-size: 1.05rem; min-height: 0; }
  .lp-service__body p { font-size: .8rem; min-height: 2.3em; }
  .lp-service__go { font-size: .72rem; margin-top: .25rem; }
}

@media (min-width: 900px) {
  .lp-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
  :root { --lp-service-ratio: 4 / 5; }
  .lp-service__body h3,
  .lp-service__body h2 { font-size: 1.08rem; }
}

/* Ultra-wide: utilize full viewport width */
@media (min-width: 1280px) {
  .lp-grid-3 { grid-template-columns: repeat(4, 1fr); }
}

/* Layar sangat sempit: tetap 2 kolom, kartu lebih kompak */
@media (max-width: 360px) {
  :root {
    --lp-service-ratio: 1 / 1;
    --lp-service-min-h: 9.75rem;
  }
  .lp-grid-3 { gap: .6rem; }
  .lp-service__body { padding: .7rem .7rem .75rem; }
  .lp-service__body p { -webkit-line-clamp: 1; min-height: 1.4em; }
}
@media (min-width: 1600px) {
  :root { --lp-pad: clamp(2rem, 3.5vw, 4.5rem); }
}

/* ---------- Spotlight ---------- */
.lp-spotlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
}
.lp-spotlight__visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 16 / 10;
  min-height: 0;
  height: auto;
  box-shadow: 0 18px 40px -24px rgba(3, 105, 161, .45);
  background: #e0f2fe;
  transform: translateZ(0); /* paksa clip radius seragam di mobile WebKit */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.lp-spotlight__visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 30%;
  border-radius: inherit;
  min-height: 0;
  aspect-ratio: auto;
}
.lp-spotlight__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0;
  gap: 0;
}
.lp-spotlight__copy .lp-kicker {
  margin: 0 0 .4rem;
}
.lp-spotlight__copy .lp-title {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(1.45rem, 6.2vw, 2rem);
  line-height: 1.2;
  text-wrap: balance;
}
.lp-spotlight__copy .lp-sub {
  margin: .65rem 0 0;
  max-width: 36rem;
  font-size: .92rem;
  line-height: 1.6;
}
.lp-spotlight__copy .lp-chips {
  margin-top: .95rem;
  width: 100%;
}
.lp-spotlight__copy .lp-btn-row {
  margin-top: 1.15rem;
  width: 100%;
}
.lp-spotlight__copy .lp-btn {
  width: 100%;
  max-width: 20rem;
}

@media (min-width: 640px) {
  .lp-spotlight { gap: 1.5rem; }
  .lp-spotlight__visual {
    border-radius: var(--lp-radius-lg);
    aspect-ratio: 16 / 10;
  }
  .lp-spotlight__copy .lp-title {
    max-width: none;
    font-size: clamp(1.65rem, 3.8vw, 2.65rem);
  }
  .lp-spotlight__copy .lp-sub { font-size: clamp(.92rem, 1.6vw, 1.02rem); }
  .lp-spotlight__copy .lp-btn { width: auto; max-width: none; }
}

@media (min-width: 900px) {
  .lp-spotlight {
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(1.75rem, 3vw, 2.75rem);
    align-items: center;
  }
  .lp-spotlight__visual {
    order: 2;
    min-height: 20rem;
    aspect-ratio: 16 / 10;
    box-shadow: var(--lp-shadow);
  }
  .lp-spotlight__copy {
    order: 1;
  }
  .lp-spotlight__copy .lp-title { max-width: 18ch; }
  .lp-spotlight--reverse {
    grid-template-columns: 1.05fr .95fr;
  }
  .lp-spotlight--reverse .lp-spotlight__visual { order: 1; }
  .lp-spotlight--reverse .lp-spotlight__copy { order: 2; }
}

/* ---------- Feature / why tiles ---------- */
/* Grid khusus Dasar operasi — beda dari katalog layanan (2 kolom) */
.lp-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
  width: 100%;
}

.lp-feature {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 1.25rem;
  min-height: 9.5rem;
  aspect-ratio: 16 / 9;
  width: 100%;
  color: #fff;
  contain: layout paint;
  box-shadow: 0 16px 36px -24px rgba(3, 105, 161, .4);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.lp-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform .6s ease;
}
.lp-feature:hover img { transform: scale(1.05); }
.lp-feature__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(11,31,51,.88) 8%, rgba(11,31,51,.55) 55%, rgba(3,105,161,.35) 100%),
    linear-gradient(180deg, rgba(15,23,42,.1) 0%, rgba(15,23,42,.75) 100%);
}
.lp-feature__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 3;
  padding: 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .3rem;
  min-width: 0;
}
.lp-feature__body h3 {
  font-family: var(--lp-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0;
  line-height: 1.2;
}
.lp-feature__body p {
  margin: 0;
  font-size: .82rem;
  color: rgba(226, 232, 240, .94);
  line-height: 1.5;
  max-width: 36rem;
  /* tampil penuh di mobile — jangan potong tengah kata */
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

@media (min-width: 640px) {
  .lp-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
  .lp-feature {
    border-radius: var(--lp-radius-lg);
    min-height: 14rem;
    aspect-ratio: 4 / 5;
  }
  .lp-feature__body {
    top: auto;
    padding: 1.25rem 1.2rem 1.3rem;
    gap: .4rem;
  }
  .lp-feature__body h3 { font-size: 1.12rem; }
  .lp-feature__body p {
    font-size: .84rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .lp-feature__veil {
    background: linear-gradient(180deg, rgba(15,23,42,.12) 10%, rgba(15,23,42,.9) 100%);
  }
}

@media (min-width: 900px) {
  .lp-features { gap: 1.15rem; }
  .lp-feature {
    min-height: 15.5rem;
    aspect-ratio: 5 / 4;
  }
  .lp-feature__body { padding: 1.35rem; }
  .lp-feature__body h3 { font-size: 1.15rem; }
  .lp-feature__body p { font-size: .88rem; }
}

/* ---------- Detail hero (konsisten dengan home hero) ---------- */
.lp-detail-hero {
  position: relative;
  isolation: isolate;
  min-height: var(--lp-detail-hero-h);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #0b1f33;
}
@media (min-width: 900px) {
  .lp-detail-hero { --lp-detail-hero-h: 26rem; }
}
.lp-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.04);
  transform-origin: center center;
  will-change: transform;
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}
.lp-detail-hero.is-hot > img {
  transform: scale(1.07);
}
.lp-detail-hero__veil {
  --lp-spot-x: 72%;
  --lp-spot-y: 28%;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(11,31,51,.92) 10%, rgba(3,105,161,.55) 58%, rgba(14,165,233,.3) 100%),
    radial-gradient(560px 320px at var(--lp-spot-x) var(--lp-spot-y), rgba(125,211,252,.28), transparent 62%),
    radial-gradient(700px 280px at 80% 20%, rgba(56,189,248,.22), transparent 60%);
}
.lp-detail-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding: clamp(4.5rem, 10vw, 6rem) var(--lp-pad) clamp(2.25rem, 5vw, 3rem);
  transform: translateZ(0);
}
.lp-detail-hero__content h1 {
  font-family: var(--lp-display);
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1.12;
  margin: .65rem 0 0;
  max-width: 40rem;
  text-shadow: 0 10px 36px rgba(0,0,0,.28);
}
.lp-detail-hero__content .lp-lead {
  margin: .85rem 0 0;
  max-width: 36rem;
  font-size: clamp(.98rem, 2vw, 1.12rem);
  color: rgba(240,249,255,.94);
  line-height: 1.55;
  text-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.lp-detail-hero .lp-btn {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
@media (prefers-reduced-motion: reduce) {
  .lp-detail-hero > img { transition: none !important; }
}
.lp-back {
  display: inline-flex;
  font-size: .84rem;
  font-weight: 700;
  color: #bae6fd;
  text-decoration: none;
}
.lp-back:hover { color: #fff; }

.lp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1rem;
}
.lp-chip {
  padding: .38rem .72rem;
  border-radius: 999px;
  background: rgba(224,242,254,.95);
  color: var(--lp-sky-deep);
  font-size: .72rem;
  font-weight: 700;
  border: 1px solid rgba(186,230,253,.95);
}
.lp-chip--light {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}

/* ---------- Panels / lists / tables ---------- */
.lp-panel {
  border-radius: var(--lp-radius-lg);
  border: 1px solid #dbeafe;
  background: rgba(240,249,255,.65);
  padding: clamp(1.25rem, 2.8vw, 1.6rem);
  height: fit-content;
  display: grid;
  gap: 0;
}
.lp-panel__block + .lp-panel__block {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid #dbeafe;
}
.lp-panel h3 {
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.02em;
  margin: 0 0 .9rem;
  color: var(--lp-ink);
}

.lp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .85rem;
}
.lp-list li {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  column-gap: .75rem;
  align-items: start;
  color: #334155;
  font-size: .94rem;
  line-height: 1.55;
}
.lp-list__icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: #e0f2fe;
  color: var(--lp-sky-deep);
  display: grid;
  place-items: center;
  font-size: .72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: .05rem;
  line-height: 1;
}
.lp-list__text {
  min-width: 0;
  overflow-wrap: break-word;
}
.lp-list li > span:not(.lp-list__icon) {
  min-width: 0;
}

.lp-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}
@media (min-width: 960px) {
  .lp-split { grid-template-columns: 1.2fr .8fr; align-items: start; }
}

.lp-table-wrap {
  overflow-x: auto;
  border-radius: 1.1rem;
  border: 1px solid var(--lp-line);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.lp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: .88rem;
}
.lp-table th {
  text-align: left;
  padding: .85rem 1rem;
  background: #f0f9ff;
  color: #64748b;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
  white-space: nowrap;
}
.lp-table td {
  padding: .85rem 1rem;
  border-top: 1px solid #f1f5f9;
  vertical-align: top;
}
.lp-table .num { text-align: right; font-weight: 700; color: var(--lp-sky-deep); }
.lp-table .center { text-align: center; }
.lp-table .code {
  display: block;
  margin-top: .15rem;
  font-size: .68rem;
  color: #94a3b8;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---------- Steps ---------- */
.lp-steps { counter-reset: step; display: grid; gap: .85rem; }
.lp-step {
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 4rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid var(--lp-line);
  box-shadow: 0 12px 34px -28px rgba(15,23,42,.35);
}
.lp-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: .95rem; top: 1.1rem;
  width: 2.1rem; height: 2.1rem;
  border-radius: 999px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
}
.lp-step h3 {
  font-family: var(--lp-display);
  font-weight: 750;
  font-size: 1.05rem;
  margin: 0 0 .5rem;
}
.lp-step ol {
  margin: 0;
  padding-left: 1.05rem;
  color: #475569;
  font-size: .9rem;
  line-height: 1.6;
}
.lp-step ol li + li { margin-top: .3rem; }

/* ---------- Soft cards (keamanan) ---------- */
.lp-soft-card {
  border-radius: 1.15rem;
  border: 1px solid #dbeafe;
  background: #fff;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 10px 28px -24px rgba(15,23,42,.3);
}
.lp-soft-card h3 {
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--lp-sky-deep);
  margin: 0 0 .45rem;
}
.lp-soft-card p {
  margin: 0;
  font-size: .9rem;
  color: var(--lp-muted);
  line-height: 1.55;
}

/* ---------- CTA band ---------- */
.lp-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #0ea5e9, #0369a1 55%, #0b1f33);
  color: #fff;
  padding: 1.45rem 1.2rem 1.45rem;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 18px 40px -24px rgba(3, 105, 161, .5);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.lp-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .38;
  background-size: cover;
  background-position: center 30%;
  border-radius: inherit;
}
.lp-cta__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(160deg, rgba(11,31,51,.55) 0%, rgba(3,105,161,.62) 48%, rgba(11,31,51,.82) 100%),
    radial-gradient(520px 240px at 85% 20%, rgba(56,189,248,.28), transparent 60%);
}
.lp-cta__body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 34rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.lp-cta__body .lp-kicker {
  margin: 0 0 .4rem;
}
.lp-cta__body h2 {
  font-family: var(--lp-display);
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: clamp(1.45rem, 6vw, 2rem);
  margin: 0;
  line-height: 1.18;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(0,0,0,.22);
}
.lp-cta__body > p {
  margin: .65rem 0 0;
  color: rgba(240,249,255,.92);
  line-height: 1.55;
  font-size: .92rem;
  max-width: 34rem;
}
.lp-cta__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem;
  width: 100%;
  margin-top: 1.05rem;
}
.lp-cta__actions .lp-btn {
  width: 100%;
  min-height: 2.85rem;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lp-cta__actions .lp-btn-primary,
.lp-cta__actions .lp-btn-ghost {
  box-shadow: none;
}

@media (min-width: 640px) {
  .lp-cta {
    border-radius: var(--lp-radius-lg);
    padding: clamp(1.75rem, 4vw, 2.75rem);
  }
  .lp-cta__body h2 {
    font-size: clamp(1.55rem, 3.2vw, 2.2rem);
  }
  .lp-cta__body > p { font-size: .95rem; }
  .lp-cta__actions {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    gap: .7rem;
  }
  .lp-cta__actions .lp-btn {
    width: auto;
    min-width: 9.5rem;
  }
}

@media (min-width: 900px) {
  .lp-cta {
    border-radius: clamp(1.35rem, 3vw, 2rem);
    padding: clamp(2rem, 4vw, 3.25rem);
  }
}

.lp-cta-dark {
  border-radius: clamp(1.25rem, 3vw, 1.75rem);
  background: #0b1f33;
  color: #fff;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .lp-cta-dark {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.lp-cta-dark h2 {
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  margin: 0;
}
.lp-cta-dark p {
  margin: .4rem 0 0;
  color: #cbd5e1;
  font-size: .9rem;
}

/* ---------- Footer ---------- */
.lp-footer {
  flex-shrink: 0;
  margin-top: auto;
  background:
    radial-gradient(600px 240px at 80% 0%, rgba(56,189,248,.18), transparent 60%),
    #0b1f33;
  color: #cbd5e1;
  padding-top: clamp(0.25rem, 1vw, 0.5rem);
}
.lp-footer__grid {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding: clamp(2.5rem, 6vw, 3.5rem) var(--lp-pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
/* Mobile: Layanan | Perusahaan berdampingan 2 kolom */
.lp-footer__menus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
  align-items: start;
}
.lp-footer__col h4 {
  color: #fff;
  font-weight: 800;
  margin: 0 0 .75rem;
  font-size: .9rem;
  letter-spacing: -.01em;
}
.lp-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .5rem;
  font-size: .84rem;
}
.lp-footer__col a {
  color: #e0f2fe;
  text-decoration: none;
  display: inline-block;
  line-height: 1.35;
}
.lp-footer__col a:hover { color: #fff; }

@media (min-width: 768px) {
  .lp-footer__grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
  .lp-footer__menus {
    gap: 1.5rem 2rem;
  }
  .lp-footer__col h4 { font-size: .95rem; margin-bottom: .85rem; }
  .lp-footer__col ul { gap: .55rem; font-size: .88rem; }
}
@media (min-width: 1024px) {
  .lp-footer__grid {
    grid-template-columns: 2fr 1.2fr;
    gap: 3rem;
  }
}
.lp-footer__copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem var(--lp-pad);
  text-align: center;
  font-size: .72rem;
  color: #94a3b8;
}
.lp-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: .75rem;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent !important;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
.lp-footer__brand:hover,
.lp-footer__brand:active,
.lp-footer__brand:focus,
.lp-footer__brand:focus-visible {
  color: #fff;
  background: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}
.lp-footer__brand img {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: .7rem;
  box-shadow: 0 10px 24px -14px rgba(14,165,233,.9);
  flex-shrink: 0;
}
.lp-footer__brand-text em { color: #7dd3fc; }
.lp-footer p {
  margin: 0;
  max-width: 28rem;
  font-size: .88rem;
  line-height: 1.6;
  color: #94a3b8;
}

/* ---------- Contact form ---------- */
.lp-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 2.5vw, 1.5rem);
  border-radius: var(--lp-radius-lg);
  border: 1px solid #dbeafe;
  background: #fff;
  box-shadow: 0 14px 40px -30px rgba(15, 23, 42, .35);
}
.lp-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .lp-form__grid { grid-template-columns: 1fr 1fr; }
}
.lp-field { display: grid; gap: .42rem; }
.lp-field label span { font-weight: 500; color: #94a3b8; }
/* Control look inherited from forms.css (global Dompet QU form system) */
.lp-form__note {
  margin: 0;
  font-size: .75rem;
  line-height: 1.5;
  color: #94a3b8;
}

/* Form CTA on light surfaces — sky primary (not hero white primary) */
.lp-form__submit,
.lp-form button.lp-btn-sky {
  width: 100%;
  margin-top: .15rem;
  background: linear-gradient(135deg, #38bdf8, #0284c7 55%, #0369a1);
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 14px 28px -14px rgba(14,165,233,.85);
}
.lp-form__submit:hover,
.lp-form button.lp-btn-sky:hover {
  filter: brightness(1.05);
  color: #fff !important;
}
.lp-form__submit i,
.lp-form button.lp-btn-sky i {
  color: #fff;
}
.lp-form__submit:disabled {
  filter: none;
  opacity: .7;
}

.lp-hp {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- FAQ ---------- */
.lp-faq-nav {
  margin: 0 0 clamp(1.5rem, 3.5vw, 2.35rem);
  padding: .85rem;
  border-radius: var(--lp-radius-lg);
  border: 1px solid #dbeafe;
  background:
    radial-gradient(420px 120px at 0% 0%, rgba(56,189,248,.12), transparent 65%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.lp-faq-nav__label {
  margin: 0 0 .65rem;
  padding: 0 .15rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lp-sky);
}
.lp-faq-nav__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
}
/* 7 chip: baris terakhir (item ke-7) penuh lebar di mobile agar tidak “menggantung” */
.lp-faq-nav__grid > :last-child {
  grid-column: 1 / -1;
}
.lp-faq-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: .45rem .65rem;
  border-radius: .75rem;
  border: 1px solid #bae6fd;
  background: #fff;
  color: var(--lp-sky-deep);
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  text-align: center;
  text-decoration: none !important;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.lp-faq-chip:hover,
.lp-faq-chip:focus-visible {
  background: #e0f2fe;
  border-color: #7dd3fc;
  color: #075985;
  outline: none;
  box-shadow: 0 8px 18px -14px rgba(3, 105, 161, .55);
  text-decoration: none !important;
}
.lp-faq-chip:active {
  background: #bae6fd;
  box-shadow: none;
}

@media (min-width: 640px) {
  .lp-faq-nav { padding: 1rem 1.15rem; }
  .lp-faq-nav__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .55rem;
  }
  /* 4 + 3: tiga chip bawah menempati kolom 1-3, slot kosong di kanan */
  .lp-faq-nav__grid > :last-child { grid-column: auto; }
  .lp-faq-chip {
    min-height: 2.45rem;
    font-size: .86rem;
  }
}

@media (min-width: 900px) {
  .lp-faq-nav__grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: .55rem;
  }
  .lp-faq-chip {
    min-height: 2.5rem;
    padding: .5rem .4rem;
    font-size: .84rem;
  }
}

.lp-faq-stack { display: grid; gap: clamp(1.75rem, 4vw, 2.5rem); }
.lp-faq-group {
  /* Header di luar pane — cukup offset kecil untuk kenyamanan baca */
  scroll-margin-top: 1rem;
}
.lp-faq-group__title {
  font-family: var(--lp-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  margin: 0 0 .85rem;
  color: var(--lp-ink);
}
.lp-faq-list { display: grid; gap: .65rem; }
.lp-faq-item {
  border-radius: 1rem;
  border: 1px solid #dbeafe;
  background: #fff;
  overflow: hidden;
}
.lp-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 700;
  color: var(--lp-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.4;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: #e0f2fe;
  color: var(--lp-sky-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .95rem;
}
.lp-faq-item[open] summary::after { content: '-'; }
.lp-faq-item__body {
  padding: 0 1.15rem 1.1rem;
  color: #475569;
  font-size: .94rem;
  line-height: 1.65;
}
.lp-faq-item__body p { margin: 0; }
.lp-panel a { color: var(--lp-sky-deep); font-weight: 700; text-decoration: none; }
.lp-panel a:hover { text-decoration: underline; }

/* ---------- Misc ---------- */
.lp-center { text-align: center; }
.lp-mt-6 { margin-top: 1.5rem; }
.lp-mt-8 { margin-top: 2rem; }
.lp-mb-0 { margin-bottom: 0; }
.lp-note {
  margin-top: .75rem;
  font-size: .75rem;
  color: #94a3b8;
}

.lp-magnetic { transition: transform .25s ease; will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .lp-hero__media,
  .lp-marquee__track,
  .lp-scroll-hint::after,
  .lp-service,
  .lp-service img,
  .lp-feature img,
  .lp-btn,
  .lp-magnetic {
    animation: none !important;
    transition: none !important;
  }
}

@supports (padding: max(0px)) {
  .lp-header__inner,
  .lp-hero__content,
  .lp-detail-hero__content,
  .lp-container,
  .lp-footer__grid {
    padding-left: max(var(--lp-pad), env(safe-area-inset-left, 0px));
    padding-right: max(var(--lp-pad), env(safe-area-inset-right, 0px));
  }
}

/* ============================================================
   Fase 2: Landing Page — Mobile-First Polish
   Scrollbar hidden + consistent inputs + typography
   ============================================================ */

/* Override smooth-scroll.css global scrollbar — landing must be invisible */
html[data-portal="landing"],
html[data-portal="landing"] .lp-body,
html[data-portal="landing"] .lp-shell-scroll,
html[data-portal="landing"] .lp-mobile__nav,
html[data-portal="landing"] .lp-mobile__sheet,
html[data-portal="landing"] .lp-faq__answer,
html[data-portal="landing"] .lp-service__body,
html[data-portal="landing"] .lp-table-wrap,
html[data-portal="landing"] .lp-card__body,
html[data-portal="landing"] .lp-marquee__track,
html[data-portal="landing"] * {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
  scrollbar-color: transparent transparent !important;
}

html[data-portal="landing"] *::-webkit-scrollbar,
html[data-portal="landing"] .lp-body::-webkit-scrollbar,
html[data-portal="landing"] .lp-shell-scroll::-webkit-scrollbar,
html[data-portal="landing"] .lp-mobile__nav::-webkit-scrollbar,
html[data-portal="landing"] .lp-mobile__sheet::-webkit-scrollbar,
html[data-portal="landing"] .lp-faq__answer::-webkit-scrollbar,
html[data-portal="landing"] .lp-table-wrap::-webkit-scrollbar,
html[data-portal="landing"] .lp-marquee__track::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
}

html[data-portal="landing"] *::-webkit-scrollbar-track,
html[data-portal="landing"] *::-webkit-scrollbar-thumb,
html[data-portal="landing"] *::-webkit-scrollbar-corner {
  display: none !important;
  background: transparent !important;
  border: 0 !important;
}

/* Input konsisten: semua field landing minimal 48px */
html[data-portal="landing"] .lp-body .dq-input,
html[data-portal="landing"] .lp-body input[type="text"],
html[data-portal="landing"] .lp-body input[type="email"],
html[data-portal="landing"] .lp-body input[type="tel"],
html[data-portal="landing"] .lp-body input[type="number"],
html[data-portal="landing"] .lp-body input[type="password"],
html[data-portal="landing"] .lp-body input[type="search"],
html[data-portal="landing"] .lp-body textarea,
html[data-portal="landing"] .lp-body select,
html[data-portal="landing"] .lp-field input,
html[data-portal="landing"] .lp-field textarea,
html[data-portal="landing"] .lp-field select {
  min-height: 48px;
  font-size: 1rem;
  padding-top: 0;
  padding-bottom: 0;
}

/* Button konsisten: minimal 48px tap target */
html[data-portal="landing"] .lp-body .dq-btn,
html[data-portal="landing"] .lp-body .lp-btn,
html[data-portal="landing"] .lp-body button[type="submit"],
html[data-portal="landing"] .lp-body .lp-form button[type="submit"] {
  min-height: 48px;
}

/* Typography: body text 15px+ untuk readability */
html[data-portal="landing"] .lp-body {
  font-size: 0.94rem;
  line-height: 1.55;
}
