/* Extra large devices (Desktops, >1440px) */
@media (max-width: 1440px) {
    /* Styles here */
}

@media (max-width: 1300px) {
    h1 {
        font-size: 50px;
    }

    .testimonials .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large laptops (1200px and below) */
@media (max-width: 1200px) {
    h1 {
        font-size: 40px;
    }

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

    h2 {
        font-size: 34px;
    }

    .hero_main {
        gap: 50px;
    }

    .feature-card {
        max-width: 50%;
    }

    .unlock_main p {
        padding-bottom: 28px;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .hero_image {
        height: 500px;
    }

    .hero_image img {
        height: 100%;
    }
}

/* Medium devices (Tablets, 992px and below) */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }

    .img-card img {
        width: 100%;
    }

    .feature-card {
        max-width: 100%;
        padding: 20px;
    }

    .step-content p {
        font-size: 16px;
        line-height: 1.3;
    }

    .feature-flex,
    .feature-flex:nth-child(even) {
        flex-direction: column-reverse;
        gap: 16px;
        padding-bottom: 28px;
    }

    .img-card {
        justify-content: center;
    }

    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .step-content h3,
    .step-number {
        font-size: 20px;
    }

    .step-number {
        width: 70px;
        height: 70px;
    }

    .step-card {
        padding: 60px 20px 20px 20px;
    }

    .step-content img {
        margin-bottom: 14px;
    }

    .feature-card ul {
        font-size: 16px;
        line-height: 26px;
    }

    .feature-flex:last-child {
        padding-bottom: 0;
    }

    .hero_main {
        flex-direction: column-reverse;
    }

    .unlock_text {
        max-width: 100%;
    }

    .hero_main {
        gap: 30px;
    }

    .hero_text {
        flex: auto;
        width: 100%;
    }

    .hero_text p {
        margin-bottom: 16px;
        font-size: 18px;
    }

    .hero_section {
        padding: 26px 0;
    }

    .footer_main {
        display: block;
    }

    .footer-right {
        justify-content: flex-start;
        flex: auto;
        padding-top: 30px;
    }

    section {
        padding: 40px 0;
    }
}

/* Small tablets (768px and below) */
@media (max-width: 768px) {
    .btn-download {
        width: 100%;
        max-width: fit-content;
    }

    .step-number {
        width: 60px;
        height: 60px;
    }

    .step-card {
        padding: 55px 16px 16px 16px;
    }

    .feature_header {
        padding-bottom: 16px;
    }

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

    .testimonial_header {
        padding-bottom: 24px;
    }

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

    .testimonials .card .quote {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .testimonials .card .quote::before {
        top: 0px;
        left: 16px;
    }


    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    .unlock_main p {
        padding-bottom: 20px;
    }

    .hero-btn {
        gap: 12px;
    }

    .hero_text h1 {
        margin-bottom: 10px;
    }

    .hero_main {
        gap: 20px;
    }

    footer {
        padding: 40px 0;
    }

    .ft_logo {
        padding-bottom: 12px;
    }

    .footer-links {
        padding-bottom: 16px;
    }

    .footer-right {
        padding-top: 20px;
    }

    body {
        line-height: 1.4;
    }
}

/* Mobile landscape (576px and below) */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .step-content h3 {
        padding-bottom: 8px;
    }

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

    .feature-card {
        padding: 16px;
    }

    .testimonials .card {
        padding: 16px;
    }

    .unlock_main p {
        padding-bottom: 14px;
        padding-top: 10px;
    }

    footer,
    .hero_section {
        padding: 30px 0;
    }

    .testimonial_header .subtitle {
        font-size: 16px;
    }

    .footer-links {
        gap: 14px;
    }

    .hero_image {
        height: 350px;
    }

    .hero_image img {
        height: 100%;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .hero_text p {
        font-size: 16px;
    }

    .header_main {
        padding: 16px 0;
    }

    section {
        padding: 32px 0;
    }

}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
    h2 {
        font-size: 26px;
    }
}