/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

:root {
  --bg: #0b0f14;
  --bg-alt: #0f1620;
  --surface: #121a24;
  --surface-2: #161f2b;
  --border: #232e3b;
  --text: #eef2f6;
  --text-muted: #9aabbb;
  --text-faint: #5e7184;
  --accent: #2dd4a7;
  --accent-2: #3b82f6;
  --accent-strong: #1fb892;
  --danger: #ef4444;
  --gold: #f5b942;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1140px;
  --shadow-soft: 0 10px 30px -10px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 0 1px rgba(45,212,167,0.15), 0 20px 40px -20px rgba(45,212,167,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 13px 22px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06150f;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--large { padding: 15px 28px; font-size: 16px; }
.btn--small { padding: 9px 16px; font-size: 13.5px; }
.btn--full { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11,15,20,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; }
.brand__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06150f;
  font-size: 15px;
}

/* ---------- Voucher banner ---------- */
.voucher-banner {
  background: rgba(45,212,167,0.12);
  border-bottom: 1px solid rgba(45,212,167,0.3);
}
.voucher-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13.5px;
  color: var(--accent);
  text-align: center;
}
.voucher-banner__inner strong { color: var(--text); }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(45,212,167,0.1);
  border: 1px solid rgba(45,212,167,0.25);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.badge--alt { color: var(--gold); background: rgba(245,185,66,0.1); border-color: rgba(245,185,66,0.3); }

/* ---------- Hero ---------- */
.hero { padding: 32px 0 56px; overflow: hidden; }
.hero__inner { display: flex; flex-direction: column; gap: 44px; }

.hero h1 {
  font-size: 32px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead { color: var(--text-muted); font-size: 16px; margin-bottom: 22px; max-width: 540px; }

.hero__points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.hero__points li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); }
.hero__points i { color: var(--accent); margin-top: 3px; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-faint);
}
.hero__trust i { color: var(--accent); }

.hero__visual { display: flex; justify-content: center; }

.phone {
  width: 260px;
  height: 530px;
  background: #060a0e;
  border-radius: 38px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  position: relative;
  padding: 14px;
}
.phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background: #060a0e;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0e1a16, #0b1119);
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone__statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 8px;
  font-size: 12px;
  color: var(--text-muted);
}
.phone__map {
  position: relative;
  flex: 1;
  margin: 8px 14px;
  border-radius: 16px;
  background:
    linear-gradient(rgba(45,212,167,0.06), rgba(59,130,246,0.06)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 24px);
  border: 1px solid var(--border);
  overflow: hidden;
}
.phone__route { position: absolute; inset: 0; width: 100%; height: 100%; }
.phone__route path {
  stroke: var(--accent);
  stroke-width: 3;
  stroke-dasharray: 8 8;
  animation: dash 2.4s linear infinite;
}
@keyframes dash { to { stroke-dashoffset: -160; } }
.phone__pin { position: absolute; color: var(--accent); font-size: 14px; }
.phone__pin--start { left: 8%; bottom: 6%; color: var(--text-muted); }
.phone__pin--end { right: 10%; top: 12%; font-size: 20px; filter: drop-shadow(0 0 6px rgba(45,212,167,0.6)); }
.phone__card {
  margin: 10px 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
}
.phone__card-row { display: flex; align-items: center; gap: 8px; font-size: 12.5px; margin-bottom: 6px; }
.phone__card-row--muted { color: var(--text-faint); margin-bottom: 0; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.dot--live { box-shadow: 0 0 0 0 rgba(45,212,167,0.6); animation: pulse 1.8s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(45,212,167,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(45,212,167,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,212,167,0); }
}

/* ---------- Sections ---------- */
.section { padding: 56px 0; }
.section--alt { background: var(--bg-alt); }
.section__title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  text-align: center;
  margin-bottom: 12px;
}
.section__subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 15px;
}

/* ---------- Compare ---------- */
.compare { display: flex; flex-direction: column; gap: 16px; }
.compare__col {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}
.compare__col h3 { display: flex; align-items: center; gap: 10px; font-size: 16px; margin-bottom: 14px; }
.compare__col--bad h3 i { color: var(--danger); }
.compare__col--good { border-color: rgba(45,212,167,0.3); background: linear-gradient(160deg, rgba(45,212,167,0.07), var(--surface)); }
.compare__col--good h3 i { color: var(--accent); }
.compare__col li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text-muted); padding: 7px 0; border-top: 1px solid var(--border); }
.compare__col li:first-child { border-top: none; }
.compare__col--bad li::before { content: '\2014'; color: var(--text-faint); flex-shrink: 0; }
.compare__col--good li::before { content: '\2713'; color: var(--accent); flex-shrink: 0; font-weight: 700; }

/* ---------- Steps ---------- */
.steps { display: flex; flex-direction: column; gap: 20px; }
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  text-align: left;
}
.step__num {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(45,212,167,0.18), rgba(59,130,246,0.18));
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 16px;
}
.step h3 { font-size: 16.5px; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 14.5px; }

/* ---------- Video demo ---------- */
.video-demo { margin-top: 40px; }
.video-demo__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  margin-bottom: 18px;
}
.video-demo__title i { color: var(--accent); font-size: 20px; }
.video-demo__frame {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  background: #000;
}
.video-demo__frame iframe,
.video-demo__frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

/* ---------- Checkout ---------- */
.section--checkout { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.checkout { display: flex; flex-direction: column; gap: 36px; }
.checkout__info h2 { font-size: 26px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.3px; }
.checkout__desc { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }

.price-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 22px;
}
.price-box__row { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.price-box__old { color: var(--text-faint); text-decoration: line-through; font-size: 15px; }
.price-box__badge { background: rgba(245,185,66,0.12); color: var(--gold); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.price-box__new { font-size: 38px; font-weight: 800; color: var(--accent); margin-bottom: 18px; letter-spacing: -0.5px; }
.price-box__list { display: flex; flex-direction: column; gap: 10px; }
.price-box__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text-muted); }
.price-box__list i { color: var(--accent); margin-top: 3px; }

.trust-row { display: flex; flex-wrap: wrap; gap: 18px; }
.trust-row__item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.trust-row__item i { color: var(--accent); }

.voucher-offer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 18px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  border: 1px dashed rgba(45,212,167,0.4);
  background: rgba(45,212,167,0.06);
}
.voucher-offer__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
}
.voucher-offer__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.voucher-offer__code {
  font-family: 'Plus Jakarta Sans', monospace;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text);
}

.countdown-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(239,68,68,0.35);
  background: rgba(239,68,68,0.08);
}
.countdown-box__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--danger);
  text-transform: uppercase;
}
.countdown-box__timer {
  font-family: 'Plus Jakarta Sans', monospace;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.disclaimer-box {
  margin-bottom: 22px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(245,185,66,0.35);
  border-left: 4px solid var(--gold);
  background: rgba(245,185,66,0.08);
}
.disclaimer-box h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}
.disclaimer-box h4 i { color: var(--gold); font-size: 15px; }
.disclaimer-box ul { display: flex; flex-direction: column; gap: 10px; }
.disclaimer-box li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
}
.disclaimer-box li i { color: var(--gold); margin-top: 2px; font-size: 13px; }

.checkout-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-soft);
}
.checkout-form__title { font-size: 17px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }

.field { display: block; margin-bottom: 20px; }
.field__label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; }
.field__req { color: var(--danger); }
.field__input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  transition: border-color 0.15s ease;
}
.field__input-wrap:focus-within { border-color: var(--accent); }
.field__input-wrap i { color: var(--text-faint); font-size: 14px; }
.field__input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
}
.field__input-wrap input::placeholder { color: var(--text-faint); }
.field__hint { display: block; font-size: 12px; color: var(--text-faint); margin-top: 7px; }
.field--error .field__input-wrap { border-color: var(--danger); }
.field--error .field__hint { color: var(--danger); }

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  cursor: pointer;
}
.checkbox-field input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-field span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.checkbox-field a { color: var(--accent); text-decoration: underline; }
.checkbox-field.is-error span { color: var(--danger); }

.field__hint--error { display: block; font-size: 12px; color: var(--danger); margin: -2px 0 16px; }

.order-summary {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}
.order-summary__row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--text-muted); padding: 5px 0; }
.order-summary__row--discount span:last-child { color: var(--accent); }
.order-summary__row--total {
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.checkout-form__secure {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-faint);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.checkout-form__secure a { color: var(--accent); text-decoration: underline; }

.paymeths {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 22px;
  color: var(--text-faint);
}

/* ---------- Testimonials ---------- */
.testimonials { display: flex; flex-direction: column; gap: 18px; }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.testimonial__stars { color: var(--gold); font-size: 13px; margin-bottom: 12px; display: flex; gap: 3px; }
.testimonial p { font-size: 14.5px; color: var(--text-muted); margin-bottom: 14px; }
.testimonial__name { font-size: 13.5px; font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 720px; margin: 0 auto; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__item summary::after {
  content: '\002B';
  font-size: 20px;
  color: var(--accent);
  margin-left: 12px;
  flex-shrink: 0;
}
.faq__item[open] summary::after { content: '\2212'; }
.faq__item p { margin-top: 12px; color: var(--text-muted); font-size: 14px; }

/* ---------- Final CTA ---------- */
.section--cta {
  background: linear-gradient(160deg, rgba(45,212,167,0.08), rgba(59,130,246,0.06));
  border-top: 1px solid var(--border);
}
.cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cta h2 { font-size: 24px; font-weight: 800; }
.cta p { color: var(--text-muted); font-size: 15px; margin-bottom: 10px; max-width: 460px; }

/* ---------- Footer ---------- */
.footer { padding: 40px 0 28px; border-top: 1px solid var(--border); }
.footer__inner { display: flex; flex-direction: column; gap: 14px; }
.footer__note { color: var(--text-faint); font-size: 12.5px; max-width: 640px; line-height: 1.6; }
.footer__copy { color: var(--text-faint); font-size: 12.5px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface-2);
  border: 1px solid var(--accent);
  color: var(--text);
  padding: 18px 26px;
  border-radius: 14px;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  width: min(90vw, 420px);
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast i { color: var(--accent); font-size: 18px; flex-shrink: 0; }

/* ---------- QRIS Modal ---------- */
.qris-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.qris-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,8,11,0.8);
  backdrop-filter: blur(4px);
}
.qris-modal__panel {
  position: relative;
  width: 100%;
  max-width: 380px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-soft);
}
.qris-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qris-modal__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  margin-bottom: 18px;
  padding-right: 30px;
}
.qris-modal__countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(239,68,68,0.35);
  background: rgba(239,68,68,0.08);
  font-size: 13px;
  color: var(--text-muted);
}
#qrisCountdown {
  font-family: 'Plus Jakarta Sans', monospace;
  font-size: 18px;
  font-weight: 800;
  color: var(--danger);
  font-variant-numeric: tabular-nums;
}
.qris-modal__qr {
  display: flex;
  justify-content: center;
  padding: 16px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: var(--radius);
}
.qris-modal__qr img { width: 100%; max-width: 260px; height: auto; }
.qris-modal__amount {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.qris-modal__amount strong { color: var(--accent); font-size: 18px; }
.qris-modal__invoice {
  text-align: center;
  font-size: 11.5px;
  color: var(--text-faint);
  line-height: 1.5;
  margin-bottom: 18px;
}
.qris-modal__invoice strong { color: var(--text-muted); font-family: monospace; }
.qris-modal__steps h4 { font-size: 13.5px; margin-bottom: 10px; }
.qris-modal__steps ol { display: flex; flex-direction: column; gap: 8px; padding-left: 18px; }
.qris-modal__steps li { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.qris-modal__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(239,68,68,0.1);
  color: var(--danger);
  font-size: 13px;
}

#checkStatusBtn { margin-top: 20px; }

/* ---------- Desktop / tablet ---------- */
@media (min-width: 768px) {
  .hero h1 { font-size: 42px; }
  .section__title { font-size: 32px; }
  .compare { flex-direction: row; }
  .compare__col { flex: 1; }
  .steps { flex-direction: row; }
  .step { flex: 1; }
  .testimonials { flex-direction: row; }
  .testimonial { flex: 1; }
}

@media (min-width: 1024px) {
  .hero { padding: 90px 0 100px; }
  .hero__inner { flex-direction: row; align-items: center; gap: 60px; }
  .hero__copy { flex: 1; }
  .hero__visual { flex: 1; }
  .hero h1 { font-size: 48px; }

  .checkout { flex-direction: row; align-items: flex-start; gap: 56px; }
  .checkout__info { flex: 1; padding-top: 8px; }
  .checkout__form-wrap { flex: 1; max-width: 460px; }
}

/* ---------- Thank you page ---------- */
.thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.thanks__inner { display: flex; justify-content: center; }
.thanks__card {
  width: 100%;
  max-width: 480px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.thanks__icon { font-size: 52px; color: var(--accent); margin-bottom: 18px; }
.thanks__card h1 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.thanks__lead { color: var(--text-muted); font-size: 14.5px; margin-bottom: 28px; }
.thanks__lead strong { color: var(--text); font-family: monospace; }

.thanks__steps {
  text-align: left;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 26px;
}
.thanks__steps h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 12px;
}
.thanks__steps ol { display: flex; flex-direction: column; gap: 8px; padding-left: 18px; }
.thanks__steps li { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }
.thanks__steps li strong { color: var(--text); }
.thanks__steps li a { color: var(--accent); text-decoration: underline; }

.thanks__help { margin-bottom: 24px; }
.thanks__help p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.thanks__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-faint);
}
.thanks__back:hover { color: var(--accent); }
