/* Media Queries */

/* Tablets and small desktops */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 24px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }

    .header {
        padding: 16px;
    }

    .logo {
        font-size: 1.25rem;
    }

    .status-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .hero-section {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .trust-indicators {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .indicator {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        gap: 24px;
    }

    .social-links {
        gap: 20px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .badge {
        font-size: 0.8rem;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
}
