.bank-hero {
  padding: 92px 0 76px;
  background: #f7f8fc;
  border-bottom: 1px solid #e5e9f1;
}

.bank-hero-inner {
  max-width: 920px;
  text-align: center;
}

.bank-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid #d9ccff;
  border-radius: 999px;
  color: #5420d2;
  font-size: 13px;
  font-weight: 800;
}

.bank-eyebrow svg {
  width: 16px;
  height: 16px;
}

.bank-hero h1 {
  margin: 24px 0 16px;
  color: #0b132b;
  font-size: 52px;
  line-height: 1.08;
  letter-spacing: 0;
}

.bank-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: #5a657d;
  font-size: 18px;
  line-height: 1.7;
}

.bank-section {
  padding: 72px 0 96px;
  background: #fff;
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.bank-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid #dfe4ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(18, 31, 64, .07);
}

.bank-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bank-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: #eee8ff;
  color: #6f2cff;
}

.bank-icon svg {
  width: 22px;
  height: 22px;
}

.bank-number {
  color: #7c879d;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.bank-card h2 {
  margin: 22px 0 26px;
  color: #111a35;
  font-size: 25px;
  line-height: 1.2;
}

.bank-card dl {
  margin: 0;
}

.bank-card dl div {
  padding: 18px 0;
  border-top: 1px solid #e6eaf2;
}

.bank-card dt {
  margin-bottom: 7px;
  color: #7a859b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.bank-card dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #111a35;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.5;
}

.bank-card dl div:first-child dd {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 17px;
}

.bank-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.bank-copy,
.bank-payment-open {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid #6f2cff;
  border-radius: 6px;
  background: #fff;
  color: #5420d2;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.bank-copy svg,
.bank-payment-open svg {
  width: 17px;
  height: 17px;
}

.bank-copy:hover,
.bank-copy.copied {
  background: #6f2cff;
  color: #fff;
}

.bank-payment-open {
  border-color: #6f2cff;
  background: #6f2cff;
  color: #fff;
  box-shadow: 0 10px 24px rgba(111, 44, 255, .2);
}

.bank-payment-open:hover {
  background: #5d20e8;
}

.bank-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 28px;
  padding: 28px 30px;
  border: 1px solid #cfeee2;
  border-radius: 8px;
  background: #f2fbf7;
}

.bank-notice > svg {
  width: 32px;
  height: 32px;
  color: #0b9f70;
}

.bank-notice h2 {
  margin: 0 0 5px;
  color: #0b132b;
  font-size: 18px;
}

.bank-notice p {
  margin: 0;
  color: #56657a;
  font-size: 14px;
  line-height: 1.6;
}

.bank-notice a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5420d2;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.bank-notice a svg {
  width: 17px;
  height: 17px;
}

.bank-empty {
  padding: 50px;
  border: 1px solid #e1e5ed;
  border-radius: 8px;
  text-align: center;
}

.bank-empty svg {
  width: 34px;
  height: 34px;
  color: #6f2cff;
}

.bank-empty h2 {
  margin: 16px 0 8px;
}

.bank-empty p {
  margin: 0;
  color: #657086;
}

.bank-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  padding: 13px 17px;
  border-radius: 6px;
  background: #0b132b;
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.bank-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

body.payment-modal-open {
  overflow: hidden;
}

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  padding: 24px;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}

.payment-modal.visible {
  visibility: visible;
  opacity: 1;
}

.payment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 27, .72);
  backdrop-filter: blur(4px);
}

.payment-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 32px;
  border: 1px solid #e2e6ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(6, 11, 30, .3);
  transform: translateY(16px);
  transition: transform .2s ease;
}

.payment-modal.visible .payment-dialog {
  transform: translateY(0);
}

.payment-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid #dde2ec;
  border-radius: 6px;
  background: #fff;
  color: #202a42;
  cursor: pointer;
}

.payment-modal-close:hover {
  background: #f3f5f9;
}

.payment-modal-close svg {
  width: 19px;
  height: 19px;
}

.payment-dialog-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding-right: 42px;
}

.payment-dialog-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: #eee8ff;
  color: #6f2cff;
}

.payment-dialog-icon svg {
  width: 23px;
  height: 23px;
}

.payment-dialog-kicker {
  color: #6f2cff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-dialog h2 {
  margin: 4px 0 8px;
  color: #0b132b;
  font-size: 28px;
  line-height: 1.2;
}

.payment-dialog-head p {
  margin: 0;
  color: #657087;
  font-size: 14px;
  line-height: 1.55;
}

.payment-form {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid #e6eaf1;
}

.payment-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.payment-field {
  display: grid;
  min-width: 0;
  gap: 8px;
  color: #24304a;
  font-size: 13px;
  font-weight: 750;
}

.payment-field-wide {
  grid-column: 1 / -1;
}

.payment-field > span > small {
  color: #8490a5;
  font-size: 12px;
  font-weight: 500;
}

.payment-field input,
.payment-field select,
.payment-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d8deea;
  border-radius: 6px;
  outline: 0;
  background: #fff;
  color: #111a35;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
}

.payment-field input,
.payment-field select {
  height: 48px;
  padding: 0 14px;
}

.payment-field textarea {
  min-height: 98px;
  padding: 13px 14px;
  resize: vertical;
  line-height: 1.5;
}

.payment-field input:focus,
.payment-field select:focus,
.payment-field textarea:focus {
  border-color: #6f2cff;
  box-shadow: 0 0 0 3px rgba(111, 44, 255, .1);
}

.payment-amount-input {
  position: relative;
}

.payment-amount-input input {
  padding-right: 52px;
}

.payment-amount-input b {
  position: absolute;
  top: 50%;
  right: 14px;
  color: #6f2cff;
  transform: translateY(-50%);
}

.payment-file-control {
  position: relative;
  display: block;
  min-height: 80px;
  overflow: hidden;
  border: 1px dashed #bfc7d8;
  border-radius: 6px;
  background: #f8f9fc;
  cursor: pointer;
}

.payment-file-control input {
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.payment-file-control > span {
  display: grid;
  min-height: 80px;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: center;
  align-items: center;
  gap: 2px 12px;
  padding: 14px 18px;
}

.payment-file-control svg {
  width: 22px;
  height: 22px;
  grid-row: 1 / 3;
  color: #6f2cff;
}

.payment-file-control b {
  color: #202a42;
  font-size: 14px;
}

.payment-file-control small {
  color: #78849a;
  font-size: 12px;
  font-weight: 500;
}

.payment-file-control:focus-within {
  border-color: #6f2cff;
  box-shadow: 0 0 0 3px rgba(111, 44, 255, .1);
}

.payment-submit {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
  border: 0;
  border-radius: 6px;
  background: #6f2cff;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(111, 44, 255, .22);
}

.payment-submit:hover {
  background: #5d20e8;
}

.payment-submit:disabled {
  cursor: wait;
  opacity: .7;
}

.payment-submit svg {
  width: 18px;
  height: 18px;
}

.payment-form-status {
  display: none;
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.payment-form-status.success,
.payment-form-status.error {
  display: block;
}

.payment-form-status.success {
  border: 1px solid #bce9d8;
  background: #effbf6;
  color: #087452;
}

.payment-form-status.error {
  border: 1px solid #f2c9cd;
  background: #fff3f4;
  color: #b52636;
}

.payment-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

@media (max-width: 760px) {
  .bank-hero {
    padding: 68px 0 58px;
  }

  .bank-hero h1 {
    font-size: 38px;
  }

  .bank-hero p {
    font-size: 16px;
  }

  .bank-section {
    padding: 48px 0 68px;
  }

  .bank-grid {
    grid-template-columns: 1fr;
  }

  .bank-card {
    padding: 24px;
  }

  .bank-card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .bank-copy,
  .bank-payment-open {
    width: 100%;
  }

  .bank-notice {
    grid-template-columns: 1fr;
  }

  .bank-notice a {
    margin-left: 54px;
  }

  .payment-modal {
    padding: 12px;
  }

  .payment-dialog {
    max-height: calc(100vh - 24px);
    padding: 24px 20px;
  }

  .payment-dialog-head {
    grid-template-columns: 1fr;
    padding-right: 34px;
  }

  .payment-dialog h2 {
    font-size: 24px;
  }

  .payment-form-grid {
    grid-template-columns: 1fr;
  }

  .payment-field-wide {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .bank-card dl div:first-child dd {
    font-size: 14px;
  }

  .bank-copy {
    width: 100%;
  }

  .bank-notice a {
    margin-left: 0;
  }
}
