/* ==========================================
        MOBILE RESPONSIVE
========================================== */

@media (max-width:768px){

    body{
        padding-top:70px;
    }

    /* Hero */

    .hero{
        padding:70px 0 50px;
    }

    .hero .container{
        flex-direction:column;
        gap:35px;
        padding:0 16px;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content h1{
        font-size:40px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:16px;
        max-width:100%;
    }

    .badge{
        font-size:13px;
        padding:8px 16px;
    }

    .hero-features{
        justify-content:center;
        gap:12px;
    }

    .hero-features div{
        width:100%;
        justify-content:center;
        font-size:14px;
    }

    /* Preview Card */

    .preview-card{
        width:100%;
        max-width:100%;
        padding:18px;
    }

    /* Upload Area */

    .upload-area{
        padding:35px 15px;
    }

    .upload-icon{
        font-size:42px;
    }

    .upload-area h3{
        font-size:20px;
    }

    .upload-area p{
        font-size:14px;
    }

    .upload-btn{
        width:100%;
        max-width:220px;
        padding:14px;
    }

    /* Toolbar */

    .toolbar{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .toolbar select{
        grid-column:1/-1;
        width:100%;
    }

    .toolbar button{
        width:100%;
        height:48px;
        font-size:16px;
    }

    /* Action Buttons */

    .action-buttons{
        grid-template-columns:repeat(2,1fr);
    }

    /* Crop Buttons */

    .crop-btn,
    .download-btn{
        width:100%;
        font-size:15px;
        padding:14px;
    }

    /* Image Info */

    .image-info{
        padding:18px;
    }

    .info-box h3{
        font-size:17px;
    }

    .info-box p{
        font-size:15px;
        flex-wrap:wrap;
    }

    /* Section Title */

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        font-size:15px;
    }

    /* FAQ */

    .faq{
        width:94%;
        margin:70px auto;
    }

    .faq-container{
        margin-top:35px;
    }

    .faq-question{
        font-size:17px;
        padding:18px 20px;
    }

    .faq-question span{
        font-size:24px;
    }

    .faq-answer p{
        padding:0 20px 20px;
        font-size:15px;
        line-height:28px;
    }

    /* Footer */

    .footer{
        padding:60px 0 25px;
    }

    .footer-top{
        gap:40px;
    }

    .footer-links{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-bottom-links{
        flex-wrap:wrap;
        justify-content:center;
    }

}


/* ==========================================
        SMALL MOBILE
========================================== */

@media (max-width:480px){

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-features div{
        font-size:13px;
    }

    .upload-area{
        padding:28px 12px;
    }

    .upload-icon{
        font-size:36px;
    }

    .upload-area h3{
        font-size:18px;
    }

    .toolbar{
        gap:10px;
    }

    .toolbar button{
        height:44px;
        font-size:14px;
    }

    .action-buttons{
        grid-template-columns:1fr;
    }

    .crop-btn,
    .download-btn{
        font-size:14px;
    }

    .section-title h2{
        font-size:28px;
    }

    .section-title p{
        font-size:14px;
    }

    .faq-question{
        font-size:16px;
    }

    .faq-answer p{
        font-size:14px;
        line-height:24px;
    }

    .footer-links{
        grid-template-columns:1fr;
    }

}