/* SB GO — Custom Styles */

/* Scroll animations */
.js [data-animate] {
  opacity: 0;
  transition: opacity .5s ease, transform .5s ease;
  will-change: opacity, transform;
}

.js [data-animate="fade-up"] { transform: translateY(20px); }
.js [data-animate="fade-right"] { transform: translateX(-24px); }
.js [data-animate="fade-left"] { transform: translateX(16px); }

.js [data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* Form step animation */
.form-step-enter {
  animation: formStepIn .25s ease;
}

@keyframes formStepIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .js [data-animate],
  .form-step-enter {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}