        .rv-section {
            padding: 72px 0;
            background: #fff;
            font-family: 'DM Sans', sans-serif
        }

        .rv-head {
            text-align: center;
            margin-bottom: 2.5rem
        }

        .rv-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: #f0faf7;
            color: #0F6E56;
            border: 1px solid #c8e8df;
            border-radius: 30px;
            padding: 4px 14px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: .85rem
        }

        .rv-eyebrow-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #1de9a8;
            animation: rvDot 2s ease-in-out infinite
        }

        @keyframes rvDot {

            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }

            50% {
                opacity: .4;
                transform: scale(1.5)
            }
        }

        .rv-title {
            font-family: 'Syne', sans-serif;
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            font-weight: 800;
            color: #0d2b22;
            margin-bottom: .5rem;
            line-height: 1.2
        }

        .rv-title span {
            background: linear-gradient(135deg, #0F6E56, #185FA5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }

        .rv-sub {
            font-size: 14.5px;
            color: #5a7a70;
            margin-bottom: 1rem
        }

        .rv-rating-strip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #f8faf9;
            border: 1px solid #e8f0ed;
            border-radius: 30px;
            padding: 6px 16px;
            font-size: 13px
        }

        .rv-stars {
            color: #f59e0b;
            letter-spacing: 1px
        }

        .rv-rating-num {
            font-weight: 800;
            color: #0d2b22;
            font-family: 'Syne', sans-serif
        }

        .rv-rating-count {
            color: #8aaba0
        }

        /* Swiper cards */
        .rv-card {
            background: #fff;
            border: 1.5px solid #e8f0ed;
            border-radius: 20px;
            padding: 1.75rem;
            height: 100%;
            min-height: 260px;
            display: flex;
            flex-direction: column;
            gap: .85rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: transform .2s, box-shadow .2s;
            position: relative;
            overflow: hidden;
        }

        .rv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #0F6E56, #185FA5);
            border-radius: 3px 3px 0 0;
            opacity: 0;
            transition: opacity .2s;
        }

        .rv-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 32px rgba(0, 0, 0, .08)
        }

        .rv-card:hover::before {
            opacity: 1
        }

        .rv-quote {
            font-size: 2rem;
            color: #e8f0ed;
            line-height: 1;
            font-family: Georgia, serif;
            flex-shrink: 0
        }

        .rv-text {
            font-size: 14px;
            color: #4a5568;
            line-height: 1.7;
            flex: 1;
            font-style: italic;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .rv-stars-row {
            display: flex;
            gap: 2px
        }

        .rv-star {
            font-size: 14px
        }

        .rv-user {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: .75rem;
            border-top: 1px solid #f0f5f3
        }

        .rv-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 800;
            color: #fff;
            flex-shrink: 0;
            font-family: 'Syne', sans-serif
        }

        .rv-user-name {
            font-size: 14px;
            font-weight: 700;
            color: #0d2b22;
            margin-bottom: 2px
        }

        .rv-user-meta {
            font-size: 12px;
            color: #8aaba0
        }

        .rv-service-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            font-weight: 600;
            color: #0F6E56;
            background: #f0faf7;
            border: 1px solid #c8e8df;
            border-radius: 20px;
            padding: 1px 8px;
            margin-top: 2px
        }

        /* Swiper overrides */
        .rv-section .swiper {
            padding-bottom: 2.5rem !important
        }

        .rv-section .swiper-pagination-bullet {
            background: #c8e8df;
            opacity: 1
        }

        .rv-section .swiper-pagination-bullet-active {
            background: #0F6E56
        }

        .rv-section .swiper-slide {
            height: auto
        }

        /* Responsive */
        @media(max-width:768px) {
            .rv-section {
                padding: 56px 0
            }

            .rv-card {
                padding: 1.35rem
            }
        }

        @media(max-width:480px) {
            .rv-section {
                padding: 44px 0
            }

            .rv-card {
                padding: 1.1rem;
                border-radius: 16px
            }

            .rv-text {
                font-size: 13.5px
            }
        }

        /* ── Swiper height fix ── */
        .testimonialSwiper,
        .rv-section .swiper-wrapper,
        .rv-section .swiper-slide {
            height: auto !important;
        }

        .rv-section .swiper-slide {
            display: flex;
            flex-direction: column;
        }

