.payment-hero-strip {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  align-items: center;
}

.payment-hero-strip h1 {
  font-size: clamp(26px, 4vw, 36px);
  font-family: var(--font-mono);
  margin-bottom: 16px;
}

.payment-hero-strip p {
  color: var(--muted);
  font-size: 16px;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-band-item {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-band-item:last-child {
  border-right: none;
}

.stat-band-item strong {
  display: block;
  font-size: 24px;
  font-family: var(--font-mono);
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-band-item span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.payment-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.payment-article h2 {
  font-size: 20px;
  font-family: var(--font-mono);
  margin: 32px 0 14px;
  color: var(--primary);
}

.payment-article p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
  line-height: 1.7;
}

.payment-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.payment-table th,
.payment-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
}

.payment-table th {
  background: var(--surface);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--primary);
}

.decor-rail {
  margin: 32px 0;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  max-width: 100%;
}

.decor-rail img {
  width: 200px;
  max-width: 100%;
  max-height: 280px;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid var(--border);
}

.decor-rail p {
  margin: 0;
  flex: 1;
}

@media (max-width: 900px) {
  .payment-hero-strip {
    grid-template-columns: 1fr;
  }

  .stat-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-band-item:nth-child(2) {
    border-right: none;
  }

  .decor-rail {
    flex-direction: column;
  }

  .decor-rail img {
    width: 100%;
    max-width: 100%;
    max-height: 220px;
  }
}

@media (max-width: 480px) {
  .stat-band {
    grid-template-columns: 1fr;
  }

  .stat-band-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}
