.shape-container {
    transform: skewY(-12deg); 
    border-radius: 30px;
    box-shadow: 0 50px 100px -20px rgba(50, 50, 93, 0.25), 
                0 30px 60px -30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.shape-container:hover {
    transform: skewY(-12deg) translateY(-10px) scale(1.02);
}

.stripe-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        110deg,
        #60a5fa 0%,    
        #60a5fa 25%,
        #c084fc 25%,   
        #c084fc 50%,
        #db2777 50%,   
        #db2777 75%,
        #7c3aed 75%,
        #7c3aed 100%
    );
    position: relative;
}

.stripe-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 60%);
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #f6f9fc; 
    z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

#preloader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content { position: relative; padding-top: 20px; }

.loader-text {
    font-size: 2.5rem; font-weight: 800;
    color: #0a2540; letter-spacing: -0.05em;
}

.bouncing-ball {
    width: 22px; height: 22px;
    background-color: #7c3aed;
    border-radius: 50%;
    position: absolute; top: 0; left: 0;
    animation: jumpAcross 1.5s infinite linear;
}

@keyframes jumpAcross {
    0% { left: 0; top: 10px; }
    25% { top: -15px; }
    50% { top: 10px; }
    75% { top: -15px; }
    100% { left: 100%; top: 10px; }
}

.timeline-line {
    position: absolute;
    left: 24px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, #60a5fa 0%, #c084fc 50%, #db2777 100%);
    z-index: 0;
}

.step-circle {
    width: 50px; height: 50px;
    background: white;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-weight: 800; font-size: 1.25rem;
    position: relative; z-index: 10;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
}

.group:hover .step-circle {
    border-color: #c084fc;
    box-shadow: 0 0 15px rgba(192, 132, 252, 0.4);
    transform: scale(1.1);
}