/* ===== PLATFORM SHOWCASE SECTION ===== */
.platform-showcase {
    background: linear-gradient(180deg, #f8f9fe 0%, #ffffff 100%);
    padding: 80px 0;
    overflow: hidden;
}

.showcase-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.showcase-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.showcase-subtitle {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-number {
    color: #667eea;
    font-weight: 700;
    font-size: 1.2em;
}

/* Carousel Container */
.showcase-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 20px;
    box-sizing: border-box;
}


.showcase-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 500px;
    max-width: 100%;
    border-radius: 6px;
}


/* Carousel Navigation */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-nav-btn:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.carousel-nav-btn:hover svg {
    stroke: white;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.dot.active {
    background: #667eea;
    width: 32px;
    border-radius: 6px;
}

.dot:hover {
    background: #a0aec0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content-grid {
        gap: 15px;
        padding: 20px;
    }

    .showcase-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .platform-showcase {
        padding: 30px 0;
    }

    .showcase-title {
        font-size: 1.4rem;
        padding: 0 15px;
    }

    .showcase-subtitle {
        font-size: 0.85rem;
        padding: 0 15px;
    }

    .showcase-carousel-container {
        padding: 0 40px;
    }

    .carousel-viewport {
        max-width: 100%;
    }

    .slide-content {
        padding: 10px;
        min-height: 250px;
        max-height: 300px;
    }

    .carousel-nav-btn {
        width: 32px;
        height: 32px;
    }

    .showcase-image {
        max-height: 220px;
        max-width: 100%;
        width: 100%;
        height: auto;
        margin: 0 auto;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .platform-showcase {
        padding: 20px 0;
    }

    .showcase-title {
        font-size: 1.2rem;
        padding: 0 10px;
        line-height: 1.3;
    }

    .showcase-subtitle {
        font-size: 0.8rem;
        padding: 0 10px;
        line-height: 1.4;
    }

    .showcase-carousel-container {
        padding: 0 35px;
        max-width: 100%;
    }

    .carousel-viewport {
        max-width: 100%;
        height: auto;
    }

    .slide-content {
        padding: 5px;
        min-height: 200px;
        max-height: 250px;
    }

    .carousel-nav-btn {
        width: 28px;
        height: 28px;
    }

    .prev-btn {
        left: 2px;
    }

    .next-btn {
        right: 2px;
    }

    .showcase-image {
        max-height: 180px;
        max-width: 100%;
        width: 100%;
        height: auto;
        margin: 0 auto;
        object-fit: contain;
    }
}
