/* Sticky download CTA — all SEO landing pages */
.cl6-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(7, 7, 12, 0) 0%, rgba(7, 7, 12, 0.92) 28%, rgba(7, 7, 12, 0.98) 100%);
  border-top: 1px solid rgba(252, 175, 23, 0.35);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.cl6-sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cl6-sticky-cta__text {
  font-size: 13px;
  color: #ccc;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: "Barlow Condensed", sans-serif;
}
.cl6-sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #FCAF17;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 0 24px rgba(252, 175, 23, 0.35);
  white-space: nowrap;
}
.cl6-sticky-cta__btn:hover {
  background: #ffd04a;
}
.cl6-sticky-cta__ghost {
  color: #FCAF17;
  font-size: 13px;
  text-decoration: none;
  opacity: 0.85;
  white-space: nowrap;
}
body.has-sticky-cta {
  padding-bottom: 76px;
}
@media (max-width: 820px) {
  .cl6-sticky-cta__text {
    display: none;
  }
  .cl6-sticky-cta {
    gap: 14px;
  }
}
@media (min-width: 821px) {
  .cl6-sticky-cta {
    left: auto;
    right: 20px;
    bottom: 20px;
    width: auto;
    max-width: 280px;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(252, 175, 23, 0.35);
    border-radius: 6px;
    padding: 14px 16px;
    background: rgba(7, 7, 12, 0.96);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  }
  body.has-sticky-cta {
    padding-bottom: 24px;
  }
}
