/* Deferred Non-Critical CSS */
/* This file loads asynchronously after first paint */

/* Mobile Menu */
.mobile-menu-btn {
    display: block;
    padding: 8px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Additional Sections */
section {
    scroll-margin-top: 80px;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mt-4 {
    margin-top: 16px;
}

.mb-4 {
    margin-bottom: 16px;
}

.p-4 {
    padding: 16px;
}

/* Additional Responsive Helpers */
@media (min-width: 1024px) {
    .hero {
        padding: 64px 16px;
    }
}

/* Print Styles */
@media print {

    header,
    footer,
    .cta-buttons {
        display: none;
    }
}