/* ============================================
   DIGITAL LAVROS — ANIMATION STATES & HINTS
   ============================================ */

/* --- Will-change hints for animated elements --- */
.cursor,
.cursor-ring {
    will-change: transform;
}

.loader-half {
    will-change: transform;
}

.hero-title .char {
    will-change: transform, opacity;
}

.service-card,
.pricing-card,
.benefit-item,
.tech-card {
    will-change: transform, opacity;
}

.velocity-marquee {
    will-change: transform;
}

.footer-content {
    will-change: clip-path;
}

.magnetic-btn {
    will-change: transform;
}

/* --- Pre-animation states (GSAP sets these via JS,
   but we set them in CSS too to prevent FOUC) --- */
.hero-badge,
.hero-subtitle,
.hero-metrics,
.hero-cta {
    opacity: 0;
}

.service-card {
    opacity: 0;
    transform: translateY(60px);
}

.benefit-item {
    opacity: 0;
    transform: translateY(40px);
}

.tech-card {
    opacity: 0;
    transform: translateY(40px);
}

.method-step {
    opacity: 0;
    transform: translateX(-40px);
}

.philosophy-item {
    opacity: 0;
    transform: translateY(20px);
}

.pricing-card {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
}

.faq-item {
    opacity: 0;
    transform: translateY(20px);
}

/* --- Section titles pre-animation (revealed by scroll) --- */
.section-tag {
    opacity: 0;
    transform: translateY(10px);
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-badge,
    .hero-subtitle,
    .hero-metrics,
    .hero-cta,
    .service-card,
    .benefit-item,
    .tech-card,
    .method-step,
    .philosophy-item,
    .pricing-card,
    .faq-item,
    .section-tag {
        opacity: 1;
        transform: none;
    }

    .loader { display: none !important; }
    .cursor, .cursor-ring { display: none !important; }
    body { cursor: auto; }
}
