/* Scroll-triggered animations — replaces Webflow IX2 */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Sticky header — fixed, transparent to white on scroll */

.page-wrapper {
  padding-top: 80px;
}

.header.w-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

@media screen and (max-width: 991px) {
  .page-wrapper {
    padding-top: 70px;
  }
}

@media screen and (max-width: 479px) {
  .page-wrapper {
    padding-top: 60px;
  }
}

.header.header-scrolled {
  background-color: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
