/* Testimonials Section */
#verhalen {
    padding: 4rem 0;
    background: var(--bg);
}

#verhalen .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1rem;
}

#verhalen h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.rev-shell {
    position: relative;
    overflow: visible;
    max-width: min(100%, calc(320px * 3 + 24px * 4));
    margin: 0 auto;
}

.rev-mask {
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.rev-track {
    display: flex;
    gap: 24px;
    padding: 1rem 24px;
    will-change: transform;
    transform: translateX(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.rev-card {
    flex: 0 0 320px;
    background: var(--red);
    border: none;
    border-radius: 16px;
    padding: 2rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

.rev-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
}

.rev-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.rev-card .stars {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.rev-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    max-width: 280px;
    margin: 0 auto;
}

.rev-arrow {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--red);
    border: none;
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
    font-size: 24px;
    transform: translateY(-50%);
    transition: transform 0.2s ease, background 0.2s ease;
}

.rev-prev { left: 16px; }
.rev-next { right: 16px; }

.rev-arrow:hover {
    background: #ff2a2f;
    transform: translateY(-50%) scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .rev-shell {
        max-width: min(100%, calc(320px * 2 + 24px * 3));
    }
}

@media (max-width: 900px) {
    .rev-shell {
        max-width: 440px;
    }

    .rev-track {
        padding: 1rem 32px;
    }

    .rev-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .rev-prev { left: 12px; }
    .rev-next { right: 12px; }
}

@media (max-width: 600px) {
    .rev-shell {
        max-width: min(100%, 340px);
    }

    .rev-track {
        padding: 0;
        gap: 0;
    }

    .rev-card {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 1.5rem;
    }

    .rev-card h3 {
        font-size: 1.1rem;
    }

    .rev-card p {
        font-size: 0.9rem;
    }

    .rev-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .rev-prev { left: 10px; }
    .rev-next { right: 10px; }
}
