/* Layered enhancements for the main theme. */

.solution-card,
.feature,
.trust-item,
.phone-mockup,
.soft-card,
.page-card {
  position: relative;
  overflow: hidden;
}

.solution-card::before,
.feature::before,
.trust-item::before,
.page-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent 55%);
  pointer-events: none;
}

.feature:nth-child(2n),
.solution-card:nth-child(2n),
.trust-item:nth-child(2n) {
  transition-delay: 0.04s;
}

.feature:nth-child(3n),
.solution-card:nth-child(3n),
.trust-item:nth-child(3n) {
  transition-delay: 0.08s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
