:root {
  --blue: #287df0;
  --blue-dark: #1267dd;
  --blue-2: #72aefc;
  --blue-soft: #eaf4ff;
  --text: #102033;
  --muted: #617085;
  --card: rgba(255, 255, 255, 0.72);
  --border: rgba(40, 125, 240, 0.16);
  --shadow: 0 24px 80px rgba(22, 93, 190, 0.16);
  --shadow-hover: 0 30px 90px rgba(22, 93, 190, 0.2);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fbfdff;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 35% 18%, rgba(219, 237, 255, 0.55), transparent 28%),
    radial-gradient(circle at 65% 45%, rgba(238, 247, 255, 0.65), transparent 30%),
    linear-gradient(160deg, #ffffff 0%, #ffffff 48%, #edf6ff 100%);
  z-index: -3;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(40, 125, 240, 0.16);
  color: var(--text);
}

/* Background Decoration */

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -2;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(67, 144, 245, 0.42), rgba(182, 215, 255, 0.14));
}

.orb-top {
  width: 260px;
  height: 260px;
  right: -90px;
  top: -70px;
}

.orb-left {
  width: 330px;
  height: 330px;
  left: -170px;
  bottom: 70px;
}

.wave {
  position: absolute;
  width: 760px;
  height: 360px;
  right: -140px;
  bottom: -80px;
  border-radius: 48% 52% 0 0;
  transform: rotate(-15deg);
  background: linear-gradient(135deg, rgba(66, 145, 247, 0.1), rgba(27, 126, 247, 0.72));
}

.wave-two {
  right: 70px;
  bottom: -160px;
  opacity: 0.32;
  transform: rotate(-9deg);
}

.wave-one::after {
  content: "";
  position: absolute;
  inset: 62px 45px auto 60px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.dot-grid {
  position: absolute;
  width: 92px;
  height: 92px;
  background-image: radial-gradient(rgba(40, 125, 240, 0.72) 2px, transparent 2.5px);
  background-size: 18px 18px;
}

.dot-top {
  right: 80px;
  top: 110px;
}

.dot-left {
  left: 18px;
  bottom: 115px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.9) 2px, transparent 2.5px);
}

.dot-bottom {
  right: 45px;
  bottom: 42px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.75) 2px, transparent 2.5px);
}

/* Header */

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 22px auto 0;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 12px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(31, 117, 229, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  overflow: visible;
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  border-radius: 999px;
  transition:
    transform 0.15s ease,
    color 0.15s ease,
    background 0.15s ease;
}

.nav-links a:hover,
.nav-links .nav-cta {
  color: var(--blue);
  background: rgba(40, 125, 240, 0.08);
  transform: translateY(-1px);
}

/* Layout */

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0;
}

.glass-card,
details {
  background: var(--card);
  border: 1px solid var(--border);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

/* Hero */

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  padding-top: 48px;
}

.hero-card {
  width: 100%;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-card::before,
.order-card::before {
  content: "";
  position: absolute;
  inset: -120px -130px auto auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(40, 125, 240, 0.18), transparent 66%);
}

/* Stock badge removed */
.stock-badge,
.pulse-dot {
  display: none !important;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.77rem;
  font-weight: 800;
}

.benefit-brand{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;

    margin:
        8px
        0
        14px
        0;
}

.benefit-brand-image{
    width:220px;
    max-width:70%;
    height:auto;
    display:block;
    object-fit:contain;
    background:transparent;
    user-select:none;
    pointer-events:none;
}

#benefit .section-heading h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero-title {
  max-width: 950px;
  margin: 0 auto 16px;
  font-size: clamp(2.25rem, 5.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.hero-title-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.product-logo-wrap {
  width: clamp(72px, 7vw, 96px);
  height: clamp(72px, 7vw, 96px);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.product-logo {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  display: block;
}

.duration-pill {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(40, 125, 240, 0.1);
  border: 1px solid rgba(40, 125, 240, 0.13);
  font-size: clamp(0.78rem, 1.25vw, 0.95rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero-desc {
  width: min(670px, 100%);
  margin: 0 auto 30px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.04rem;
}

/* Typography */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin: 0 auto 16px;
  font-size: clamp(2.25rem, 5.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.order-title {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

/* Price */

.price-panel {
  width: min(650px, 100%);
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(40, 125, 240, 0.12);
}

.price-label {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 6px;
}

.price {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.055em;
  font-weight: 800;
  color: var(--blue-dark);
}

.saving-box {
  text-align: left;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(40, 125, 240, 0.1), rgba(255, 255, 255, 0.76));
}

.saving-box span,
.saving-box small {
  display: block;
  color: var(--muted);
}

.saving-box strong {
  display: block;
  margin: 5px 0;
  text-decoration: line-through;
  font-size: 1.25rem;
}

/* Buttons */

.hero-actions,
.center-action {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.center-action {
  margin-top: 28px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease,
    background 0.18s ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 34px rgba(40, 125, 240, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 20px 42px rgba(40, 125, 240, 0.34);
}

.btn-ghost {
  color: var(--blue);
  background: rgba(40, 125, 240, 0.08);
}

.full-btn {
  width: 100%;
}

.disabled-link {
  opacity: 0.58;
  pointer-events: none;
}

.micro-copy,
.question-copy {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.question-copy a {
  color: var(--blue);
  font-weight: 800;
}

.question-copy.center {
  text-align: center;
}

/* Section Heading */

.section-heading {
  width: min(690px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.compact {
  margin: 0 0 24px;
  text-align: left;
}

.section-heading.compact-center {
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.65;
}

/* Benefit */

.benefit-card,
.guide-card,
.order-card,
.trust-card {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 40px);
  position: relative;
  overflow: hidden;
}

.benefit-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(920px, 100%);
  margin: 28px auto 0;
}

.benefit-list {
  margin: 0;
  padding-left: 24px;
  color: var(--blue-dark);
}

.benefit-list li {
  padding: 10px 0;
}

.benefit-list li::marker {
  font-weight: 800;
  color: var(--blue);
}

.benefit-list span {
  display: block;
  color: #1b2d44;
  font-weight: 800;
}

.benefit-list small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.93rem;
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(40, 125, 240, 0.1);
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  line-height: 1.6;
}

/* Order Page */

.order-hero {
  padding-top: 58px;
}

.checkout-heading {
  width: min(850px, 100%);
  margin: 0 auto 28px;
  text-align: center;
}

.checkout-heading p:last-child {
  color: var(--muted);
  line-height: 1.65;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.order-card,
.trust-card {
  height: 100%;
}

form {
  display: grid;
  gap: 15px;
}

label {
  display: grid;
  gap: 8px;
  color: #22344a;
  font-weight: 800;
  font-size: 0.94rem;
}

input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(40, 125, 240, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  outline: none;
}

input:focus {
  border-color: rgba(40, 125, 240, 0.55);
  box-shadow: 0 0 0 4px rgba(40, 125, 240, 0.1);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  text-align: center;
}

.qty-row {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 10px;
}

.qty-btn {
  border: 0;
  border-radius: 16px;
  background: rgba(40, 125, 240, 0.1);
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}

.qty-btn:hover {
  transform: translateY(-2px);
  background: rgba(40, 125, 240, 0.14);
}

.total-box,
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(40, 125, 240, 0.08);
  border: 1px solid rgba(40, 125, 240, 0.12);
}

.total-box span,
.summary-row span {
  color: var(--muted);
  font-weight: 700;
}

.total-box strong {
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  color: var(--blue-dark);
}

.summary-row {
  margin-top: 10px;
}

.summary-row strong {
  text-align: right;
  color: #1c2d43;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

legend {
  margin-bottom: 8px;
  font-weight: 800;
}

.form-hint {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-hint.warning-text {
  color: #d93025;
  font-weight: 800;
}

.form-hint.shake-warning {
  animation: shakeWarning 0.35s ease;
}

@keyframes shakeWarning {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-6px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }

  100% {
    transform: translateX(0);
  }
}

.payment-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.payment-tabs.locked .payment-button {
  opacity: 0.55;
}

.payment-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(40, 125, 240, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.payment-button:hover {
  transform: translateY(-2px);
}

.payment-button.active {
  color: var(--blue-dark);
  border-color: rgba(40, 125, 240, 0.42);
  background: rgba(40, 125, 240, 0.1);
}

.pay-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(40, 125, 240, 0.1);
  color: var(--blue);
  font-size: 1rem;
}

.payment-details {
  overflow: visible;
  animation: revealPayment 0.28s ease both;
}

@keyframes revealPayment {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.payment-box {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(40, 125, 240, 0.12);
}

.payment-box h3 {
  margin-bottom: 12px;
}

.payment-box p {
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 700;
}

.payment-box strong,
.payment-box span {
  display: block;
}

.payment-box strong {
  font-size: 1.25rem;
  color: var(--blue-dark);
}

.qris-placeholder {
  width: min(320px, 100%);
  height: auto;
  min-height: unset;
  aspect-ratio: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 12px;
  border-radius: 18px;
  background: white;
  border: 1px dashed rgba(40, 125, 240, 0.24);
  overflow: visible;
}

.qris-placeholder img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  display: block;
}

.copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0;
}

.copy-btn {
  border: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(40, 125, 240, 0.1);
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
}

.copy-btn:hover {
  transform: translateY(-2px);
  background: rgba(40, 125, 240, 0.14);
}

.hidden {
  display: none !important;
}

.attention-box {
  padding: 15px 16px;
  border-radius: 16px;
  background: #fff4d7;
  border: 1px solid #f4cf70;
  color: #7a5200;
  line-height: 1.55;
  font-weight: 700;
}

.trust-card ul {
  margin: 18px 0 0;
  padding-left: 19px;
  color: var(--muted);
  line-height: 1.85;
}

hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid rgba(40, 125, 240, 0.14);
}

.back-btn {
  margin-top: 22px;
}

/* FAQ */

.faq-list {
  width: min(820px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  border-radius: 20px;
  padding: 18px 20px;
  transition:
    transform 0.22s var(--ease-bounce),
    box-shadow 0.22s var(--ease-bounce),
    border-color 0.22s ease;
}

details:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Footer */

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 46px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

/* Smooth interaction style */

.hero-card,
.benefit-card,
.guide-card,
.order-card,
.trust-card,
.price-panel,
.step {
  transition:
    transform 0.22s var(--ease-bounce),
    box-shadow 0.22s var(--ease-bounce),
    border-color 0.22s ease;
  will-change: transform;
}

.hero-card:hover,
.benefit-card:hover,
.guide-card:hover,
.order-card:hover,
.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.price-panel:hover,
.step:hover {
  transform: translateY(-2px);
}

/* Responsive */

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .site-header {
    top: 10px;
  }

  .section-shell {
    width: min(100% - 24px, 1120px);
    padding: 54px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-title-product {
    gap: 10px;
  }

  .product-logo-wrap {
    width: 54px;
    height: 54px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }

  .benefit-brand-image {
    width: 180px;
    max-width: 80%;
  }

  #benefit .section-heading h2 {
    white-space: normal;
  }

  .duration-pill {
    padding: 7px 11px;
    font-size: 0.78rem;
  }

  .price-panel,
  .steps,
  .order-layout,
  .payment-tabs,
  .benefit-columns {
    grid-template-columns: 1fr;
  }

  .benefit-columns {
    gap: 0;
  }

  .benefit-list {
    margin: 0;
  }

  .benefit-list + .benefit-list {
    margin-top: 0;
  }

  .hero-card,
  .guide-card,
  .order-card,
  .trust-card,
  .benefit-card,
  .checkout-heading {
    border-radius: 28px;
  }

  .checkout-heading {
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow);
    text-align: left;
  }

  .saving-box {
    text-align: center;
  }

  .qris-placeholder {
    width: min(280px, 100%);
    padding: 10px;
  }

  .wave {
    width: 520px;
    height: 270px;
    right: -190px;
  }

  .orb-top {
    width: 190px;
    height: 190px;
  }

  .copy-row {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Reduced Motion */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}