/* =====================================
   TABLET
===================================== */

@media (max-width: 1024px) {

    .container {
        padding: 0 25px;
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 768px) {

    .hero {
        padding: 35px 0 40px;
        align-items: flex-start;
        min-height: auto;
        background-position: -135% center;
        background-size: cover;
    }

    .prozess {
        padding: 40px 0;
    }

    .prozess h3 {
        margin-bottom: 30px;
    }

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

    .hero-text {
        margin-top: -20px;
        margin-left: 0;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero h2 {
        font-size: 18px;
        margin-bottom: 22px;
    }

    .hero-benefits {
        margin-top: 16px;
    }

    .hero-buttons {
        margin-top: 30px;
    }


    /* Prozess */

    .steps {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .steps::before {
        display: none;
    }

    .step {
        padding: 30px 25px;
    }


    /* CTA Section */

    .cta-section {
        padding: 50px 0;
        margin-bottom: 10px;
        background-position:30% left;
    }

    .cta-content {
        padding: 25px;
        max-width: 100%;
    }

    .cta-content h3 {
        font-size: 26px;
    }

    .cta-content p {
        font-size: 16px;
    }


    /* FAQ */

    .faq {
        padding: 40px 0;
        padding-top: 30px;
        margin-bottom: 20px;
    }

    .faq-list {
        gap: 12px;
    }

    .faq h3 {
        margin-top: 5;
    }

}


/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 30px;
    }

    .hero h2 {
        font-size: 16px;
    }

    .cta-primary {
        width: 100%;
        text-align: center;
    }

    .cta-primary.big {
        width: 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        margin-left: 0;
    }

}