/* STICKY */
.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(6, 6, 6, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(245, 160, 32, 0.2);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky.show {
  transform: translateY(0);
}
.stxt strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--w);
}
.stxt span {
  font-size: 12px;
  color: var(--w3);
}
.scta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.scta:hover {
  background: #1db954;
}
.scta svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}
@media (max-width: 480px) {
  .stxt {
    display: none;
  }
  .scta {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 16px;
  }
}

footer {
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 11px;
  color: rgba(253, 252, 248, 0.2);
  letter-spacing: 0.03em;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.r {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.r.in {
  opacity: 1;
  transform: translateY(0);
}
.r.d1 {
  transition-delay: 0.08s;
}
.r.d2 {
  transition-delay: 0.16s;
}
.r.d3 {
  transition-delay: 0.24s;
}
.r.d4 {
  transition-delay: 0.32s;
}
