.qp-fixed-bg-cta{
  position: relative;
  padding: 90px 0;
  background-color: #0f1420;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

/* iOS Safari fallback (avoids jank) */
@supports (-webkit-touch-callout: none) {
  .qp-fixed-bg-cta{
    background-attachment: scroll;
  }
}

.qp-fixed-bg-cta__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 32, 0.72) 0%, rgba(15, 20, 32, 0.55) 60%, rgba(15, 20, 32, 0.75) 100%);
}

.qp-fixed-bg-cta__inner{
  position: relative;
  z-index: 1;
}

.qp-fixed-bg-cta__content{
  text-align: center;
  display: grid;
  place-items: center;
  gap: 18px;
  max-width: 80ch;
  margin: 0 auto;
}

.qp-fixed-bg-cta__title{
  margin: 0;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #f3f3f3;
}

.qp-fixed-bg-cta__desc{
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.7;
}

.qp-fixed-bg-cta__desc p{
  margin: 0 0 1em;
}

.qp-fixed-bg-cta__desc p:last-child{
  margin-bottom: 0;
}

.qp-fixed-bg-cta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 13px 26px;
  border-radius: 30px;
  color: var(--e-global-color-19a9565, #ffffff);
  font-weight: 700;
  text-decoration: none;
  border: 0;
  background-color: transparent;
  background-image: radial-gradient(at left top, rgb(57, 223, 216) 0%, rgb(58, 32, 139) 95%);
  text-transform: uppercase;
  min-width: 170px;
  transition: filter 180ms ease, transform 180ms ease;
}

.qp-fixed-bg-cta__btn:hover,
.qp-fixed-bg-cta__btn:focus-visible{
  filter: brightness(1.06);
  color: var(--e-global-color-19a9565, #ffffff);
}
a.qp-fixed-bg-cta__btn:focus {
  color: #ffffff !important;
}

@media (max-width: 900px){
  .qp-fixed-bg-cta{
    padding: 70px 0;
    background-attachment: scroll;
  }
}

