.carousel-container {
    width: 100vw;
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Slide Backgrounds */
.slide-1 {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.slide-2 {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.slide-3 {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.slide-4 {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.slide-5 {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.content-wrapper {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    z-index: 10;
}

.text-content {
    flex: 1;
    color: white;
    padding-right: 60px;
}

.step-number {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.description {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 30px;
}

.visual-content {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-screenshot {
    max-width: 100%;
    max-height: 50vh;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    object-fit: contain;
}

/* Navigation Dots */
.carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-dot.active {
        background: white;
        transform: scale(1.2);
    }

    .nav-dot::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.3);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .nav-dot.active::after {
        opacity: 1;
    }

/* Mobile: vertical layout */
@media (max-width: 768px) {
    .carousel-container {
        height: auto;
        min-height: 70vh;
    }

    .content-wrapper {
        flex-direction: column;
        padding: 30px 20px 60px;
        text-align: center;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .main-title {
        font-size: 28px;
    }

    .description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .step-screenshot {
        max-height: 35vh;
        border-radius: 8px;
    }

    .carousel-nav {
        bottom: 15px;
    }
}
