.anim-spin {
    animation: spin-slow 20s linear infinite;
    transform-origin: center;
}

.anim-float {
    animation: float-y 4s ease-in-out infinite;
}

.anim-pulse {
    animation: pulse-scale 3s ease-in-out infinite;
}

@keyframes float-subtle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.animate-float-icon {
    animation: float-subtle 4s ease-in-out infinite;
}

/* Glassmorphism accent */
.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-scale {

    0%,
    100% {
        transform: scale(1);
        transform-origin: center;
    }

    50% {
        transform: scale(1.1);
        transform-origin: center;
    }
}