.qp-fixed-bg-cta{
  position: relative;
  padding: 90px 0;
  --qp-section-bg: var(--color-surface, #001220);
  background-color: var(--qp-section-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  overflow: visible;
}

/* 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(135deg, rgba(0, 18, 32, 0.9) 0%, rgba(0, 18, 32, 0.68) 54%, rgba(199, 36, 130, 0.16) 100%);
}

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

.qp-fixed-bg-cta__content{
  text-align: left;
  display: grid;
  gap: 18px;
  max-width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 111, 97, 0.22);
  border-top: 3px solid var(--color-primary, #FF6F61);
  background: rgba(0, 18, 32, 0.5);
  backdrop-filter: blur(8px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.qp-fixed-bg-cta__eyebrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 12px;
  border: 1px solid rgba(255, 111, 97, 0.28);
  background: rgba(255, 111, 97, 0.08);
  color: var(--color-primary, #FF6F61);
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.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: 6px;
  padding: 13px 26px;
  border-radius: 0;
  color: var(--e-global-color-19a9565, #ffffff);
  font-weight: 700;
  text-decoration: none;
  border: 0;
  background-color: var(--qp-btn-bg, #ea4670);
  background-image: none;
  text-transform: uppercase;
  min-width: 170px;
}

.qp-fixed-bg-cta__btn:hover,
.qp-fixed-bg-cta__btn:focus-visible{
  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;
  }

  .qp-fixed-bg-cta__content{
    padding: 24px 22px 26px;
  }
}

