.pay-hero-band {
  padding: 64px 20px;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.pay-hero-band::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: 5%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 65%);
  border-radius: 45% 55% 50% 40%;
}

.pay-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pay-hero-inner h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.pay-hero-inner .lead {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.pay-stat-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pay-stat {
  text-align: center;
}

.pay-stat .val {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.pay-stat .lbl {
  font-size: 0.85rem;
  color: var(--muted);
}

.pay-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.pay-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.pay-main h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin: 32px 0 14px;
  font-weight: 700;
}

.pay-main h2:first-child {
  margin-top: 0;
}

.pay-main p {
  color: rgba(255, 241, 242, 0.85);
  margin-bottom: 16px;
  line-height: 1.7;
}

.pay-rail {
  position: sticky;
  top: 72px;
}

.pay-rail-visual {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  max-width: 500px;
}

.pay-rail-visual img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.method-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}

.method-table th,
.method-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.method-table th {
  background: var(--surface);
  color: var(--primary);
  font-weight: 600;
}

.method-table td {
  color: rgba(255, 241, 242, 0.85);
}

.method-table tr:hover td {
  background: rgba(251, 113, 133, 0.05);
}

@media (max-width: 900px) {
  .pay-split {
    grid-template-columns: 1fr;
  }

  .pay-rail {
    position: static;
  }
}

@media (max-width: 375px) {
  .pay-rail-visual {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  .pay-rail-visual img {
    max-width: 100%;
    width: 100%;
    max-height: 220px;
    object-fit: cover;
  }
}
