/* Landing Page Styles */

/* Custom CSS-in-JS styles converted to CSS */
:root {
    --primary-start: #467BF5;
    --primary-end: #007bff;
    --text-primary: #1e1e1e;
    --text-secondary: #6c757d;
    --bg-light: #f8f9fa;
    --card-bg: #ffffff;
}

/* Utility Classes */
.gradient-bg {
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    border: none;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(70, 123, 245, 0.3);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    background: linear-gradient(135deg, var(--primary-start), var(--primary-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Styles */
nav {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Section Styles */
.hero-stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-stats .stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats .stat-item:last-child {
    border-right: none;
}

/* Features Section Styles */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Pricing Section Styles */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border: 2px solid #4f46e5;
    position: relative;
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f46e5;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Testimonials Section Styles */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Section Styles */
.cta-stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-stats .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Footer Styles */
.footer-social a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: white;
}

/* Scroll to Top Button */
#scrollToTopBtn {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#scrollToTopBtn.show {
    opacity: 1;
    visibility: visible;
}

/* Demo Modal Styles */
#demoModal {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#demoModal.show {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Loading States */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
:focus {
    outline: 2px solid var(--primary-start);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    nav, footer, .cta-section {
        display: none !important;
    }
    
    .content {
        max-width: 100% !important;
        margin: 0 !important;
        padding: 20px !important;
    }
}