/* =========================
   STICKY CTA
========================= */

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 99999;
  width: min(760px, calc(100% - 32px));
  pointer-events: none;
}

.sticky-cta-inner {
  pointer-events: auto;
  min-height: 68px;
  padding: 10px 12px 10px 26px;
  border-radius: 999px;
  background: rgba(7, 20, 43, 0.88);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(7,20,43,0.34);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sticky-cta-inner span {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
}

.sticky-cta-inner a {
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #07142b !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
  transition: 0.25s ease;
}

.sticky-cta-inner a:hover {
  transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 720px) {
  .sticky-cta {
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .sticky-cta-inner {
    min-height: auto;
    border-radius: 24px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .sticky-cta-inner span {
    text-align: center;
    font-size: 14px;
  }

  .sticky-cta-inner a {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.sticky-cta {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(18px);
  transition: 0.35s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* MOBILE FLOATING CTA */

.mobile-sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;

  background: linear-gradient(135deg, #08142f, #1d2b53);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);

  display: none;
}

/* ONLY MOBILE */
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 140px;
  }
}