/********** Landing Page: Subscription **********/

/*** Hero ***/
/* This hero has more content (kicker, longer heading, two CTAs, trust row)
   than the template's default hero, so the decorative bottom wave graphic
   (fixed-height background image, anchored to the bottom of .hero-header)
   needs extra clearance on desktop or it overlaps the buttons/trust row. */
@media (min-width: 992px) {
  .hero-header {
    padding-bottom: 19rem;
  }
}

.landing-kicker {
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.hero-trust-row span {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
  opacity: 0.92;
}

.hero-trust-row i {
  margin-right: 0.4rem;
  color: #ffffff;
}

/*** Hero device image ***/
.hero-device-image {
  max-width: 560px;
  width: 100%;
  filter: drop-shadow(0 18px 34px rgba(20, 30, 60, 0.22));
}

/*** Price highlight (avoids relying on Bootstrap's green "success" color) ***/
.landing-price-highlight {
  color: var(--primary);
}

/*** Pain Points ***/
.pain-item {
  background: var(--light);
  height: 100%;
  transition: 0.3s;
}

.pain-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06);
}

.pain-item-highlight {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  color: #ffffff;
}

.pain-item-highlight h5,
.pain-item-highlight p {
  color: #ffffff;
}

.pain-icon {
  display: inline-block;
  font-size: 1.75rem;
  color: var(--primary);
}

.pain-item-highlight .pain-icon {
  color: #ffffff;
}

/*** Guarantee banner ***/
.guarantee-banner {
  background: var(--light);
  border: 1px solid rgba(66, 148, 227, 0.18);
}

.guarantee-icon {
  font-size: 2.75rem;
  color: var(--primary);
}

/*** Final CTA ***/
.final-cta {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

/*** Mobile sticky CTA ***/
.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  background: #ffffff;
  box-shadow: 0 -6px 20px rgba(38, 43, 71, 0.12);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-sticky-cta.show {
  transform: translateY(0);
}

.mobile-sticky-cta-text {
  color: var(--dark);
}

/* Keep the back-to-top button from being covered by the mobile sticky CTA bar */
@media (max-width: 991.98px) {
  .back-to-top {
    bottom: 85px;
  }
}
