.cta-screenshot {
    position: absolute;
    width: 270px;
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
}

@keyframes screenFloat {
    0% {transform: translateX(400px) scale(0.3); opacity: 0;}
    15% {transform: translateX(100px) scale(1); opacity: 0.85; }
    75% {transform: translateX(0px) scale(1); opacity: 0.85; }
    100% {transform: translateX(-100px) scale(0.3); opacity: 0; }
}

@media (max-width: 768px) {
    .cta-screenshots {
        display: none;
    }
}