/* =========================================
   SECTION 06: RELIABILITY CAROUSEL
   ========================================= */

/* Carousel wrapper */
.reliability-carousel-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 40px;
}

/* Slides container */
.reliability-slides {
    width: 100%;
    max-width: 900px;
    height: 600px;
    position: relative;
    overflow: visible;
}

.reliability-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, visibility 0s 0.6s;
    pointer-events: none;
}

.reliability-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, visibility 0s 0s;
    pointer-events: all;
}

/* Navigation dots */
.reliability-nav {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.reliability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CCC;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reliability-dot:hover {
    background: #999;
    transform: scale(1.2);
}

.reliability-dot.active {
    width: 24px;
    border-radius: 4px;
    background: #FF6633;
}

/* Navigation arrows */
.reliability-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.reliability-arrow:hover {
    background: #FFFFFF;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.reliability-arrow.prev {
    left: -60px;
}

.reliability-arrow.next {
    right: -60px;
}

.reliability-arrow svg {
    width: 20px;
    height: 20px;
    stroke: #333;
    stroke-width: 2.5;
}

/* Screenshot container */
.screenshot-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    padding: 20px;
}

.screenshot-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}