.payment-help {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
}

.payment-help::before {
  content: none;
}

.payment-help__card {
  width: min(100%, 1302px);
  min-height: 32.55rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(228, 54, 99, 0.12), transparent 36%),
    radial-gradient(circle at 16% 26%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(39, 38, 43, 0.96), rgba(18, 18, 22, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.payment-help__copy {
  position: relative;
  z-index: 1;
  width: min(100%, 44rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  text-align: center;
}

.payment-help__label {
  display: none;
}

.payment-help__title {
  margin: 0;
  width: 100%;
  font-size: clamp(3rem, 6vw, 4.75rem);
  line-height: 0.98;
  font-weight: 700;
  color: var(--on-surface-bright);
}

.payment-help__title-line {
  display: block;
}

.payment-help__text {
  margin: 0;
  max-width: 26rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
}

.payment-help__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 18.7rem);
  min-width: 0;
  min-height: 4.75rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #e43663 0%, #c42a50 100%);
  box-shadow:
    0 16px 34px rgba(228, 54, 99, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.payment-help__hand {
  position: absolute;
  top: calc(16.84% - 20px);
  right: 0;
  z-index: 0;
  width: min(37.64%, 30.625rem);
  height: auto;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1360px) {
  .payment-help__card {
    width: 100%;
  }
}

@media (max-width: 1023px) {
  .payment-help__card {
    min-height: auto;
    padding: 3rem 1.5rem;
    border-radius: 28px;
  }

  .payment-help__title {
    width: min(100%, 42rem);
  }

  .payment-help__text {
    max-width: 24rem;
  }

  .payment-help__hand {
    width: min(43%, 24rem);
    top: 50%;
    transform: translateY(-34%);
  }
}

@media (max-width: 767px) {
  .payment-help {
    padding-top: 2rem;
  }

  .payment-help__card {
    padding: 0.45rem 1.25rem 1.75rem;
    flex-direction: column;
    border-radius: 24px;
  }

  .payment-help__title {
    width: 100%;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .payment-help__text {
    max-width: 20rem;
  }

  .payment-help__copy {
    margin-top: 0.85rem;
  }

  .payment-help__cta {
    width: 100%;
  }

  .payment-help__hand {
    order: -1;
    position: relative;
    top: auto;
    right: auto;
    align-self: flex-end;
    width: min(15rem, 72vw);
    aspect-ratio: 461 / 288;
    height: auto;
    margin: 0 0 -0.35rem;
    object-fit: cover;
    object-position: center 34%;
    transform: translateX(10%) translateY(0.8rem);
  }
}
