.sub-pay-hero {
  background: var(--surface);
  padding: 48px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.sub-pay-hero::before {
  content: "TELEMETRY";
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(212, 175, 55, 0.4);
  letter-spacing: 0.2em;
}

.sub-pay-hero h1 {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  max-width: var(--max-w);
  margin: 0 auto;
}

.sub-pay-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.sub-pay-text h2 {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text);
  margin: 28px 0 12px;
}

.sub-pay-text p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.sub-pay-visual {
  position: sticky;
  top: 80px;
  align-self: start;
}

.sub-pay-img {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.sub-pay-img img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}

.sub-pay-methods {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
}

.sub-pay-methods h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.sub-pay-methods ul {
  list-style: none;
}

.sub-pay-methods li {
  font-size: 13px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
  .sub-pay-split {
    grid-template-columns: 1fr;
  }

  .sub-pay-visual {
    position: static;
  }
}

@media (max-width: 600px) {
  .sub-pay-img {
    max-width: 100%;
    overflow: hidden;
  }

  .sub-pay-img img {
    max-width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: contain;
  }
}
