/* responsive.css - Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .features-grid,
    .steps-grid,
    .team-members {
        grid-template-columns: repeat(2, 1fr);
    }

    .subscription-container,
    .about-container,
    .contact-container,
    .coming-soon-container,
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .subscription-content,
    .about-content,
    .coming-soon-content {
        padding-right: 0;
    }

    .download-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {

    /* Header */
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Hero */
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    /* Sections */
    .features-grid,
    .steps-grid,
    .team-members {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Download */
    .download-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Contact Form */
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-logo {
        height: 50px;
    }

    .partner-logo img {
        max-height: 30px;
    }

    .feature-card,
    .step-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}