/* ========================================
   STICKY CTA
======================================== */
.sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1400;
  background: #173b8f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-cta__inner {
  display: grid;
  grid-template-columns: 180px 1fr 170px;
  align-items: center;
  gap: 20px;
  min-height: 74px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.sticky-cta__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sticky-cta__logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 6px;
}

.sticky-cta__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-cta__name {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}

.sticky-cta__stars {
  color: #ffd84a;
  font-size: 13px;
  letter-spacing: 2px;
}

.sticky-cta__center {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.sticky-cta__right {
  display: flex;
  justify-content: flex-end;
}

.sticky-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;

  min-width: 170px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: linear-gradient(180deg, #ff4fb0 0%, #ff1d8e 50%, #e50068 100%);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.sticky-cta__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.sticky-cta__button:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 105px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff3ba7 0%, #f00068 100%);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
  z-index: 1999;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-cta__star {
  color: #ffd84a;
}

.sticky-cta__star.is-empty {
  color: rgba(255, 255, 255, 0.28);
}

.sticky-cta__star.is-half {
  background: linear-gradient(90deg, #ffd84a 50%, rgba(255, 255, 255, 0.28) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
