/* =========================================
   REVIEWS SECTION
========================================= */

.velo-reviews {
    position: relative;
    overflow: hidden;
    color: #f4f4ef;
    padding: clamp(76px, 8vw, 110px) 24px;

    background:
        linear-gradient(
            180deg,
            rgba(7, 10, 14, 0) 100%,
            rgba(7, 10, 14, 0) 100%,
            rgba(7, 10, 14, 0) 100%
        ),
        url("https://orlandoprodetail.net/wp-content/uploads/2026/07/ChatGPT-Image-Jul-3-2026-03_43_19-AM.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.velo-reviews::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.06), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(214, 141, 24, 0.13), transparent 34%),
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.28) 0%,
            rgba(0, 0, 0, 0.06) 50%,
            rgba(0, 0, 0, 0.38) 100%
        );
}

.velo-reviews::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.16) 0%,
            transparent 38%,
            rgba(0, 0, 0, 0.22) 100%
        );
}

.velo-reviews__shell {
    position: relative;
    z-index: 2;
    width: min(100%, 1100px);
    margin: 0 auto;
}

.velo-reviews__top {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
    gap: clamp(36px, 5vw, 72px);
    align-items: end;
    margin-bottom: clamp(46px, 6vw, 70px);
}

.velo-reviews__kicker {
    margin: 0 0 22px;
    color: rgba(244, 244, 239, 0.68);
    font-family: "Jura", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.velo-reviews__intro h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.5rem, 4.8vw, 4.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.045em;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

/* SCORE */
.velo-reviews__score {
    margin-top: 20px;
}

.velo-reviews__score strong {
    display: block;
    color: #fff;
    font-size: clamp(4.25rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.08em;
    text-shadow: 0 16px 38px rgba(0, 0, 0, 0.38);
}

.velo-reviews__stars,
.velo-review-card__stars {
    color: #d48a15;
    letter-spacing: 0.08em;
}

.velo-reviews__stars {
    margin-top: 8px;
    font-size: 1.65rem;
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 138, 21, 0.22);
}

.velo-reviews__score p {
    margin: 12px 0 0;
    color: rgba(244, 244, 239, 0.7);
    font-size: 1.08rem;
    font-weight: 700;
}

/* RATING BARS */
.velo-reviews__bars {
    display: grid;
    gap: 13px;
    padding-bottom: 14px;
}

.velo-reviews__bar-row {
    display: grid;
    grid-template-columns: 42px 1fr 34px;
    gap: 12px;
    align-items: center;
}

.velo-reviews__bar-label,
.velo-reviews__bar-count {
    color: rgba(244, 244, 239, 0.78);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1;
}

.velo-reviews__bar-count {
    text-align: right;
}

.velo-reviews__bar-track {
    position: relative;
    height: 6px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
}

.velo-reviews__bar-track span {
    position: absolute;
    inset: 0 auto 0 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #d48a15, #b8730f);
    box-shadow: 0 0 18px rgba(212, 138, 21, 0.25);
}

/* CARDS */
.velo-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.velo-review-card {
    position: relative;
    min-height: 450px;
    padding: clamp(26px, 3vw, 34px);
    border-radius: 14px;
    background: rgba(22, 22, 20, 0.74);
    border: 1px solid rgba(244, 244, 239, 0.16);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.32),
        inset 0 0 0 1px rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.velo-review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 138, 21, 0.46);
    background: rgba(30, 30, 27, 0.82);
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.38),
        0 0 34px rgba(212, 138, 21, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.045);
}

.velo-review-card__stars {
    margin-bottom: 24px;
    font-size: 1.45rem;
    line-height: 1;
    text-shadow: 0 0 18px rgba(212, 138, 21, 0.2);
}

.velo-review-card__text {
    margin: 0;
    color: rgba(244, 244, 239, 0.78);
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
    font-weight: 700;
    line-height: 1.65;
}

.velo-review-card__author {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(244, 244, 239, 0.14);
    display: flex;
    align-items: center;
    gap: 14px;
}

.velo-review-card__avatar {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(244, 244, 239, 0.78);
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(244, 244, 239, 0.14);
    font-size: 0.92rem;
    font-weight: 800;
}

.velo-review-card__author h3 {
    margin: 0;
    color: #fff;
    font-size: 1.12rem;
    font-weight: 800;
    line-height: 1.2;
}

.velo-review-card__author p {
    margin: 3px 0 0;
    color: rgba(244, 244, 239, 0.62);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.velo-review-card__author p span {
    color: rgba(244, 244, 239, 0.62);
    margin-right: 4px;
}

/* GOOGLE REVIEWS BADGE */
.velo-reviews__google-badge {
    margin: clamp(36px, 5vw, 58px) auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.velo-reviews__google-badge img {
    display: block;
    width: min(100%, 360px);
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 16px 34px rgba(0, 0, 0, 0.36))
        drop-shadow(0 0 22px rgba(212, 138, 21, 0.16));
}

/* TABLET */
@media (max-width: 1000px) {
    .velo-reviews__top {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .velo-reviews__bars {
        max-width: 680px;
    }

    .velo-reviews__grid {
        grid-template-columns: 1fr;
    }

    .velo-review-card {
        min-height: auto;
    }
}

/* MOBILE */
@media (max-width: 620px) {
    .velo-reviews {
        padding: 64px 20px;
        background-position: center;
    }

    .velo-reviews__intro h2 {
        font-size: 2.35rem;
    }

    .velo-reviews__score strong {
        font-size: 4.4rem;
    }

    .velo-reviews__bar-row {
        grid-template-columns: 36px 1fr 28px;
        gap: 9px;
    }

    .velo-review-card {
        padding: 26px 22px;
    }

    .velo-review-card__text {
        font-size: 1.02rem;
    }

    .velo-reviews__google-badge img {
        width: min(100%, 290px);
    }
}