/* ============================================================
   HOME SECTIONS — black & white, minimal lavender accents
   ============================================================ */

.grad {
  background: linear-gradient(90deg, #fff, #ccc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- shared section headers ---------- */
.gc-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #888;
  margin-bottom: 14px;
}

.gc-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 18px;
}
.gc-title.left { text-align: left; }

.gc-subtitle {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.gc-subtitle.left { margin-left: 0; text-align: left; }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- buttons ---------- */
.btn-solid,
.btn-outline,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 20px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 13px;
  transition: all .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-solid {
  background: #dcdbdb;
  color: #000000;
}
.btn-solid:hover {
  background: #e0e0e0;
  color: #000000;
  box-shadow: 0 8px 28px rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: #ffffff;
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: #fff;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, .06);
}

.btn-solid.big { padding: 14px 34px; font-size: 16px; }
.full { width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.gc-hero { padding: 0px 20px 20px; position: relative; overflow: hidden; }
.gc-hero::before {
  content: '';
  position: absolute;
  top: -220px; right: -120px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(255, 255, 255, .04), transparent 65%);
  pointer-events: none;
}

.gc-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.gc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .05);
  color: #ccc;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 26px;
}
.gc-badge i { color: var(--lavender); }

.gc-hero-title {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
}

.gc-hero-sub {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.gc-hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.gc-hero-trust {
  display: flex;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}
.gc-hero-trust li {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 22px;
}
.gc-hero-trust li + li { border-left: 1px solid var(--border); padding-left: 22px; }
.gc-hero-trust strong { font-size: 21px; color: #fff; }
.gc-hero-trust span { font-size: 13px; color: var(--text-secondary); }

/* ---------- hero animated purple coin-stack chart ---------- */
.gc-visual-chart {
  width: 100%;
  height: auto;
  display: block;
}

/* coin stacks rise up on load, staggered */
.coin-stack {
  transform-box: fill-box;
  transform-origin: bottom;
  animation: growStack .7s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes growStack {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}

/* zigzag arrow draws itself after stacks appear */
.hero-trendline {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: drawLine 1.5s ease forwards .75s;
}
.hero-trend-arrow {
  opacity: 0;
  animation: fadeIn .4s ease forwards 2.1s;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes fadeIn   { to { opacity: 1; } }

/* floating gold coins drift gently, forever, staggered entrance */
.float-coin {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation: coinFloat 3.4s ease-in-out infinite, coinIn .5s ease forwards;
}
.fc-a { animation-delay: 2.2s, 2.2s; }
.fc-b { animation-delay: 2.4s, 2.4s; }
.fc-c { animation-delay: 2.6s, 2.6s; }
.fc-d { animation-delay: 2.8s, 2.8s; }
.fc-e { animation-delay: 3.0s, 3.0s; }

@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(6deg); }
}
@keyframes coinIn { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .coin-stack, .hero-trendline, .hero-trend-arrow, .float-coin {
    animation: none !important;
    opacity: 1;
  }
}

.gc-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.gc-feature-grid--full {
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin: 24px auto 0;
}
.gc-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color .2s ease, transform .2s ease;
}
.gc-feature:hover { border-color: #555; transform: translateY(-3px); }
.gc-feature i { font-size: 24px; color: #888; margin-top: 2px; }
.gc-feature strong { display: block; font-size: 14px; color: #fff; }
.gc-feature span { font-size: 12.5px; color: var(--text-muted); }

/* rating strip */
.gc-rating-strip {
  max-width: var(--container);
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 28px;
}
.gc-rating-left { display: flex; align-items: center; gap: 14px; }
.gc-rating-left > i { font-size: 30px; color: var(--lavender); }
.gc-rating-left strong { display: block; font-size: 17px; color: #fff; }
.gc-rating-left span { font-size: 13px; color: var(--text-secondary); }
.rating-link {
  font-weight: 700;
  color: #000 !important;
  background: #fff;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  transition: all .2s ease;
}
.rating-link:hover { background: #ddd; box-shadow: 0 6px 22px rgba(255, 255, 255, .1); }
.gc-rating-right { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.gc-rating-right i { font-size: 20px; color: #888; }

/* ============================================================
   MARKETS
   ============================================================ */
.gc-market-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gc-market-card {
  position: relative;
  display: block;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--border);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.gc-market-card:hover {
  border-color: #555;
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .55);
}

/* dark overlay for text readability, deepens on hover */
.gc-market-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.85) 100%);
  transition: background .3s ease;
}
.gc-market-card:hover .gc-market-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.65) 55%, rgba(0,0,0,.92) 100%);
}

.gc-market-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 26px;
}

.gc-market-content .gc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 24px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.gc-market-content h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}

.gc-market-content p {
  font-size: 13.5px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin-bottom: 18px;
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  transition: gap .2s ease;
}
.gc-market-card:hover .card-arrow { gap: 10px; }

/* ============================================================
   SPONSORSHIP
   ============================================================ */
.gc-sponsor-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.sponsor-tab {
  padding: 11px 30px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s ease;
}
.sponsor-tab:hover { color: #fff; border-color: #fff; }
.sponsor-tab.active {
  background: #fff;
  border-color: transparent;
  color: #000;
  box-shadow: 0 8px 26px rgba(255, 255, 255, .15);
}

.gc-sponsor-stage { max-width: 780px; margin: 0 auto; }
.sponsor-panel {
  display: none;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
}
.sponsor-panel.active { display: block; animation: panelIn .4s ease; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.panel-icon { font-size: 46px; color: #888; margin-bottom: 18px; }
.sponsor-panel h3 { font-size: 22px; margin-bottom: 12px; }
.sponsor-panel p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; }
.new-tag {
  display: inline-block;
  background: #fff;
  color: #000;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
}

/* ============================================================
   PLATFORMS
   ============================================================ */
.gc-split {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.check-list { list-style: none; margin: 0 0 34px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-size: 15.5px;
  color: #eaeaea;
  border-bottom: 1px dashed var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list i { color: #888; font-size: 21px; }

.split-visual { position: relative; }
.device-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.frame-bar {
  display: flex;
  gap: 7px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.frame-bar span { width: 11px; height: 11px; border-radius: 50%; background: var(--surface-3); }
.frame-bar span:first-child { background: #fff; }
.mock-chart { width: 100%; height: auto; display: block; background: #050505; }
.frame-caption {
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 14px;
  border-top: 1px solid var(--border);
}

.chip-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .55);
}
.chip-float i { color: #888; }
.chip-a { top: -18px; right: 26px; }
.chip-b { bottom: -16px; left: 26px; }

/* ============================================================
   TRADINGVIEW PARTNER
   ============================================================ */
.gc-tvpartner { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tv-inner { max-width: 880px; margin: 0 auto; }
.tv-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.tv-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: all .2s ease;
}
.tv-chip i { color: #aaa; }
.tv-chip:hover {
  border-color: #555;
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 8px 24px rgba(255, 255, 255, .06);
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  transition: all .25s ease;
}
.why-card:hover { border-color: #555; transform: translateY(-6px); }
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   STATS BAND
   ============================================================ */
.gc-stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.stat-item {
  padding: 46px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item h3 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 800;
  background: linear-gradient(90deg, #fff, #aaa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-item p { font-size: 13.5px; color: var(--text-secondary); margin-top: 6px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.review-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s ease;
}
.review-card:hover { border-color: #555; transform: translateY(-4px); }
.stars { color: var(--lavender); font-size: 17px; margin-bottom: 16px; display: flex; gap: 3px; }
.review-card p { font-size: 14.5px; color: #dcdcdc; line-height: 1.75; flex: 1; }
.review-card footer {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #444, #888);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.review-card footer strong { display: block; font-size: 14.5px; color: #fff; }
.review-card footer span:not(.avatar) { font-size: 12.5px; color: var(--text-muted); }

/* ============================================================
   STEPS
   ============================================================ */
.steps-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 26px 30px;
  transition: all .25s ease;
}
.step-box:hover { border-color: #555; transform: translateY(-6px); }
.step-no {
  position: absolute;
  top: -22px; left: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 10px 26px rgba(255, 255, 255, .1);
}
.step-box h3 { font-size: 18px; margin-bottom: 8px; }
.step-box p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.center-cta { text-align: center; margin-top: 56px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.gc-final-cta {
  position: relative;
  padding: 110px 24px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.8)),
    url('/pics/cta.png') center center / cover no-repeat;
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta-inner h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 16px; }
.cta-inner p {
  max-width: 540px;
  margin: 0 auto 34px;
  font-size: 16px;
  color: var(--text-secondary);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .gc-market-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .gc-stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .gc-hero { padding: 40px 24px; }
  .gc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .gc-feature-grid--full { grid-template-columns: repeat(2, 1fr); }
  .gc-split { grid-template-columns: 1fr; gap: 44px; }
  .chip-a { top: -14px; right: 12px; }
  .chip-b { bottom: -14px; left: 12px; }
  .why-grid { grid-template-columns: 1fr; }
  .sponsor-panel { padding: 34px 24px; }
}

@media (max-width: 560px) {
  .gc-market-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .gc-stats-band { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .gc-hero-trust { flex-wrap: wrap; gap: 14px; }
  .gc-hero-trust li { flex: 1 1 40%; padding: 0; border: none !important; }
  .gc-rating-strip { flex-direction: column; text-align: center; }
}

/* ============================================================
   Payment Methods
   ============================================================ */

.payment-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  padding: 90px 24px;
}

.payment-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
}

.payment-head {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.payment-head-left {
  max-width: 720px;
  text-align: center;
}

.payment-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.payment-label::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--text-muted);
  display: inline-block;
}

.payment-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 16px;
  text-align: center;
}

.payment-head-left p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Route stage */
.route-stage {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 48px 40px 40px;
  overflow: hidden;
}

.route-line {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}
.route-line path {
  fill: none;
  stroke: var(--border-strong);
  stroke-width: 1.5;
  stroke-dasharray: 4 7;
  animation: routeFlow 18s linear infinite;
  opacity: .55;
}
@keyframes routeFlow { to { stroke-dashoffset: -400; } }

.route-endpoints {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.route-node {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.route-node .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}
.route-node.end .dot { background: var(--text-secondary); }

/* ---- marquee rows ---- */
.payment-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.marquee-row {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marqueeLTR 32s linear infinite;
}

.marquee-row.reverse .marquee-track {
  animation-name: marqueeRTL;
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeLTR {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0%); }
}
@keyframes marqueeRTL {
  from { transform: translateX(0%); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
}

/* ---- individual card ---- */
.payment-card {
  flex: 0 0 150px;
  width: 150px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 12px;
  text-align: center;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
  box-sizing: border-box;
}
.payment-card:hover {
  border-color: var(--border-strong);
  background: var(--surface-3);
  transform: translateY(-3px);
}

/* logo badge — same size for every icon, svg or phosphor */
.payment-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 40px;
  background: #e1c8f7;
  border-radius: 8px;
  flex-shrink: 0;
}

.payment-card__logo img {
  max-width: 40px;
  max-height: 24px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.payment-card__logo i {
  font-size: 22px;
  color: #1a1a1a;
}

.payment-card span:not(.payment-card__logo) {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.3;
}

.payment-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.payment-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.payment-note svg { flex-shrink: 0; color: #888; }

@media (max-width: 768px) {
  .payment-section { padding: 60px 16px; }
  .payment-content h2 { font-size: 24px; }
  .route-stage { padding: 32px 20px 28px; }
  .route-endpoints { display: none; }
  .payment-foot { flex-direction: column; gap: 12px; }
}