/* Animations Disabled - All animations removed for now */

/* Basic transitions only for essential interactions */
.nav-link {
    transition: color 0.2s ease;
}

.cta-button,
.cta-primary,
.product-cta,
.form-submit {
    transition: background-color 0.2s ease;
}

/* Remove all animations and complex transitions */
* {
    animation: none !important;
    transition: none !important;
}

/* Keep only essential hover states without animations */
.nav-link:hover {
    color: var(--color-gold);
}

.benefit-card:hover,
.product-card:hover,
.feature-card:hover {
    /* Static hover states only */
    transform: none;
    animation: none;
}