.payment-section {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}

.payment-heading {
  margin-bottom: 1.4rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
}

.payment-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.payment-heading > p {
  max-width: 32rem;
  margin-bottom: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.payment-method {
  min-height: 9rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.3rem;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
}

.payment-method:hover {
  border-color: #a8b7ad;
  background: #fff;
}

.payment-method strong {
  font-size: 1.05rem;
}

.payment-method > span:last-child {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.recommended-method {
  background: #fff9e9;
  border-color: #d7b76b;
}

.recommended-label {
  margin-bottom: auto;
  color: #78571c;
  font-size: 0.7rem;
  font-weight: 750;
}

.external-payment-note {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.65;
}

.external-payment-note a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 700;
}

.bank-details {
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
}

.bank-details div {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}

.bank-details div:nth-child(odd) {
  border-left: 1px solid var(--line);
}

.bank-details div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.bank-details dt {
  margin-bottom: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 650;
}

.bank-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.bank-steps a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 700;
}

.meter-warning {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  color: #684537;
  background: #fff3ed;
  border-right: 0.25rem solid var(--coral);
  font-size: 0.94rem;
  line-height: 1.7;
}

.email-action,
.official-site-link {
  width: max-content;
  display: block;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 750;
}

.email-action {
  margin-top: 1.1rem;
}

.official-site-link {
  margin-top: 1rem;
}

.service-actions li span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #e8e4da;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 880px) {
  .payment-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .payment-heading {
    align-items: start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .payment-methods,
  .bank-details {
    grid-template-columns: 1fr;
  }

  .payment-method {
    min-height: 7.5rem;
  }

  .bank-details div,
  .bank-details div:nth-child(odd),
  .bank-details div:nth-last-child(-n + 2) {
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .bank-details div:last-child {
    border-bottom: 0;
  }
}
