
/* Optimized Pricing Page Styles */
.pricing-card {
    /* Remove heavy backdrop blur */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    
    /* Use a solid but semi-transparent background instead of blur */
    background: rgba(20, 25, 35, 0.95) !important;
    
    /* Optimize box-shadow for performance */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    
    /* Hardware acceleration hint */
    will-change: transform;
}

.pricing-card:hover {
    /* Simpler hover shadow */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Optimize Animated Gradient if present */
.animated-gradient {
    /* Reduce animation complexity if possible, or just ensure it's on GPU */
    will-change: background-position;
}
