/* 10-layout-lp.css — fixed background + success scroll (front page only) */

.lp-fixed-bg-wrap {
  position: relative;
  z-index: 0;
}
.lp-fixed-bg.lp-fixed-bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.lp-fixed-bg.lp-fixed-bg-layer.lp-fixed-bg-visible {
  opacity: 1;
}
.lp-fixed-bg-wrap + div {
  position: relative;
  z-index: 1;
}

.success-section .success-story-image {
  filter: grayscale(1);
}
.success-section.success-in-view .success-story-image {
  filter: grayscale(0);
}
@media (max-width: 767px) {
  .success-section .success-story-image {
    filter: grayscale(0);
  }
}
