/* ================= SCROLL FADE-IN ================= */

.anim-hidden {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= STICKY CTA BAR ================= */

.sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0;
  right: 0;
  z-index: 997;
  background: rgba(10, 10, 10, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 13px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.sticky-cta.visible {
  bottom: 0;
}

.sticky-cta-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  flex: 1;
}

.sticky-cta-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.sticky-btn-primary {
  background: rgb(0, 200, 150);
  color: #000;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.sticky-btn-primary:hover { opacity: 0.85; }

.sticky-btn-secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s;
}

.sticky-btn-secondary:hover { border-color: rgba(255, 255, 255, 0.55); }

@media (max-width: 600px) {
  .sticky-cta {
    padding: 12px 16px;
    flex-direction: column;
    gap: 8px;
    bottom: -110px;
  }

  .sticky-cta-text { font-size: 0.8rem; text-align: center; }

  .sticky-cta-buttons { width: 100%; justify-content: center; }

  .sticky-btn-primary,
  .sticky-btn-secondary {
    flex: 1;
    text-align: center;
    padding: 9px 12px;
  }
}
