.reviews-section {
    padding: 20px 20px;
    background:
        radial-gradient(circle at top left, #CFF5E7 0, transparent 35%),
        linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
}

.reviews-carousel {
    position: relative;
    max-width: 650px;
    margin: 100px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.reviews-track {
    width: 100%;
    display: grid;
    overflow: hidden;
}

.review-card {
    grid-area: 1 / 1;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    position: relative;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    padding: 10px;

    background: linear-gradient(180deg, #ffffff 0%, #f8fffc 100%);
    border-radius: 28px;
    border: 2px solid rgba(0,128,128,.22);
    border-top: 8px solid #008080;

    box-shadow:
        0 14px 35px rgba(10,35,66,.16),
        0 0 0 1px rgba(0,128,128,.08);

    text-align: left;
    overflow: visible;

    transform: translateY(10px);
    transition:
        opacity 5s ease,
        visibility 5s ease,
        transform 5s ease,
        box-shadow 2s ease;
}

.review-card.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.review-card.active:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 65px rgba(10,35,66,.18);
}

.review-card::before {
    content: "❝";
    position: absolute;
    top: 12px;
    right: 28px;
    font-size: 7rem;
    line-height: 1;
    color: rgba(207,245,231,.75);
    font-family: Georgia, serif;
}

.stars {
    color: #008080;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.review-source {
    display: inline-block;
    background: #CFF5E7;
    color: #0A2342;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 650;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.review-card p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.5;
    color: #344;
    font-style: italic;
    margin: 0 0 28px;
}

.review-card strong {
    display: block;
    color: #0A2342;
    font-size: 1.05rem;
    font-weight: 800;
}

.review-card::after {
    content: "";
    position: absolute;
    bottom: -70px;
    left: -70px;
    width: 180px;
    height: 180px;
    background: rgba(0,128,128,.08);
    border-radius: 50%;
}

.carousel-btn {
    border: none;
    background: #0A2342;
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: .25s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #008080;
    transform: scale(1.08);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(10,35,66,.25);
    cursor: pointer;
    transition: .25s ease;
}

.dot.active {
    background: #008080;
    transform: scale(1.25);
}

@media (max-width: 700px) {
    .reviews-carousel {
        margin: 10px;
        gap: 10px;
    }

    .review-card {
        padding: 8px 24px 2px 24px;
        max-width: 250px;
    }

    .carousel-btn {
        width: 20px;
        height: 20px;
        font-size: .7rem;
    }
}