.g-reviews-section {
    padding: clamp(4rem, 7vw, 5.4rem) 0;
    background: transparent;
    overflow: hidden;
}

.g-reviews-shell {
    padding: 0;
}

.g-reviews-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.65rem;
}

.g-reviews-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.g-icon-circle {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.g-icon-svg {
    width: 1.8rem;
    height: 1.8rem;
}

.g-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}

.g-brand-label {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #168a40;
}

.g-brand-score {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.g-brand-score-main {
    color: #0f172a;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.g-brand-score-sub,
.g-brand-caption {
    color: #64748b;
    font-size: 0.92rem;
}

.g-brand-caption {
    margin: 0.12rem 0 0;
}

.g-reviews-cta {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    padding: 0.82rem 1.12rem;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.18s ease, background-color 0.18s ease, gap 0.18s ease;
}

.g-reviews-cta:hover {
    gap: 0.7rem;
    background: #168a40;
    text-decoration: none;
    transform: translateY(-1px);
}

.g-reviews-slider {
    position: relative;
    overflow: visible;
    padding: 0;
}

.g-reviews-swiper {
    padding: 0.15rem 0 2.9rem !important;
}

.g-reviews-swiper .swiper-pagination {
    position: static !important;
    margin-top: 1.15rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.g-reviews-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 !important;
    background: rgba(15, 23, 42, 0.18);
    opacity: 1;
    transition: transform 0.22s ease, background-color 0.22s ease;
}

.g-reviews-swiper .swiper-pagination-bullet-active {
    background: #168a40;
    transform: scale(1.08);
}

.g-reviews-fallback {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.g-review-slide {
    height: auto !important;
    display: flex !important;
}

.g-review-item {
    flex-direction: column;
    width: 100%;
    height: 100%;
    display: flex;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}

.g-review-stars {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 0.8rem;
}

.g-review-stars .bi-star-fill {
    color: #f59e0b;
}

.g-review-text {
    margin: 0;
    color: #0f172a;
    font-size: 0.95rem;
    line-height: 1.72;
    flex: 1;
}

.g-review-author {
    margin-top: 1rem;
    padding-top: 0.95rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.g-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.g-review-name {
    margin: 0;
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 700;
}

.g-review-meta {
    margin: 0.1rem 0 0;
    color: #64748b;
    font-size: 0.82rem;
}

@media (max-width: 991.98px) {
    .g-reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .g-reviews-cta {
        margin-left: 0;
    }

    .g-reviews-fallback {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .g-reviews-section {
        padding: 3.5rem 0;
    }

    .g-reviews-cta {
        width: 100%;
        justify-content: center;
    }

    .g-reviews-fallback {
        grid-template-columns: 1fr;
    }
}