/* ── GoldBot Page CSS ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #d4af37;
  --gold-bright: #f0c040;
  --gold-dark:   #a07c20;
  --bg:          #080808;
  --bg-2:        #0f0f0b;
  --surface:     #141410;
  --surface-2:   #1c1c16;
  --border:      rgba(212, 175, 55, 0.18);
  --text:        #e8e8e8;
  --text-muted:  #888;
  --text-dim:    #555;
  --radius:      14px;
  --header-h:    72px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Utility ────────────────────────────────────────────────────────────── */
.gb-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gb-gold-text { color: var(--gold); }
.gb-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.gb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.gb-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.gb-btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #000;
}
.gb-btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.38);
}

.gb-btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.gb-btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.gb-btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.gb-btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.gb-btn-paypal {
  background: #003087;
  color: #fff;
  width: 100%;
  justify-content: center;
}
.gb-btn-paypal:hover { background: #001f5c; transform: translateY(-1px); }

.gb-btn-full  { width: 100%; justify-content: center; padding: 16px 28px; font-size: 1rem; }
.gb-btn-sm    { padding: 10px 20px; font-size: 0.875rem; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.gb-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.gb-header.scrolled { box-shadow: 0 4px 28px rgba(0, 0, 0, 0.7); }

.gb-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.gb-brand { display: flex; align-items: center; text-decoration: none; }
.gb-brand-text {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.gb-brand-bot { color: #fff; }

.gb-nav { display: flex; align-items: center; gap: 4px; }
.gb-nav-link {
  color: #999;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 7px;
  transition: color 0.2s, background 0.2s;
}
.gb-nav-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.gb-nav-link.active { color: var(--gold); }

.gb-nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  margin-left: 10px;
  transition: transform 0.2s, box-shadow 0.25s;
}
.gb-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 5px 18px rgba(212,175,55,0.42); }

.gb-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.gb-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.gb-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.gb-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gb-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .gb-nav-toggle { display: flex; }
  .gb-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.25s;
  }
  .gb-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .gb-nav-link { padding: 13px 16px; border-radius: 8px; }
  .gb-nav-cta { margin: 12px 0 0; text-align: center; padding: 14px; border-radius: 8px; }
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.gb-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 80px) 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(212,175,55,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 110%, rgba(212,175,55,0.06) 0%, transparent 50%),
    linear-gradient(180deg, #080808 0%, #0e0d08 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.gb-hero-particles { position: absolute; inset: 0; pointer-events: none; }
.gb-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  animation: gb-glow-pulse 6s ease-in-out infinite;
}
.gb-glow-1 { width: 600px; height: 600px; background: rgba(212,175,55,0.07); top: -200px; right: -80px; animation-delay: 0s; }
.gb-glow-2 { width: 400px; height: 400px; background: rgba(212,175,55,0.05); bottom: -100px; left: -100px; animation-delay: 3s; }

@keyframes gb-glow-pulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

.gb-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.gb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.22);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 24px;
}
.gb-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: gb-pulse 2s ease-in-out infinite;
}
@keyframes gb-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.gb-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.gb-hero-sub {
  font-size: 1.05rem;
  color: #999;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.gb-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

/* Hero stats */
.gb-hero-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.gb-hs { display: block; }
.gb-hs-val {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.gb-hs-suffix {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  vertical-align: baseline;
}
.gb-hs-lbl {
  display: block;
  font-size: 0.7rem;
  color: #666;
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.gb-hs-div { width: 1px; height: 38px; background: rgba(255,255,255,0.1); }

/* Hero logo */
.gb-hero-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gb-logo-ring {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.22);
  animation: gb-ring-spin 22s linear infinite;
}
.gb-logo-ring::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold);
}
@keyframes gb-ring-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.gb-logo-img {
  width: 260px; height: 260px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 48px rgba(212,175,55,0.32));
  animation: gb-logo-float 5s ease-in-out infinite;
}
@keyframes gb-logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@media (max-width: 900px) {
  .gb-hero-inner { grid-template-columns: 1fr; }
  .gb-hero-logo-wrap { display: none; }
  .gb-hero { min-height: auto; }
}

/* ── Ticker ──────────────────────────────────────────────────────────────── */
.gb-ticker {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #000;
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}
.gb-ticker-track {
  display: inline-block;
  animation: gb-ticker 28s linear infinite;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gb-ticker-track span { padding: 0 20px; }
.gb-ticker-sep { opacity: 0.45; padding: 0 4px; }
@keyframes gb-ticker { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

/* ── Sections ────────────────────────────────────────────────────────────── */
.gb-section { padding: 100px 0; }
.gb-dark-section { background: var(--bg-2); }

.gb-section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.gb-section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.gb-section-head p { color: var(--text-muted); font-size: 1rem; line-height: 1.75; }

/* ── Scroll animation ────────────────────────────────────────────────────── */
.gb-anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.gb-anim.gb-visible { opacity: 1; transform: none; }

/* ── Features Grid ──────────────────────────────────────────────────────── */
.gb-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .gb-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .gb-features-grid { grid-template-columns: 1fr; } }

.gb-feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.gb-feat-card:hover {
  border-color: rgba(212,175,55,0.45);
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.45);
}
.gb-feat-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(212,175,55,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.gb-feat-icon svg { width: 24px; height: 24px; color: var(--gold); }
.gb-feat-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.gb-feat-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── Steps ──────────────────────────────────────────────────────────────── */
.gb-steps {
  display: flex;
  align-items: flex-start;
  max-width: 980px;
  margin: 0 auto;
}
.gb-step-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(212,175,55,0.45), rgba(212,175,55,0.1));
  margin-top: 38px;
}
.gb-step { flex: 1; }
.gb-step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: #000;
  font-size: 0.95rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.gb-step-content { padding-right: 24px; }
.gb-step-content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.gb-step-content p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }

@media (max-width: 768px) {
  .gb-steps { flex-direction: column; gap: 16px; }
  .gb-step-connector {
    width: 2px; height: 28px; flex: none;
    background: linear-gradient(180deg, rgba(212,175,55,0.45), rgba(212,175,55,0.1));
    margin: 0 0 0 27px;
  }
  .gb-step-content { padding-right: 0; }
}

/* ── Broker Section ──────────────────────────────────────────────────────── */
.gb-broker-section {
  padding: 80px 0;
  background: linear-gradient(160deg, #0d0b06 0%, #080806 100%);
}
.gb-broker-card {
  background: linear-gradient(135deg, rgba(212,175,55,0.07) 0%, rgba(212,175,55,0.02) 100%);
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 20px;
  padding: 52px;
}
.gb-broker-badge {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.gb-broker-body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.gb-broker-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.gb-broker-text > p { color: #999; font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; }

.gb-broker-perks { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.gb-broker-perks li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #ccc; }
.gb-broker-perks li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* Candlestick mock */
.gb-chart-mock {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 14px;
  padding: 24px 20px;
  min-width: 230px;
}
.gb-chart-candles {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  margin-bottom: 14px;
}
.gb-candle { width: 20px; border-radius: 3px; position: relative; flex-shrink: 0; }
.gb-c-up { background: rgba(74,222,128,0.75); }
.gb-c-dn { background: rgba(248,113,113,0.75); }
.gb-wick {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 2px;
  background: inherit;
  top: -9px; height: 12px;
  border-radius: 1px;
}
.gb-chart-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .gb-broker-body  { grid-template-columns: 1fr; }
  .gb-broker-visual { display: none; }
}
@media (max-width: 600px) { .gb-broker-card { padding: 28px 22px; } }

/* ── Performance Results ────────────────────────────────────────────────── */
.gb-perf-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.gb-perf-img {
  width: 100%;
  display: block;
  border-bottom: 1px solid var(--border);
}
.gb-perf-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 36px;
  flex-wrap: wrap;
}
.gb-perf-stat { flex: 1; text-align: center; min-width: 100px; }
.gb-perf-val {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.gb-perf-lbl {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 6px;
}
.gb-perf-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
  margin: 0 8px;
}
.gb-perf-note {
  padding: 14px 36px 20px;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.04);
}
@media (max-width: 600px) {
  .gb-perf-stats { padding: 20px 16px; gap: 8px; }
  .gb-perf-note  { padding: 12px 16px 16px; }
}

/* ── Pricing Plans ──────────────────────────────────────────────────────── */
.gb-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.gb-plans-2 {
  grid-template-columns: repeat(2, minmax(0, 480px));
  justify-content: center;
}
@media (max-width: 900px) {
  .gb-plans { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .gb-plans-2 { grid-template-columns: 1fr; }
}

.gb-plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.gb-plan:hover {
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(0,0,0,0.5);
}
.gb-plan-featured {
  background: linear-gradient(160deg, rgba(212,175,55,0.09) 0%, var(--surface) 100%);
  border: 1.5px solid rgba(212,175,55,0.52);
  transform: scale(1.04);
  box-shadow: 0 0 48px rgba(212,175,55,0.1);
}
.gb-plan-featured:hover { transform: scale(1.04) translateY(-5px); }

.gb-plan-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 10px;
}
.gb-plan-name  { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.gb-plan-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 10px 0 4px;
}
.gb-plan-currency {
  font-size: 1.4rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}
.gb-plan-period { font-size: 0.95rem; font-weight: 400; color: var(--text-muted); }
.gb-plan-usd   { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 6px; }
.gb-plan-zar   { font-size: 0.82rem; color: #666; margin-bottom: 6px; letter-spacing: 0.01em; }

.gb-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 26px;
  flex: 1;
}
.gb-plan-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  color: #ccc;
}
.gb-plan-features li svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.gb-feat-off       { color: var(--text-dim); }
.gb-feat-off svg   { color: #2e2e2e; }
.gb-plan-btn { width: 100%; justify-content: center; margin-top: auto; }

/* ── Payment ─────────────────────────────────────────────────────────────── */
.gb-payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 700px) { .gb-payment-grid { grid-template-columns: 1fr; } }

.gb-pay-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gb-pay-icon {
  width: 54px; height: 54px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
}
.gb-pay-pp  { background: rgba(0, 48, 135, 0.28); color: #6ab4f5; }
.gb-pay-eft { background: rgba(212, 175, 55, 0.12); color: var(--gold); }
.gb-pay-pp  svg { width: 30px; height: 30px; }
.gb-pay-eft svg { width: 28px; height: 28px; }

.gb-pay-card h3   { font-size: 1.15rem; font-weight: 700; }
.gb-pay-card > p  { font-size: 0.88rem; color: var(--text-muted); }
.gb-pay-note      { font-size: 0.78rem; color: var(--text-dim); font-style: italic; margin-top: auto; }

.gb-selected-plan {
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #bbb;
}
.gb-selected-plan strong { color: var(--gold); }

.gb-bank-details { display: flex; flex-direction: column; gap: 8px; }
.gb-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  font-size: 0.875rem;
  gap: 12px;
}
.gb-bank-row span   { color: var(--text-muted); white-space: nowrap; }
.gb-bank-row strong { color: #e5e5e5; text-align: right; word-break: break-all; }

/* ── Plan deposit line ──────────────────────────────────────────────────── */
.gb-plan-deposit {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: #999;
  background: rgba(212,175,55,0.06);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 7px;
  padding: 8px 12px;
  margin-bottom: 4px;
}
.gb-plan-deposit svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.gb-plan-deposit strong { color: var(--gold); }

/* ── Transparency section ────────────────────────────────────────────────── */
.gb-transparency-card {
  background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, rgba(212,175,55,0.02) 100%);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  padding: 52px;
}
.gb-tc-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.gb-tc-header h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 12px; letter-spacing: -0.02em; }
.gb-tc-header p  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

.gb-tc-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.gb-tc-divider {
  width: 1px;
  min-height: 220px;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.25) 30%, rgba(212,175,55,0.25) 70%, transparent);
  margin: 0 48px;
  align-self: stretch;
}

.gb-tc-item { display: flex; flex-direction: column; gap: 14px; }
.gb-tc-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
}
.gb-tc-icon svg { width: 24px; height: 24px; }
.gb-tc-icon-sub { background: rgba(212,175,55,0.1); color: var(--gold); }
.gb-tc-icon-cap { background: rgba(74,222,128,0.08); color: #4ade80; }

.gb-tc-item h3   { font-size: 1.15rem; font-weight: 800; }
.gb-tc-amount {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
}
.gb-tc-amount span { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0; }
.gb-tc-item > p  { font-size: 0.9rem; color: #bbb; line-height: 1.75; }
.gb-tc-note {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.6;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid rgba(212,175,55,0.3);
  border-radius: 0 6px 6px 0;
}

@media (max-width: 800px) {
  .gb-tc-grid { grid-template-columns: 1fr; }
  .gb-tc-divider { width: 100%; min-height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.25) 30%, rgba(212,175,55,0.25) 70%, transparent); margin: 28px 0; }
  .gb-transparency-card { padding: 32px 22px; }
}

/* ── Payment Gate ────────────────────────────────────────────────────────── */
.gb-pay-gate { max-width: 820px; margin: 0 auto; }
.gb-pay-gate-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 52px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.gb-pay-gate-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.gb-pay-gate-icon svg { width: 28px; height: 28px; color: var(--gold); }
.gb-pay-gate-inner h3  { font-size: 1.35rem; font-weight: 800; }
.gb-pay-gate-inner > p { color: var(--text-muted); font-size: 0.93rem; max-width: 500px; line-height: 1.7; }
@media (max-width: 600px) { .gb-pay-gate-inner { padding: 32px 20px; } }

/* ── Confirm Form ────────────────────────────────────────────────────────── */
.gb-confirm-wrap { max-width: 820px; margin: 0 auto; }
.gb-confirm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 52px;
}
.gb-confirm-icon {
  width: 58px; height: 58px;
  background: rgba(212,175,55,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.gb-confirm-icon svg { width: 28px; height: 28px; color: var(--gold); }
.gb-confirm-card h3  { font-size: 1.45rem; font-weight: 800; margin-bottom: 8px; }
.gb-confirm-card > p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 28px; }

.gb-confirm-form { display: flex; flex-direction: column; gap: 20px; }
.gb-cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 620px) {
  .gb-cf-row { grid-template-columns: 1fr; }
  .gb-confirm-card { padding: 28px 20px; }
}

.gb-cf-group { display: flex; flex-direction: column; gap: 8px; }
.gb-cf-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: #ccc;
}
.gb-cf-group label span { color: var(--gold); }

.gb-cf-group input,
.gb-cf-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  padding: 12px 16px;
  border-radius: 8px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.gb-cf-group input::placeholder { color: #444; }
.gb-cf-group input:focus,
.gb-cf-group select:focus {
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}
.gb-cf-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23888' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
  cursor: pointer;
}
.gb-cf-group select option { background: #1c1c14; color: var(--text); }

/* Button loading state */
.gb-btn-loading { align-items: center; gap: 8px; }
.gb-btn.loading .gb-btn-text { display: none; }
.gb-btn.loading .gb-btn-loading { display: inline-flex; }

@keyframes gb-spin { to { transform: rotate(360deg); } }
.gb-spin { width: 16px; height: 16px; animation: gb-spin 0.75s linear infinite; }

.gb-form-status {
  font-size: 0.9rem;
  border-radius: 8px;
  min-height: 0;
  transition: padding 0.25s;
}
.gb-form-status:empty { display: none; }
.gb-form-status.success {
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.28);
  color: #4ade80;
  padding: 14px 18px;
}
.gb-form-status.error {
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.28);
  color: #f87171;
  padding: 14px 18px;
}

/* ── Password field ─────────────────────────────────────────────────────── */
.gb-pw-wrap { position: relative; }
.gb-pw-wrap input { padding-right: 44px; width: 100%; }
.gb-pw-toggle {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--text-dim); cursor: pointer;
  padding: 4px; display: flex; align-items: center;
  transition: color 0.2s;
}
.gb-pw-toggle:hover { color: #aaa; }
.gb-pw-toggle svg { width: 17px; height: 17px; }

.gb-field-note { font-size: 0.75rem; color: var(--text-dim); margin-top: 6px; line-height: 1.5; }

/* ── Disclaimer ──────────────────────────────────────────────────────────── */
.gb-disclaimer-section { padding: 40px 0; background: var(--bg-2); }
.gb-disclaimer {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 10px;
  padding: 20px 24px;
}
.gb-disclaimer svg { width: 20px; height: 20px; color: #666; flex-shrink: 0; margin-top: 2px; }
.gb-disclaimer p   { font-size: 0.8rem; color: #666; line-height: 1.65; }
.gb-disclaimer strong { color: #888; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.gb-footer {
  background: #040404;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0 20px;
}
.gb-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.gb-footer-links { display: flex; gap: 24px; }
.gb-footer-links a {
  font-size: 0.85rem;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.gb-footer-links a:hover { color: var(--gold); }
.gb-footer-copy    { font-size: 0.78rem; color: #3a3a3a; }
.gb-footer-powered { font-size: 0.72rem; color: #2e2e2e; margin-top: 4px; }
.gb-footer-zvega   {
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}
.gb-footer-zvega:hover { color: var(--gold); }
