/* Optimized Landing Page Styles - Performance Focused */

/* Custom scrollbar - lightweight */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a6fd8;
}

/* Simple hover effects */
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Responsive improvements */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cta-buttons {
        display: none;
    }
    
    .hero,
    .features,
    .stats {
        padding: 1rem 0;
    }
}
