/* =========================================================
   IPTV PREMIUM — PAYMENT PAGE
   Dark, premium, mobile-first design
   ========================================================= */

:root {
  --bg: #0a0c12;
  --bg-2: #0e1119;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.12);
  --text: #f3f4f8;
  --text-muted: #9aa3b2;
  --text-dim: #6b7280;

  --brand: #7c5cff;
  --brand-2: #4cc9f0;
  --accent: #ffb86b;
  --success: #25d366;
  --success-2: #128c7e;

  --paypal: #00a3e0;
  --bank: #7c5cff;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.25);
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 30px 80px -30px rgba(124, 92, 255, 0.55);

  --grad-primary: linear-gradient(135deg, #7c5cff 0%, #4cc9f0 100%);
  --grad-success: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  --grad-amount: linear-gradient(135deg, #ffffff 0%, #b3b9c8 100%);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: radial-gradient(1200px 600px at 80% -10%, rgba(124, 92, 255, 0.18), transparent 60%),
              radial-gradient(900px 500px at -10% 30%, rgba(76, 201, 240, 0.12), transparent 60%),
              var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}
/* Defensive mobile overflow guards */
img, svg, video, iframe, textarea, pre, code { max-width: 100%; }
.container, main, section, article { max-width: 100%; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Background blobs ---------- */
.bg-blobs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 14s ease-in-out infinite;
}
.blob-1 { width: 480px; height: 480px; background: #7c5cff; top: -150px; right: -120px; }
.blob-2 { width: 420px; height: 420px; background: #4cc9f0; bottom: -160px; left: -100px; animation-delay: -5s; }
.blob-3 { width: 320px; height: 320px; background: #ffb86b; top: 40%; left: 40%; opacity: 0.15; animation-delay: -8s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.05); }
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 980px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.main { padding: 24px 20px 160px; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 12, 18, 0.7);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700; letter-spacing: 0.5px;
}
.brand-mark {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 20px;
}
.brand-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.brand-name { font-size: 15px; color: var(--text-muted); }

.lang-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px 6px 8px;
  font-size: 12.5px; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.6px;
}
.lang-flag { font-size: 16px; line-height: 1; }
.lang-code { color: var(--text); }

/* ---------- Glass surface ---------- */
.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

/* ---------- Hero ---------- */
.hero { padding: 32px 0 28px; text-align: left; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.3);
  color: #d6ccff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px; font-weight: 500;
}
.pill-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #c4b5fd;
  box-shadow: 0 0 8px #c4b5fd;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 16px 0 12px;
  font-weight: 700;
}
.hero-title span { display: block; }
.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 15.5px;
  max-width: 560px;
  margin: 0 0 22px;
}

/* ---------- Amount card ---------- */
.amount-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.amount-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 100% 0%, rgba(124, 92, 255, 0.18), transparent 60%);
  pointer-events: none;
}
.amount-card__row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; position: relative;
}
.amount-label {
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  color: var(--text-muted); text-transform: uppercase;
}
.amount-value {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(40px, 9vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 6px;
  background: var(--grad-amount);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-flex; align-items: baseline;
}
.amount-symbol { font-size: 0.6em; margin-right: 4px; opacity: 0.85; }

.plan-tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.plan-tag svg { color: var(--accent); }
.plan-tag strong { color: var(--text); font-weight: 600; }

.amount-card__divider {
  height: 1px;
  margin: 22px 0 16px;
  background: linear-gradient(90deg, transparent, var(--border-2), transparent);
}
.bullets {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin: 0; padding: 0; list-style: none;
}
.bullets li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}
.bullets svg { color: #25d366; flex-shrink: 0; }

@media (max-width: 540px) {
  .bullets { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  border: 0; border-radius: 12px;
  padding: 11px 16px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.1px;
  cursor: pointer;
  transition: transform 0.18s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s, color 0.25s, opacity 0.25s;
  white-space: nowrap;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(124, 92, 255, 0.6);
}
.btn-primary:hover { box-shadow: 0 12px 32px -10px rgba(124, 92, 255, 0.7); }

.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--border-2); }

.btn-success {
  background: var(--grad-success);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(37, 211, 102, 0.55);
}
.btn-success:hover { box-shadow: 0 12px 32px -10px rgba(37, 211, 102, 0.7); }

.btn-lg { padding: 14px 22px; font-size: 15px; border-radius: 14px; }
.btn-icon svg { margin-right: 4px; }
.btn-copy { padding: 9px 12px; font-size: 13px; }

.btn.copied {
  background: var(--grad-success) !important;
  color: #fff !important;
}

/* ---------- Method tabs ---------- */
.methods { margin-top: 26px; }
.tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 6px;
  gap: 4px;
  margin-bottom: 18px;
  border-radius: 16px;
}
.tab {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  background: transparent; border: 0;
  padding: 12px 14px;
  font-weight: 600; font-size: 14px;
  color: var(--text-muted);
  border-radius: 12px;
  transition: all 0.25s var(--ease-out);
}
.tab.active {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(124, 92, 255, 0.55);
}

/* ---------- Panel (PayPal / Bank) ---------- */
.panel { padding: 26px; margin-bottom: 18px; animation: fadeUp 0.5s var(--ease-out); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.panel-head {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 18px;
}
.panel-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
}
.panel-icon.paypal-icon {
  background: #fff;
  box-shadow: 0 8px 22px -10px rgba(0, 156, 222, 0.55), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.panel-icon.bank-icon { color: #fff; background: var(--grad-primary); }
.pp-logo, .pp-logo-tab { display: block; }

.panel-title {
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em;
}
.panel-sub { margin: 4px 0 0; color: var(--text-muted); font-size: 14px; }
.paragraph { color: var(--text-muted); font-size: 14.5px; margin: 0 0 18px; }

/* ---------- Copy row ---------- */
.copy-row { margin-bottom: 18px; }
.copy-label {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.8px;
  color: var(--text-muted); text-transform: uppercase;
  margin-bottom: 8px;
}
.copy-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px 8px 8px 14px;
  transition: border-color 0.25s;
}
.copy-box:hover { border-color: var(--border-2); }
.copy-box code {
  flex: 1;
  font-family: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;
  font-size: 14px;
  color: var(--text);
  word-break: break-all;
  background: transparent;
}

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 8px; display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text);
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.checklist .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  margin-top: 1px;
}
.checklist strong { color: var(--text); font-weight: 600; }

/* ---------- Tutorial slider ---------- */
.tutorial { margin-top: 24px; }
.tutorial-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.h3 {
  margin: 0;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em;
}
.h2 {
  margin: 0 0 18px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(22px, 4.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.slider-controls { display: flex; gap: 6px; }
.slider-btn {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  transition: all 0.25s;
}
.slider-btn:hover { background: var(--surface-2); border-color: var(--border-2); }

.slider {
  display: flex; gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider::-webkit-scrollbar { display: none; }

.slide {
  flex: 0 0 calc(100% - 0px);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  display: flex; flex-direction: column;
}
@media (min-width: 720px) {
  .slide { flex-basis: calc(50% - 7px); }
}

.slide-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #1a1d29, #0e1119);
  position: relative;
  margin-bottom: 14px;
}
.slide-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out);
}
.slide:hover .slide-img img { transform: scale(1.02); }

.slide-img img.img-fallback { display: none; }
.slide-img:has(img.img-fallback)::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(124, 92, 255, 0.4) 0%, rgba(76, 201, 240, 0.3) 100%),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,.05) 20px 21px);
}
.slide-img:has(img.img-fallback)::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  z-index: 1;
}

.slide-body {
  display: flex; align-items: center; gap: 12px;
  padding: 4px 6px;
}
.step-no {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 700; font-size: 14px;
  border-radius: 10px;
  box-shadow: 0 6px 16px -6px rgba(124, 92, 255, 0.6);
}
.slide-text { margin: 0; font-size: 14.5px; color: var(--text); line-height: 1.45; }

.dots {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 12px;
}
.dots button {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border-2);
  border: 0;
  padding: 0;
  transition: all 0.25s;
}
.dots button.active {
  width: 22px;
  border-radius: 4px;
  background: var(--grad-primary);
}

/* ---------- Bank amount banner ---------- */
.bank-amount {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(124, 92, 255, 0.18) 0%, rgba(76, 201, 240, 0.12) 100%),
    var(--surface);
  border: 1px solid rgba(124, 92, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.bank-amount::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 120px at 100% 0%, rgba(124, 92, 255, 0.18), transparent 70%);
  pointer-events: none;
}
.bank-amount-left { display: flex; flex-direction: column; line-height: 1.1; }
.bank-amount-left small {
  font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
  color: var(--text-muted); text-transform: uppercase;
  margin-bottom: 6px;
}
.bank-amount-left strong {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 30px; font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--grad-amount);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.currency-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-2);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--text);
  letter-spacing: 0.4px;
  position: relative;
}
.currency-flag { font-size: 18px; line-height: 1; }
.currency-code { font-family: 'Space Grotesk', 'Inter', sans-serif; }

/* ---------- Bank grid ---------- */
.bank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.bank-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
}
.bank-cell.wide { grid-column: span 2; }
.bank-key {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.6px;
  color: var(--text-muted); text-transform: uppercase;
  margin-bottom: 4px;
}
.bank-val {
  font-size: 15px; font-weight: 600; color: var(--text);
  word-break: break-all;
}
.bank-val.mono { font-family: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace; letter-spacing: 0.4px; }

@media (max-width: 480px) {
  .bank-grid { grid-template-columns: 1fr; }
  .bank-cell.wide { grid-column: span 1; }
}

.bank-actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px;
}

.info-callout {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px;
  background: rgba(255, 184, 107, 0.08);
  border: 1px solid rgba(255, 184, 107, 0.25);
  border-radius: 14px;
  color: #ffd5a8;
}
.info-callout svg { color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.info-callout p { margin: 0; font-size: 13.5px; line-height: 1.5; }

/* ---------- Success box ---------- */
.success {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  margin: 22px 0 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37, 211, 102, 0.25);
  background:
    linear-gradient(180deg, rgba(37, 211, 102, 0.08), rgba(37, 211, 102, 0.02)),
    var(--surface);
}
.success-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--grad-success);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -10px rgba(37, 211, 102, 0.6);
  animation: pop 0.6s var(--ease-out);
}
@keyframes pop {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.success h3 { margin-bottom: 4px; }
.success p { margin: 0; color: var(--text-muted); font-size: 14px; }

@media (max-width: 640px) {
  .success { grid-template-columns: auto 1fr; padding: 18px; }
  .success .btn { grid-column: 1 / -1; width: 100%; }
}

/* ---------- FAQ ---------- */
.faq { margin: 32px 0 16px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0 18px;
  transition: border-color 0.25s, background 0.25s;
}
.faq-item[open] {
  background: var(--surface-2);
  border-color: var(--border-2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  font-weight: 600; font-size: 15px;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  width: 24px; height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s var(--ease-out);
}
.faq-chevron::before, .faq-chevron::after {
  content: ""; position: absolute;
  background: var(--text-muted);
  border-radius: 1px;
  top: 50%; left: 50%;
  transition: transform 0.3s var(--ease-out);
}
.faq-chevron::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-chevron::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-chevron::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item p { margin: 0 0 18px; color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ---------- Footer ---------- */
.footer {
  text-align: center; margin-top: 32px;
  color: var(--text-dim); font-size: 13px;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 100px;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-success);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.6);
  z-index: 40;
  animation: pulseRing 2.4s ease-in-out infinite;
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.06); }
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.6), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.6), 0 0 0 14px rgba(37, 211, 102, 0); }
}

@media (min-width: 720px) {
  .wa-float { bottom: 24px; right: 24px; }
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10, 12, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
  z-index: 30;
  transform: translateY(0);
  transition: transform 0.4s var(--ease-out);
}
.sticky-cta__amount { display: flex; flex-direction: column; line-height: 1.1; }
.sticky-cta__amount small {
  font-size: 11px; color: var(--text-muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.6px;
}
.sticky-cta__amount strong {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.01em;
  background: var(--grad-amount);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sticky-cta .btn { flex: 1; padding: 13px 14px; }

@media (min-width: 720px) {
  .sticky-cta { display: none; }
  .main { padding-bottom: 60px; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 100px; left: 50%;
  transform: translate(-50%, 80px);
  padding: 12px 18px;
  background: rgba(15, 18, 26, 0.96);
  border: 1px solid var(--border-2);
  color: #fff;
  font-size: 14px; font-weight: 500;
  border-radius: 999px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s;
  z-index: 100;
  pointer-events: none;
  max-width: min(92vw, 560px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-flex; align-items: center; gap: 8px;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast::before {
  content: "✓";
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: var(--grad-success);
  border-radius: 50%;
  font-size: 11px; font-weight: 700;
}

@media (min-width: 720px) {
  .toast { bottom: 30px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
