/* ===================================
   SCROLL ANIMATIONS
   =================================== */

[data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-scroll].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Product images interaction */
.product-img {
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    cursor: pointer;
}

.product-img:hover {
    transform: scale(1.02);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
}

/* Hero screenshot interaction */
.hero-screenshot {
    transition: transform 0.3s ease-out;
    cursor: pointer;
}

.hero-screenshot:hover {
    transform: scale(1.01);
}

/* Feature cards stagger animation */
.feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

.feature-card:nth-child(5) {
    transition-delay: 0.5s;
}

.feature-card:nth-child(6) {
    transition-delay: 0.6s;
}