    .rb-reviews-section {
        background: #fff;
        padding: 90px 0;
        overflow: hidden;
    }

    .rb-review-cards-wrap {
        position: relative;
        min-height: 420px;
    }

    .rb-review-card {
        width: 360px;
        max-width: 100%;
        background: linear-gradient(135deg, #ffffff 0%, #f2f2f2 100%);
        box-shadow: 0 18px 45px rgba(0,0,0,.08);
        padding: 28px 30px 24px;
        position: relative;
        margin-bottom: 28px;
    }

    .rb-review-card.rb-card-offset-right {
        margin-left: 220px;
        margin-top: -40px;
    }

    .rb-review-card.rb-card-offset-left {
        margin-left: 70px;
        margin-top: -10px;
    }

    .rb-quote-mark {
        position: absolute;
        left: 22px;
        top: 10px;
        font-size: 86px;
        line-height: 1;
        color: #000;
        font-family: Georgia, serif;
        font-weight: 700;
    }

    .rb-review-content {
        position: relative;
        z-index: 2;
        padding-left: 48px;
    }

    .rb-review-text {
        font-size: 13px;
        line-height: 1.5;
        font-weight: 600;
        color: #111;
        margin: 0 0 14px;
    }

    .rb-review-category {
        font-size: 11px;
        color: #555;
        text-align: right;
        margin-bottom: 14px;
    }

    .rb-review-person {
        display: flex;
        align-items: center;
        gap: 13px;
    }

    .rb-review-avatar {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        overflow: hidden;
        background: #eee;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }

    .rb-review-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .rb-review-person strong {
        display: block;
        font-size: 12px;
        color: #111;
        line-height: 1.2;
    }

    .rb-review-person small {
        display: block;
        font-size: 10px;
        color: #777;
        margin-top: 2px;
    }

    .rb-stars {
        color: #ffc233;
        font-size: 13px;
        letter-spacing: 2px;
        margin-top: 5px;
    }

    .rb-review-copy {
        max-width: 430px;
    }

    .rb-review-copy h2 {
        font-size: clamp(18px, 4vw, 28px);
        line-height: 1.05;
        font-weight: 700;
        color: #282832;
        margin-bottom: 34px;
    }

    .rb-review-copy p {
        font-size: clamp(10px, 3vw, 13px);
        line-height: 1.55;
        color: #333;
        margin-bottom: 34px;
    }

    .rb-review-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 155px;
        padding: 12px 28px;
        border-radius: 999px;
        background: #ef1749;
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        transition: all .25s ease;
    }

    .rb-review-btn:hover {
        background: #c90f3a;
        color: #fff;
        transform: translateY(-2px);
    }

    @media (max-width: 991px) {
        .rb-reviews-section {
            padding: 60px 0;
        }

        .rb-review-cards-wrap {
            min-height: auto;
            display: grid;
            gap: 22px;
        }

        .rb-review-card,
        .rb-review-card.rb-card-offset-right,
        .rb-review-card.rb-card-offset-left {
            width: 100%;
            margin: 0;
        }

        .rb-review-copy {
            max-width: 100%;
            text-align: center;
        }
    }

    @media (max-width: 575px) {
        .rb-review-card {
            padding: 24px 22px;
        }

        .rb-review-content {
            padding-left: 38px;
        }

        .rb-quote-mark {
            font-size: 70px;
            left: 16px;
        }
    }
.rb-reviews-page {
    background: #fff;
    padding: 90px 0;
    overflow: hidden;
}

.rb-reviews-page-head {
    max-width: 680px;
    margin: 0 auto 38px;
    text-align: center;
}

.rb-reviews-page-head h1 {
    font-size: clamp(28px, 5vw, 46px);
    line-height: 1.05;
    font-weight: 700;
    color: #282832;
    margin: 0 0 18px;
}

.rb-reviews-page-head p {
    font-size: 14px;
    line-height: 1.65;
    color: #333;
    margin: 0;
}

.rb-review-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}

.rb-review-filter {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff 0%, #f2f2f2 100%);
    box-shadow: 0 10px 28px rgba(0,0,0,.07);
    padding: 12px 18px;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
}

.rb-review-filter small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #fff;
    color: #555;
    font-size: 10px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}

.rb-review-filter:hover,
.rb-review-filter.active {
    background: #ef1749;
    color: #fff;
    transform: translateY(-2px);
}

.rb-review-filter:hover small,
.rb-review-filter.active small {
    color: #ef1749;
}

.rb-reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 34px 28px;
    align-items: start;
}

.rb-review-page-card {
    width: 100%;
    grid-column: span 4;
    margin: 0;
    transition: opacity .25s ease, transform .25s ease;
}

.rb-review-page-card:nth-child(6n+2) {
    margin-top: 48px;
}

.rb-review-page-card:nth-child(6n+3) {
    margin-top: 12px;
}

.rb-review-page-card:nth-child(6n+4) {
    grid-column: 2 / span 4;
    margin-top: -14px;
}

.rb-review-page-card:nth-child(6n+5) {
    margin-top: 36px;
}

.rb-review-page-card.is-hidden {
    display: none;
}

@media (max-width: 991px) {
    .rb-reviews-page {
        padding: 60px 0;
    }

    .rb-reviews-page-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .rb-review-page-card,
    .rb-review-page-card:nth-child(n) {
        grid-column: auto;
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .rb-review-filter-wrap {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .rb-review-filter {
        flex: 0 0 auto;
    }
}