.reviews-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    border-top: 1px solid var(--site-border);
    border-bottom: 1px solid var(--site-border);
    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(245, 166, 35, 0.1),
            transparent 28%
        ),
        var(--site-surface);
}

.reviews-section::before {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        );
    background-size: 50px 50px;
    content: "";
}

.reviews-section > .site-container {
    position: relative;
    z-index: 2;
}

.reviews-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 40px;
}

.reviews-section-heading > div:first-child {
    max-width: 700px;
}

.reviews-section-heading h2 {
    margin: 18px 0 12px;
    font-size: clamp(32px, 4.5vw, 50px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.reviews-section-heading p {
    max-width: 610px;
    margin: 0;
    color: var(--site-muted);
    font-size: 13px;
}

.reviews-summary {
    display: flex;
    min-width: 230px;
    align-items: center;
    gap: 16px;
    padding: 17px 20px;
    border: 1px solid var(--site-border);
    border-radius: 11px;
    background: rgba(20, 23, 31, 0.85);
}

.reviews-summary > strong {
    color: #f6f7f8;
    font-size: 35px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.reviews-summary > div {
    display: grid;
    gap: 4px;
}

.reviews-summary-stars {
    color: var(--brand);
    font-size: 13px;
    letter-spacing: 0.08em;
}

.reviews-summary small {
    color: var(--site-muted-dark);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.review-card {
    display: flex;
    min-height: 290px;
    flex-direction: column;
    padding: 23px;
    border: 1px solid var(--site-border);
    border-radius: 12px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.018),
            transparent 60%
        ),
        var(--site-card);
    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.review-card:hover {
    border-color: rgba(245, 166, 35, 0.42);
    transform: translateY(-4px);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 11px;
}

.review-avatar {
    display: grid;
    width: 41px;
    height: 41px;
    flex: 0 0 41px;
    place-items: center;
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 50%;
    color: var(--brand);
    background: rgba(245, 166, 35, 0.08);
    font-size: 13px;
    font-weight: 900;
}

.review-customer {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.review-customer strong {
    color: #e5e7eb;
    font-size: 12px;
}

.review-customer span {
    color: var(--site-muted-dark);
    font-size: 9px;
}

.review-quote {
    margin-left: auto;
    color: rgba(245, 166, 35, 0.22);
    font-family: Georgia, serif;
    font-size: 48px;
    line-height: 0.7;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-top: 21px;
}

.review-stars span {
    color: #343944;
    font-size: 12px;
}

.review-stars span.is-active {
    color: var(--brand);
}

.review-card blockquote {
    margin: 17px 0 24px;
    color: #b5bbc5;
    font-size: 12px;
    line-height: 1.75;
}

.review-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--site-border);
}

.review-card-footer > span:first-child {
    color: #d1d5dc;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #56c98d;
    font-size: 8px;
    font-weight: 750;
}

.review-verified > span {
    display: grid;
    width: 14px;
    height: 14px;
    place-items: center;
    border-radius: 50%;
    background: rgba(86, 201, 141, 0.12);
}

.reviews-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 35px;
}

@media (max-width: 980px) {
    .reviews-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .reviews-summary {
        min-width: 0;
    }

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

@media (max-width: 680px) {
    .reviews-section {
        padding: 65px 0;
    }

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

    .review-card {
        min-height: 260px;
    }

    .reviews-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .reviews-actions .button {
        width: 100%;
    }
}