/* Responsive Styles */

/* Tablet and small desktop */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .hero {
        padding: 60px 0 50px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .counter {
        font-size: 2rem;
    }

    .form-container {
        padding: 30px 20px;
        margin: 30px auto;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    /* Timeline adjustments */
    .timeline-container::before {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px !important;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -30px;
        right: auto;
    }

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

    /* Grid adjustments */
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Button adjustments */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-secondary {
        width: 200px;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero {
        padding: 50px 0 40px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .form-container {
        padding: 25px 15px;
        margin: 25px auto;
    }

    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .logos-container {
        gap: 15px;
    }

    .logo-item {
        max-width: 80px;
    }

    /* Ensure buttons are touch-friendly */
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        font-size: 1rem;
    }

    /* FAQ adjustments */
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 15px;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    h1 {
        font-size: 1.8rem;
    }

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

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

    .form-container {
        padding: 20px 10px;
    }
}