/* ===== MOCKUP SHOWCASE ===== */
.mockup-showcase {
    display: flex;
    justify-content: center;
    margin: 60px 0 80px;
}

.phone-wrapper {
    position: relative;
    width: 560px;
    height: auto;
}

.screen-container {
    position: absolute;
    z-index: 1;
    top: 4%;
    bottom: 3%;
    left: 7%;
    width: 86%;
    background-color: #000;
    border-radius: 32px;
    overflow: hidden;
}

.screen-img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 37px;
    object-fit: cover;
    transform: scale(0.97);
    transform-origin: top center;
}

.mockup-frame {
    position: relative;
    z-index: 10;
    width: 100%;
    display: block;
    pointer-events: none;
}

/* Animation subtile au scroll (optionnel) */
.mockup-showcase {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.mockup-showcase.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOCKUP RESPONSIVE ===== */

/* Tablette / iPad */
@media (max-width: 1024px) {
    .mockup-showcase {
        margin: 50px 0 60px;
    }
    
    .phone-wrapper {
        width: 500px;
    }
    
    .screen-container {
        border-radius: 28px;
    }
    
    .screen-img {
        margin-top: 30px;
    }
}

/* Mobile large */
@media (max-width: 768px) {
    .mockup-showcase {
        margin: 40px 0 50px;
    }
    
    .phone-wrapper {
        width: 440px;
    }
    
    .screen-container {
        border-radius: 25px;
    }
    
    .screen-img {
        margin-top: 25px;
    }
}

/* Mobile petit */
@media (max-width: 480px) {
    .mockup-showcase {
        margin: 30px 0 40px;
    }
    
    .phone-wrapper {
        width: 320px;
    }
    
    .screen-container {
        border-radius: 20px;
    }
    
    .screen-img {
        margin-top: 20px;
        transform: scale(0.97);
    }
}

/* Très petit écran */
@media (max-width: 360px) {
    .phone-wrapper {
        width: 280px;
    }
    
    .screen-container {
        border-radius: 18px;
    }
    
    .screen-img {
        margin-top: 18px;
    }
}