/* ============================================================================
   City's Towing & Lockout — Reviews Page Styles
   File location:  /assets/css/reviews.css
   Loaded by:      reviews.php  (single <link> tag)
   Scoped under    .ct-reviews-page — zero global pollution.
   All classes     rv- prefixed.
   ============================================================================ */

.ct-reviews-page,
.ct-reviews-page * { box-sizing: border-box; }

.ct-reviews-page {
    --rv-red:        #D32F2F;
    --rv-red-hot:    #E84141;
    --rv-red-deep:   #A81F1F;
    --rv-red-glow:   rgba(211,47,47,.35);
    --rv-black:      #000000;
    --rv-ink:        #0B0B0B;
    --rv-ink-2:      #141414;
    --rv-white:      #FFFFFF;
    --rv-gray:       #B0B0B0;
    --rv-gray-dim:   #6F6F6F;
    --rv-line:       rgba(255,255,255,.08);
    --rv-cream:      #F5F2EE;
    --rv-bone:       #FAFAF8;
    --rv-gold:       #FFC745;
    --rv-blue-g:     #4285F4;
    --rv-green-g:    #34A853;
    --rv-shadow-lg:  0 30px 70px -28px rgba(0,0,0,.55);
    --rv-shadow-md:  0 18px 40px -18px rgba(0,0,0,.40);
    --rv-font:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

    font-family: var(--rv-font);
    color: #1a1a1a;
    background: var(--rv-bone);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---- Animations ---- */
@keyframes rvPulse {
    0%   { box-shadow: 0 0 0 0 rgba(211,47,47,.65); }
    70%  { box-shadow: 0 0 0 12px rgba(211,47,47,0); }
    100% { box-shadow: 0 0 0 0 rgba(211,47,47,0); }
}
@keyframes rvFadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes rvCountUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Shared layout ---- */
.ct-reviews-page .rv-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}
.ct-reviews-page .rv-section { padding: 96px 24px; position: relative; }
.ct-reviews-page .rv-section--dark  { background: var(--rv-black); color: #fff; }
.ct-reviews-page .rv-section--ink   { background: var(--rv-ink);   color: #fff; }
.ct-reviews-page .rv-section--cream { background: var(--rv-cream); }

.ct-reviews-page .rv-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    text-transform: uppercase; letter-spacing: .22em;
    font-size: 11.5px; font-weight: 700; color: var(--rv-red);
    margin-bottom: 16px;
}
.ct-reviews-page .rv-eyebrow::before {
    content: ""; width: 24px; height: 2px; background: var(--rv-red);
}
.ct-reviews-page .rv-h2 {
    margin: 0 0 16px;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800; letter-spacing: -.018em; line-height: 1.08; text-wrap: balance;
}
.ct-reviews-page .rv-h2 em { font-style: normal; color: var(--rv-red); }
.ct-reviews-page .rv-lead {
    margin: 0 0 48px; font-size: 17px; line-height: 1.6;
    color: rgba(0,0,0,.65); max-width: 64ch; text-wrap: pretty;
}
.ct-reviews-page .rv-section--ink  .rv-lead,
.ct-reviews-page .rv-section--dark .rv-lead { color: var(--rv-gray); }
.ct-reviews-page .rv-section-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 32px; margin-bottom: 56px; flex-wrap: wrap;
}
.ct-reviews-page .rv-section-head > div { max-width: 64ch; }
.ct-reviews-page .rv-section-head .rv-lead { margin-bottom: 0; }

/* Pulse dot */
.ct-reviews-page .rv-pulse-dot {
    display: inline-block; width: 8px; height: 8px; border-radius: 50%;
    background: var(--rv-red); animation: rvPulse 1.8s ease-out infinite; flex: 0 0 auto;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.ct-reviews-page .rv-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px; border-radius: 12px;
    font-size: 15px; font-weight: 700; text-decoration: none;
    border: 1px solid transparent; cursor: pointer;
    font-family: inherit; line-height: 1.2; white-space: nowrap;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ct-reviews-page .rv-btn svg { width: 16px; height: 16px; flex: 0 0 auto; }
.ct-reviews-page .rv-btn--lg { padding: 18px 28px; font-size: 16px; }
.ct-reviews-page .rv-btn--lg svg { width: 18px; height: 18px; }

/* Read all reviews — dark glass style */
.ct-reviews-page .rv-btn--read {
    background: rgba(255,255,255,.07);
    color: #fff;
    border-color: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
}
.ct-reviews-page .rv-btn--read:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.35);
    transform: translateY(-2px);
}

/* Leave a review — solid red primary */
.ct-reviews-page .rv-btn--leave {
    background: var(--rv-red);
    color: #fff;
    box-shadow: 0 14px 28px -12px rgba(211,47,47,.7), inset 0 1px 0 rgba(255,255,255,.18);
    position: relative; overflow: hidden;
}
.ct-reviews-page .rv-btn--leave::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0) 45%);
    pointer-events: none;
}
.ct-reviews-page .rv-btn--leave:hover {
    background: var(--rv-red-hot); transform: translateY(-2px);
    box-shadow: 0 20px 36px -12px rgba(232,65,65,.85), inset 0 1px 0 rgba(255,255,255,.22);
}
.ct-reviews-page .rv-btn--leave svg { color: var(--rv-gold); }

/* Call button */
.ct-reviews-page .rv-btn--call {
    background: rgba(255,255,255,.04);
    color: #fff; border-color: rgba(255,255,255,.14);
}
.ct-reviews-page .rv-btn--call:hover {
    background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.28);
    transform: translateY(-2px);
}

/* Ghost — light bg contexts */
.ct-reviews-page .rv-btn--ghost {
    background: #fff; color: #111;
    border-color: rgba(0,0,0,.1);
    box-shadow: 0 8px 20px -10px rgba(0,0,0,.2);
}
.ct-reviews-page .rv-btn--ghost:hover {
    border-color: rgba(0,0,0,.2); transform: translateY(-2px);
}

/* Google G logo badge */
.ct-reviews-page .rv-google-g {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; border-radius: 50%;
    background: #fff; color: var(--rv-blue-g);
    font-size: 13px; font-weight: 900; font-style: normal;
    font-family: 'Google Sans', var(--rv-font);
    flex: 0 0 auto; line-height: 1;
}

/* ============================================================================
   HERO
   ============================================================================ */
.ct-reviews-page .rv-hero {
    position: relative; background: #000; color: #fff;
    overflow: hidden; padding: 100px 24px 96px;
}
.ct-reviews-page .rv-hero::before,
.ct-reviews-page .rv-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.ct-reviews-page .rv-hero::before {
    background:
        radial-gradient(65% 75% at 90% 10%, rgba(211,47,47,.28) 0%, rgba(211,47,47,0) 55%),
        radial-gradient(45% 55% at  5% 95%, rgba(211,47,47,.15) 0%, rgba(211,47,47,0) 60%),
        linear-gradient(180deg, #0B0B0B 0%, #000 100%);
    z-index: 0;
}
.ct-reviews-page .rv-hero::after {
    background-image:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 65% at 50% 45%, #000 25%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 45%, #000 25%, transparent 80%);
    z-index: 0;
}
.ct-reviews-page .rv-hero-inner {
    position: relative; z-index: 2;
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 60px; align-items: center;
}
.ct-reviews-page .rv-hero-pre {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 8px 14px 8px 10px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px; font-size: 12px; letter-spacing: .14em;
    text-transform: uppercase; color: #fff; font-weight: 600; margin-bottom: 20px;
}
.ct-reviews-page .rv-hero-content h1 {
    margin: 0 0 20px;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 800; letter-spacing: -.025em; line-height: 1.03; text-wrap: balance;
}
.ct-reviews-page .rv-hero-content h1 em {
    font-style: normal;
    background: linear-gradient(180deg, #fff 0%, #fff 45%, var(--rv-red) 46%, var(--rv-red-hot) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    display: inline-block;
}
.ct-reviews-page .rv-hero-sub {
    margin: 0 0 24px; font-size: 17px; color: var(--rv-gray);
    max-width: 54ch; line-height: 1.58; text-wrap: pretty;
}
.ct-reviews-page .rv-hero-stars {
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 32px; flex-wrap: wrap;
}
.ct-reviews-page .rv-hero-stars svg { width: 20px; height: 20px; color: var(--rv-gold); }
.ct-reviews-page .rv-hero-rating {
    font-size: 20px; font-weight: 800; color: #fff; margin-left: 4px;
}
.ct-reviews-page .rv-hero-rating em { font-style: normal; color: var(--rv-gray); font-size: 15px; font-weight: 500; }
.ct-reviews-page .rv-hero-count { color: var(--rv-gray); font-size: 14px; font-weight: 500; }
.ct-reviews-page .rv-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.ct-reviews-page .rv-hero-cta .rv-btn { padding: 16px 24px; }
.ct-reviews-page .rv-hero-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.ct-reviews-page .rv-trust-pill {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px; background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10); border-radius: 999px;
    color: var(--rv-gray); font-size: 12px; font-weight: 600; letter-spacing: .06em;
}
.ct-reviews-page .rv-trust-pill svg { width: 13px; height: 13px; color: var(--rv-red); }

/* Hero Google card */
.ct-reviews-page .rv-hero-card-wrap { position: relative; }
.ct-reviews-page .rv-google-card {
    background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px; padding: 28px; box-shadow: var(--rv-shadow-lg);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.ct-reviews-page .rv-google-card-header {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px;
}
.ct-reviews-page .rv-google-logo {
    display: flex; align-items: center; gap: 10px;
    color: #fff; font-size: 14px; font-weight: 700;
}
.ct-reviews-page .rv-google-verified {
    padding: 4px 12px; background: rgba(52,168,83,.18);
    border: 1px solid rgba(52,168,83,.4);
    color: #34A853; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.ct-reviews-page .rv-google-rating-big {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 0; border-top: 1px solid var(--rv-line); border-bottom: 1px solid var(--rv-line);
    margin-bottom: 20px;
}
.ct-reviews-page .rv-rating-num {
    font-size: 56px; font-weight: 800; letter-spacing: -.04em; color: #fff; line-height: 1;
}
.ct-reviews-page .rv-rating-right { display: flex; flex-direction: column; gap: 4px; }
.ct-reviews-page .rv-rating-stars { display: flex; gap: 2px; }
.ct-reviews-page .rv-rating-stars svg { width: 18px; height: 18px; color: var(--rv-gold); }
.ct-reviews-page .rv-rating-sub { color: var(--rv-gray); font-size: 12.5px; font-weight: 500; }
.ct-reviews-page .rv-google-bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.ct-reviews-page .rv-bar-row {
    display: flex; align-items: center; gap: 8px;
    font-size: 11.5px; color: var(--rv-gray); font-weight: 600;
}
.ct-reviews-page .rv-bar-row svg { width: 12px; height: 12px; color: var(--rv-gold); flex: 0 0 auto; }
.ct-reviews-page .rv-bar {
    flex: 1; height: 6px; background: rgba(255,255,255,.08); border-radius: 999px; overflow: hidden;
}
.ct-reviews-page .rv-bar-fill {
    height: 100%; background: var(--rv-gold); border-radius: 999px;
    transition: width 1.2s ease;
}
.ct-reviews-page .rv-google-card-quote {
    padding: 16px 0; border-top: 1px solid var(--rv-line); margin-bottom: 16px;
}
.ct-reviews-page .rv-google-card-quote p {
    margin: 0 0 6px; font-size: 14.5px; font-style: italic; color: rgba(255,255,255,.82); line-height: 1.5;
}
.ct-reviews-page .rv-google-card-quote span { color: var(--rv-gray); font-size: 12px; font-weight: 600; }
.ct-reviews-page .rv-google-card-link {
    display: flex; align-items: center; gap: 8px;
    color: var(--rv-blue-g); font-size: 13.5px; font-weight: 700;
    text-decoration: none; transition: color .18s ease;
}
.ct-reviews-page .rv-google-card-link:hover { color: #fff; }
.ct-reviews-page .rv-google-card-link svg { width: 14px; height: 14px; }

/* ============================================================================
   STATS BAR
   ============================================================================ */
.ct-reviews-page .rv-stats-bar {
    background: var(--rv-red); color: #fff; padding: 0 24px;
    border-bottom: 1px solid rgba(0,0,0,.18);
}
.ct-reviews-page .rv-stats-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
}
.ct-reviews-page .rv-stat {
    padding: 28px 24px;
    border-right: 1px solid rgba(255,255,255,.18);
    display: flex; flex-direction: column; gap: 2px;
}
.ct-reviews-page .rv-stat:last-child { border-right: 0; }
.ct-reviews-page .rv-stat strong {
    font-size: clamp(28px, 3vw, 38px); font-weight: 800;
    letter-spacing: -.02em; line-height: 1; display: block;
}
.ct-reviews-page .rv-stat span { font-size: 14px; font-weight: 700; opacity: .95; }
.ct-reviews-page .rv-stat small {
    font-size: 11px; opacity: .72; letter-spacing: .06em;
    text-transform: uppercase; font-weight: 500; margin-top: 2px;
}

/* ============================================================================
   FEATURED REVIEW CARDS
   ============================================================================ */
.ct-reviews-page .rv-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.ct-reviews-page .rv-review-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 18px; padding: 28px;
    display: flex; flex-direction: column; gap: 14px;
    box-shadow: 0 8px 28px -12px rgba(0,0,0,.12);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ct-reviews-page .rv-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px -18px rgba(0,0,0,.2);
    border-color: rgba(211,47,47,.25);
}
.ct-reviews-page .rv-card-quote-mark {
    position: absolute; top: 16px; right: 20px;
    font-size: 72px; line-height: 1;
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700; color: rgba(211,47,47,.1);
    pointer-events: none; user-select: none;
}
.ct-reviews-page .rv-card-stars { display: flex; gap: 2px; }
.ct-reviews-page .rv-card-stars svg { width: 16px; height: 16px; color: var(--rv-gold); }
.ct-reviews-page .rv-card-text {
    margin: 0; font-size: 15.5px; font-weight: 500;
    line-height: 1.6; color: #1a1a1a; flex: 1; text-wrap: pretty;
}
.ct-reviews-page .rv-card-footer {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; flex-wrap: wrap; padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,.06); margin-top: auto;
}
.ct-reviews-page .rv-card-meta { display: flex; align-items: center; gap: 10px; }
.ct-reviews-page .rv-card-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--rv-red); color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 14px; letter-spacing: .02em; flex: 0 0 auto;
}
.ct-reviews-page .rv-card-name { display: flex; flex-direction: column; line-height: 1.25; }
.ct-reviews-page .rv-card-name strong { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.ct-reviews-page .rv-card-name span { font-size: 11px; color: rgba(0,0,0,.45); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.ct-reviews-page .rv-card-tag {
    padding: 5px 12px; border-radius: 999px;
    font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    white-space: nowrap;
}
.ct-reviews-page .rv-tag--towing, .ct-reviews-page .rv-tag--roadside {
    background: rgba(211,47,47,.08); color: var(--rv-red);
    border: 1px solid rgba(211,47,47,.2);
}
.ct-reviews-page .rv-tag--locksmith {
    background: rgba(66,133,244,.08); color: #4285F4;
    border: 1px solid rgba(66,133,244,.2);
}

/* ============================================================================
   GOOGLE CTA STRIP
   ============================================================================ */
.ct-reviews-page .rv-google-strip {
    background: linear-gradient(90deg, var(--rv-ink) 0%, var(--rv-ink-2) 100%);
    border-top: 1px solid var(--rv-line); border-bottom: 1px solid var(--rv-line);
    padding: 28px 24px; color: #fff;
}
.ct-reviews-page .rv-google-strip-inner {
    max-width: 1320px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.ct-reviews-page .rv-google-strip-text {
    display: flex; align-items: center; gap: 14px; flex: 1;
}
.ct-reviews-page .rv-google-strip-text p {
    margin: 0; font-size: 16px; color: var(--rv-gray); line-height: 1.4;
}
.ct-reviews-page .rv-google-strip-text strong { color: #fff; }
.ct-reviews-page .rv-google-strip-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================================
   SLIDER
   ============================================================================ */
.ct-reviews-page .rv-slider {
    position: relative; overflow: hidden; border-radius: 20px;
}
.ct-reviews-page .rv-slider-track {
    display: flex; transition: transform .6s cubic-bezier(.2,.8,.2,1); will-change: transform;
}
.ct-reviews-page .rv-slide { flex: 0 0 100%; padding: 6px; box-sizing: border-box; }
.ct-reviews-page .rv-slide-inner {
    background: #fff; border: 1px solid rgba(0,0,0,.05);
    border-radius: 16px; padding: 48px 56px;
    box-shadow: 0 24px 56px -24px rgba(0,0,0,.14);
    display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
    min-height: 200px;
}
.ct-reviews-page .rv-slide-quote {
    color: var(--rv-red); font-size: 84px; line-height: 1;
    font-family: Georgia, 'Times New Roman', serif; font-weight: 700;
    align-self: flex-start;
}
.ct-reviews-page .rv-slide-body { display: flex; flex-direction: column; gap: 14px; }
.ct-reviews-page .rv-slide-stars { display: flex; gap: 2px; }
.ct-reviews-page .rv-slide-stars svg { width: 17px; height: 17px; color: var(--rv-gold); }
.ct-reviews-page .rv-slide-text {
    margin: 0; font-size: clamp(17px, 2.2vw, 22px);
    font-weight: 600; letter-spacing: -.01em; line-height: 1.4; color: #1a1a1a; text-wrap: pretty;
}
.ct-reviews-page .rv-slide-meta { display: flex; align-items: center; gap: 12px; }

.ct-reviews-page .rv-slider-controls {
    margin-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.ct-reviews-page .rv-slider-dots { display: flex; gap: 8px; }
.ct-reviews-page .rv-slider-dots button {
    width: 9px; height: 9px; border-radius: 50%; border: 0;
    background: rgba(0,0,0,.18); cursor: pointer; padding: 0;
    transition: background .2s ease, width .25s ease;
}
.ct-reviews-page .rv-slider-dots button.is-active {
    background: var(--rv-red); width: 28px; border-radius: 999px;
}
.ct-reviews-page .rv-slider-arrows { display: flex; gap: 10px; }
.ct-reviews-page .rv-slider-arrows button {
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff; border: 1px solid rgba(0,0,0,.08);
    cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.ct-reviews-page .rv-slider-arrows button:hover {
    background: var(--rv-red); color: #fff; border-color: var(--rv-red); transform: translateY(-2px);
}
.ct-reviews-page .rv-slider-arrows svg { width: 18px; height: 18px; }

/* ============================================================================
   SERVICE REVIEW SPLIT
   ============================================================================ */
.ct-reviews-page .rv-split-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.ct-reviews-page .rv-split-col {
    background: var(--rv-ink-2); border: 1px solid var(--rv-line);
    border-radius: 18px; overflow: hidden;
}
.ct-reviews-page .rv-split-col-header {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 24px 24px 20px; border-bottom: 1px solid var(--rv-line);
}
.ct-reviews-page .rv-split-col-header svg {
    width: 22px; height: 22px; color: var(--rv-red); flex: 0 0 auto; margin-top: 2px;
}
.ct-reviews-page .rv-split-col-header h3 {
    margin: 0 0 4px; font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -.01em;
}
.ct-reviews-page .rv-split-col-header span { font-size: 12px; color: var(--rv-gray); line-height: 1.4; }
.ct-reviews-page .rv-mini-card {
    padding: 18px 24px; border-bottom: 1px solid var(--rv-line);
    display: flex; flex-direction: column; gap: 8px;
    transition: background .18s ease;
}
.ct-reviews-page .rv-mini-card:last-child { border-bottom: 0; }
.ct-reviews-page .rv-mini-card:hover { background: rgba(255,255,255,.03); }
.ct-reviews-page .rv-mini-stars { display: flex; gap: 2px; }
.ct-reviews-page .rv-mini-stars svg { width: 13px; height: 13px; color: var(--rv-gold); }
.ct-reviews-page .rv-mini-card > p {
    margin: 0; font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.55; text-wrap: pretty;
}
.ct-reviews-page .rv-mini-meta {
    display: flex; align-items: center; gap: 8px; margin-top: 2px;
}
.ct-reviews-page .rv-mini-meta strong { font-size: 12.5px; color: var(--rv-gray); font-weight: 700; }
.ct-reviews-page .rv-avatar--sm {
    width: 28px; height: 28px; font-size: 10.5px; font-weight: 800;
}

/* ============================================================================
   IMAGE SHOWCASE
   ============================================================================ */
.ct-reviews-page .rv-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
}
.ct-reviews-page .rv-showcase-tile {
    position: relative; border-radius: 12px; overflow: hidden;
    background: #1a1a1a;
    box-shadow: 0 8px 24px -10px rgba(0,0,0,.25);
    transition: transform .28s ease, box-shadow .28s ease;
}
.ct-reviews-page .rv-showcase-tile:hover {
    transform: scale(1.025); box-shadow: 0 18px 40px -14px rgba(0,0,0,.35);
}
.ct-reviews-page .rv-showcase-tile img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .45s ease;
}
.ct-reviews-page .rv-showcase-tile:hover img { transform: scale(1.06); }
.ct-reviews-page .rv-tile-label {
    position: absolute; inset: auto 0 0 0;
    padding: 16px 14px 12px;
    background: linear-gradient(0deg, rgba(0,0,0,.75) 0%, transparent 100%);
    color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.ct-reviews-page .rv-tile-lg { grid-column: span 2; grid-row: span 2; }

/* ============================================================================
   SEO CONTENT
   ============================================================================ */
.ct-reviews-page .rv-seo-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 52px;
}
.ct-reviews-page .rv-seo h3 {
    margin: 0 0 14px; font-size: 20px; font-weight: 700; letter-spacing: -.01em;
}
.ct-reviews-page .rv-seo p {
    color: rgba(0,0,0,.65); font-size: 15px; line-height: 1.7;
    margin: 0 0 14px; max-width: 64ch; text-wrap: pretty;
}

/* ============================================================================
   FAQ
   ============================================================================ */
.ct-reviews-page .rv-faq { max-width: 880px; margin: 0 auto; }
.ct-reviews-page .rv-faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.ct-reviews-page .rv-faq-item:first-child { border-top: 1px solid rgba(0,0,0,.08); }
.ct-reviews-page .rv-faq-q {
    width: 100%; background: none; border: 0; padding: 24px 8px;
    text-align: left; font-family: inherit; font-size: 17px;
    font-weight: 600; letter-spacing: -.01em; color: inherit;
    cursor: pointer; display: flex; align-items: center;
    justify-content: space-between; gap: 24px; line-height: 1.4;
}
.ct-reviews-page .rv-faq-toggle {
    flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%;
    background: rgba(211,47,47,.1); color: var(--rv-red);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s ease;
}
.ct-reviews-page .rv-faq-toggle svg { width: 14px; height: 14px; transition: transform .25s ease; }
.ct-reviews-page .rv-faq-item.is-open .rv-faq-toggle svg { transform: rotate(45deg); }
.ct-reviews-page .rv-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.ct-reviews-page .rv-faq-item.is-open .rv-faq-a { max-height: 320px; }
.ct-reviews-page .rv-faq-a-inner {
    padding: 0 8px 24px; color: rgba(0,0,0,.65); font-size: 15px; line-height: 1.65; max-width: 68ch;
}

/* ============================================================================
   FINAL CTA
   ============================================================================ */
.ct-reviews-page .rv-final {
    position: relative; overflow: hidden; padding: 112px 24px; color: #fff; text-align: center;
    background:
        radial-gradient(65% 70% at 50%   0%, rgba(211,47,47,.25) 0%, rgba(211,47,47,0) 55%),
        radial-gradient(40% 50% at 0%  100%, rgba(211,47,47,.15) 0%, rgba(211,47,47,0) 60%),
        linear-gradient(180deg, #0B0B0B 0%, #000 100%);
}
.ct-reviews-page .rv-final::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 65% at 50% 50%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 50%, #000 30%, transparent 80%);
}
.ct-reviews-page .rv-final-inner {
    position: relative; z-index: 2; max-width: 760px; margin: 0 auto;
}
.ct-reviews-page .rv-final .rv-eyebrow { justify-content: center; margin-bottom: 16px; }
.ct-reviews-page .rv-final h2 {
    margin: 0 0 16px; font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800; letter-spacing: -.022em; line-height: 1.06; text-wrap: balance;
}
.ct-reviews-page .rv-final h2 em {
    font-style: normal;
    background: linear-gradient(180deg, var(--rv-red) 0%, var(--rv-red-hot) 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ct-reviews-page .rv-final > .rv-final-inner > p {
    margin: 0 auto 40px; color: var(--rv-gray); font-size: 17px;
    line-height: 1.6; max-width: 54ch;
}
.ct-reviews-page .rv-final-btns {
    display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 22px;
}
.ct-reviews-page .rv-final-sub {
    color: var(--rv-gray-dim); font-size: 13px; letter-spacing: .06em;
    text-transform: uppercase; font-weight: 500; margin: 0;
}

/* ============================================================================
   STICKY MOBILE BAR
   ============================================================================ */
.ct-reviews-page .rv-sticky-bar {
    display: none;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
    padding: 12px 16px;
    background: rgba(10,10,10,.92);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--rv-line);
    gap: 10px;
}
.ct-reviews-page .rv-sticky-bar.is-visible { display: flex; }
.ct-reviews-page .rv-sticky-bar .rv-btn {
    flex: 1; justify-content: center; padding: 14px 16px; font-size: 14.5px;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1100px) {
    .ct-reviews-page .rv-featured-grid { grid-template-columns: repeat(2, 1fr); }
    .ct-reviews-page .rv-showcase-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .ct-reviews-page .rv-tile-lg { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 980px) {
    .ct-reviews-page .rv-hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .ct-reviews-page .rv-hero { padding: 72px 20px 80px; }
    .ct-reviews-page .rv-split-grid { grid-template-columns: 1fr; gap: 20px; }
    .ct-reviews-page .rv-seo-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 760px) {
    .ct-reviews-page .rv-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .ct-reviews-page .rv-stat { border-bottom: 1px solid rgba(255,255,255,.14); }
    .ct-reviews-page .rv-stat:nth-child(2) { border-right: 0; }
    .ct-reviews-page .rv-stat:nth-child(3) { border-bottom: 0; }
    .ct-reviews-page .rv-stat:nth-child(4) { border-right: 0; border-bottom: 0; }
    .ct-reviews-page .rv-featured-grid { grid-template-columns: 1fr; }
    .ct-reviews-page .rv-slide-inner { grid-template-columns: 1fr; padding: 30px 22px; gap: 16px; }
    .ct-reviews-page .rv-slide-quote { font-size: 56px; }
    .ct-reviews-page .rv-showcase-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .ct-reviews-page .rv-tile-lg { grid-column: span 1; }
    .ct-reviews-page .rv-google-strip-inner { flex-direction: column; align-items: flex-start; }
    .ct-reviews-page .rv-section { padding: 64px 20px; }
    .ct-reviews-page .rv-final-btns { flex-direction: column; }
    .ct-reviews-page .rv-final-btns .rv-btn { justify-content: center; }
    .ct-reviews-page .rv-sticky-bar.is-visible { display: flex; }
    .ct-reviews-page { padding-bottom: 80px; }
}
@media (max-width: 480px) {
    .ct-reviews-page .rv-hero-cta { flex-direction: column; }
    .ct-reviews-page .rv-hero-cta .rv-btn { justify-content: center; }
    .ct-reviews-page .rv-google-strip-btns { flex-direction: column; width: 100%; }
    .ct-reviews-page .rv-google-strip-btns .rv-btn { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    .ct-reviews-page * { animation: none !important; transition: none !important; }
}
