/* Landing Page Styles for AI Labs Audit */

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.bg-gradient {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Feature Cards Hover Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Feature Icons */
.feature-icon {
    display: inline-block;
    transition: transform 0.3s ease;
}

.card:hover .feature-icon {
    transform: scale(1.1);
}

/* Step Numbers */
.step-number {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1);
}

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

#pricing .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

/* Popular Badge */
.badge.bg-primary {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Stat Cards */
.stat-card {
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
    background-color: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(102, 126, 234, 0.5);
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Navbar Sticky */
.navbar.sticky-top {
    transition: box-shadow 0.3s ease;
}

.navbar.sticky-top.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Images */
#hero img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Trust Badges */
.badge.bg-white {
    font-size: 0.875rem;
    font-weight: 500;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Button Enhancements */
.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

/* Section Spacing */
section {
    scroll-margin-top: 80px; /* Account for sticky navbar */
}

/* Media Queries */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    #hero {
        padding: 2rem 0 !important;
    }

    .step-number {
        width: 50px !important;
        height: 50px !important;
    }

    .btn-lg {
        padding: 0.625rem 1.5rem;
        font-size: 1rem;
    }
}

/* Dark Mode Support (if implemented later) */
@media (prefers-color-scheme: dark) {
    .bg-light {
        background-color: #1a1a1a !important;
        color: #ffffff;
    }

    .card {
        background-color: #2d2d2d;
        color: #ffffff;
    }

    .text-muted {
        color: #b0b0b0 !important;
    }
}

/* Accessibility Improvements */
.btn:focus,
.accordion-button:focus,
.nav-link:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    #final-cta {
        display: none;
    }

    section {
        page-break-inside: avoid;
    }
}
