.payment-section[hidden] {
  display: none !important;
}

.pay-hero {
  --pay-hero-gold: #c79a59;
  --pay-hero-gold-light: #ebc883;
  --pay-hero-rose: #a54f48;
  --pay-hero-white: #f6f2ec;
  --pay-hero-sans: "Montserrat", Arial, sans-serif;
  --pay-hero-serif: "Cormorant Garamond", Georgia, serif;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.78fr);
  align-items: center;
  gap: clamp(60px, 7vw, 130px);
  min-height: max(790px, 100svh);
  padding: 145px clamp(46px, 8vw, 145px) 90px;
  isolation: isolate;
  color: var(--pay-hero-white);
  background:
    linear-gradient(105deg, rgba(11, 10, 8, 0.08), rgba(9, 8, 6, 0.76)),
    url("../../pages/home/assets/images/payment-options/backgrounds/background-desktop-clean.png") center / cover no-repeat,
    #0b0907;
  font-family: var(--pay-hero-sans);
  overflow: hidden;
}

.pay-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 79% 47%, rgba(153, 61, 57, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(7, 6, 5, 0.28), rgba(7, 6, 5, 0.04) 42%, rgba(7, 6, 5, 0.45));
  content: "";
}

.pay-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100px;
  background: linear-gradient(180deg, transparent, rgba(8, 8, 6, 0.84));
  content: "";
  pointer-events: none;
}

.pay-hero .section-kicker {
  margin: 0;
  color: var(--pay-hero-gold-light);
  font-family: var(--pay-hero-sans);
  font-size: clamp(10px, 0.82vw, 13px);
  font-weight: 500;
  letter-spacing: 0.27em;
  line-height: 1.5;
  text-transform: uppercase;
}

.pay-hero .gold-rule {
  width: clamp(78px, 7vw, 116px);
  height: 1px;
  background: linear-gradient(90deg, var(--pay-hero-gold), #f2cd86, transparent);
}

.pay-hero .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 17px 25px;
  font-family: var(--pay-hero-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.pay-hero .button:hover,
.pay-hero .button:focus-visible {
  transform: translateY(-2px);
}

.pay-hero .button svg {
  width: 17px;
  height: 17px;
}

.pay-hero .button-gold {
  border: 1px solid var(--pay-hero-gold-light);
  color: #15100a;
  background: linear-gradient(135deg, #f0ce91, #bd8749);
  box-shadow: 0 14px 40px rgba(189, 135, 73, 0.2);
}

.pay-hero .button-gold:hover,
.pay-hero .button-gold:focus-visible {
  color: #080706;
  background: #f1d49d;
}

.pay-hero .hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(229, 190, 121, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.pay-hero .hero-orbit-one {
  top: 18%;
  right: 4%;
  width: min(43vw, 680px);
  aspect-ratio: 1;
}

.pay-hero .hero-orbit-two {
  top: 27%;
  right: 9%;
  width: min(32vw, 510px);
  aspect-ratio: 1;
}

.pay-hero .pay-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 770px;
}

.pay-hero .pay-hero-copy > h2 {
  margin: clamp(36px, 4vw, 58px) 0 30px;
  color: var(--pay-hero-white);
  font-family: var(--pay-hero-serif);
  font-size: clamp(72px, 7.2vw, 116px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.83;
}

.pay-hero .pay-hero-copy > h2 span,
.pay-hero .pay-hero-copy > h2 em {
  display: block;
}

.pay-hero .pay-hero-copy > h2 em {
  margin-top: 15px;
  color: var(--pay-hero-gold);
  font-weight: 400;
}

.pay-hero .hero-summary {
  max-width: 590px;
  margin: 35px 0 0;
  color: rgba(246, 241, 235, 0.78);
  font-family: var(--pay-hero-serif);
  font-size: clamp(21px, 1.75vw, 28px);
  line-height: 1.55;
}

.pay-hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 42px;
}

.pay-hero .button-quiet {
  min-height: auto;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(235, 200, 131, 0.55);
  color: rgba(246, 241, 235, 0.76);
  background: transparent;
}

.pay-hero .button-quiet:hover,
.pay-hero .button-quiet:focus-visible {
  color: var(--pay-hero-gold-light);
}

.pay-hero .hero-payment-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  min-height: 540px;
  margin-left: auto;
}

.pay-hero .visual-glow {
  position: absolute;
  top: 8%;
  left: 2%;
  width: 88%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(188, 86, 73, 0.25), rgba(180, 130, 67, 0.12) 40%, transparent 68%);
  filter: blur(10px);
}

.pay-hero .payment-card {
  position: absolute;
  border: 1px solid rgba(239, 207, 150, 0.36);
  background: linear-gradient(145deg, rgba(28, 24, 19, 0.93), rgba(11, 10, 9, 0.96));
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.pay-hero .payment-card-back {
  top: 84px;
  right: -20px;
  width: 78%;
  min-height: 350px;
  padding: 38px;
  color: rgba(240, 220, 186, 0.5);
  transform: rotate(8deg);
}

.pay-hero .payment-card-back span,
.pay-hero .payment-card-back strong {
  display: block;
}

.pay-hero .payment-card-back span {
  font-size: 9px;
  letter-spacing: 0.21em;
}

.pay-hero .payment-card-back strong {
  position: absolute;
  right: 35px;
  bottom: 34px;
  font-family: var(--pay-hero-serif);
  font-size: 23px;
  font-weight: 400;
}

.pay-hero .payment-card-front {
  top: 35px;
  left: 0;
  width: 84%;
  min-height: 410px;
  padding: clamp(30px, 3vw, 46px);
}

.pay-hero .payment-card-front::before,
.pay-hero .payment-card-front::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.pay-hero .payment-card-front::before {
  top: -28px;
  right: -26px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(232, 192, 123, 0.4);
}

.pay-hero .payment-card-front::after {
  right: 28px;
  bottom: 27px;
  width: 9px;
  height: 9px;
  background: var(--pay-hero-rose);
  box-shadow: 14px 0 0 rgba(199, 154, 89, 0.7);
}

.pay-hero .card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(235, 227, 215, 0.58);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pay-hero .card-mark {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(235, 200, 131, 0.58);
  border-radius: 50%;
  color: var(--pay-hero-gold-light);
  font-family: var(--pay-hero-serif);
  font-size: 22px;
  line-height: 1;
  place-items: center;
}

.pay-hero .card-brand {
  margin: 50px 0 10px;
  color: var(--pay-hero-rose);
  font-family: var(--pay-hero-serif);
  font-size: 26px;
  font-style: italic;
}

.pay-hero .card-offer {
  margin: 0;
  font-weight: 400;
}

.pay-hero .card-as-low {
  display: block;
  color: rgba(246, 241, 235, 0.72);
  font-family: var(--pay-hero-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.pay-hero .card-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 10px;
  white-space: nowrap;
}

.pay-hero .card-price strong {
  color: var(--pay-hero-gold-light);
  font-family: var(--pay-hero-serif);
  font-size: clamp(73px, 6.5vw, 102px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.pay-hero .card-price small {
  color: var(--pay-hero-white);
  font-family: var(--pay-hero-sans);
  font-size: clamp(20px, 1.8vw, 29px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.pay-hero .card-divider {
  width: 100%;
  height: 1px;
  margin: 38px 0 23px;
  background: linear-gradient(90deg, rgba(218, 176, 104, 0.7), rgba(218, 176, 104, 0.08));
}

.pay-hero .card-payment-copy {
  max-width: 330px;
  margin: 0;
  color: rgba(236, 229, 219, 0.56);
  font-size: 9px;
  letter-spacing: 0.12em;
  line-height: 1.7;
  text-transform: uppercase;
}

.pay-hero .visual-caption {
  position: absolute;
  bottom: 0;
  left: 4%;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  color: rgba(237, 229, 218, 0.56);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pay-hero .visual-caption span {
  color: var(--pay-hero-gold-light);
}

.pay-hero .hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: clamp(24px, 3vw, 56px);
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(241, 232, 219, 0.45);
  font-size: 8px;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.pay-hero .hero-scroll i {
  width: 46px;
  height: 1px;
  background: rgba(208, 166, 100, 0.45);
}

@media (max-width: 1180px) {
  .pay-hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    gap: 42px;
    padding-inline: 54px;
  }

  .pay-hero .hero-payment-visual {
    min-height: 500px;
  }
}

@media (max-width: 899px) {
  .pay-hero {
    grid-template-columns: 1fr;
    gap: 55px;
    min-height: auto;
    padding: 145px clamp(28px, 7vw, 58px) 85px;
    background:
      linear-gradient(180deg, rgba(8, 7, 5, 0.1), rgba(8, 7, 5, 0.6)),
      url("../../pages/home/assets/images/payment-options/backgrounds/background-mobile-clean.png") center / cover no-repeat,
      #0b0907;
  }

  .pay-hero .pay-hero-copy {
    max-width: 720px;
  }

  .pay-hero .pay-hero-copy > h2 {
    font-size: clamp(70px, 13vw, 104px);
  }

  .pay-hero .hero-payment-visual {
    width: min(100%, 580px);
    min-height: 530px;
    margin: 0 auto;
  }

  .pay-hero .hero-orbit-one {
    top: 48%;
    right: -20%;
    width: 80vw;
  }

  .pay-hero .hero-orbit-two {
    top: 53%;
    right: -6%;
    width: 58vw;
  }

  .pay-hero .hero-scroll {
    display: none;
  }
}

@media (max-width: 599px) {
  .pay-hero {
    padding: 126px 22px 70px;
  }

  .pay-hero .section-kicker {
    font-size: 9px;
  }

  .pay-hero .pay-hero-copy > h2 {
    margin-top: 30px;
    font-size: clamp(57px, 17vw, 78px);
    line-height: 0.88;
  }

  .pay-hero .hero-summary {
    font-size: 20px;
  }

  .pay-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
  }

  .pay-hero .button-quiet {
    align-self: flex-start;
  }

  .pay-hero .hero-payment-visual {
    min-height: 440px;
  }

  .pay-hero .payment-card-back {
    top: 58px;
    right: -9%;
    min-height: 305px;
  }

  .pay-hero .payment-card-front {
    top: 22px;
    width: 91%;
    min-height: 350px;
    padding: 29px 25px;
  }

  .pay-hero .card-brand {
    margin-top: 34px;
    font-size: 22px;
  }

  .pay-hero .card-price strong {
    font-size: clamp(68px, 23vw, 88px);
  }

  .pay-hero .card-price small {
    font-size: clamp(18px, 6vw, 24px);
  }

  .pay-hero .card-divider {
    margin: 28px 0 19px;
  }

  .pay-hero .card-payment-copy {
    max-width: 250px;
    font-size: 8px;
  }

  .pay-hero .visual-caption {
    left: 0;
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pay-hero *,
  .pay-hero *::before,
  .pay-hero *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
