/* ============================================
   LANDING PAGE v2 — Full Redesign
   Modern Blue / Orange / Teal palette
============================================ */

/* ── Shared tokens ── */
:root {
    --blue:    #2563eb;
    --blue-dk: #1d4ed8;
    --teal:    #0d9488;
    --orange:  #f97316;
    --amber:   #fbbf24;
    --dark:    #1e293b;
    --mid:     #64748b;
    --light:   #f8fafc;
    --white:   #ffffff;
    --grad-bt: linear-gradient(135deg, var(--blue), var(--teal));
    --grad-oa: linear-gradient(135deg, var(--orange), var(--amber));
    --grad-dk: linear-gradient(135deg, #1e293b, #0f172a);
    --radius:  18px;
    --shadow:  0 10px 40px rgba(0,0,0,.10);
    --shadow-lg: 0 25px 60px rgba(0,0,0,.18);
}

/* ── Shared helpers ── */
.lp-tag {
    display: inline-block;
    padding: 6px 18px;
    background: var(--grad-bt);
    color: #fff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.lp-tag--light {
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(6px);
}

.lp-heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
}
.lp-heading em {
    font-style: normal;
    background: var(--grad-bt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-heading--white { color: #fff; }
.lp-heading--white em {
    background: var(--grad-oa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-text   { font-size: 17px; color: var(--mid); line-height: 1.8; margin-bottom: 28px; }
.lp-subtext { font-size: 17px; color: var(--mid); }
.lp-subtext--light { color: rgba(255,255,255,.85); }

.lp-section-head { margin-bottom: 50px; }

.lp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: var(--grad-bt);
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 8px 24px rgba(37,99,235,.35);
}
.lp-btn-primary:hover {
    background: var(--grad-oa);
    box-shadow: 0 12px 32px rgba(249,115,22,.4);
    color: #fff;
    transform: translateY(-3px);
}

.lp-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.45);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}
.lp-btn-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* ── ABOUT ── */
.lp-about {
    padding: 90px 0;
    background: linear-gradient(160deg, #f8fafc 0%, #e2e8f0 100%);
}

.lp-about__img {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
}
.lp-about__img img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: block;
}
.lp-about__badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--grad-oa);
    color: #fff;
    padding: 22px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}
.lp-about__badge .badge-num {
    display: block;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}
.lp-about__badge .badge-txt {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .9;
}
.lp-about__cert {
    position: absolute;
    top: 20px;
    left: -20px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    box-shadow: var(--shadow);
}
.lp-about__cert i { color: var(--orange); font-size: 18px; }

.lp-about__body { padding-left: 20px; }

.lp-about__stats {
    display: flex;
    gap: 30px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.lp-stat {
    text-align: center;
    padding: 18px 24px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    min-width: 100px;
    flex: 1;
}
.lp-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    background: var(--grad-bt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}
.lp-stat span {
    font-size: 12px;
    color: var(--mid);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ── WHY CHOOSE US ── */
.lp-why {
    padding: 90px 0;
    background: #fff;
}

.lp-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.lp-why__card {
    position: relative;
    background: var(--light);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 36px 28px 28px;
    transition: all .3s ease;
    overflow: hidden;
}
.lp-why__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-bt);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.lp-why__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    background: #fff;
}
.lp-why__card:hover::before { transform: scaleX(1); }

.lp-why__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 42px;
    font-weight: 900;
    color: #e2e8f0;
    line-height: 1;
    transition: color .3s;
}
.lp-why__card:hover .lp-why__num { color: #dbeafe; }

.lp-why__icon {
    width: 64px;
    height: 64px;
    background: var(--grad-bt);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin-bottom: 20px;
    transition: all .3s ease;
}
.lp-why__card:hover .lp-why__icon {
    background: var(--grad-oa);
    transform: rotate(-5deg) scale(1.05);
}

.lp-why__card h4 {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.lp-why__card p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.65;
    margin: 0;
}

/* ── PROJECTS ── */
.lp-projects {
    padding: 90px 0;
    background: linear-gradient(160deg, #f1f5f9 0%, #e2e8f0 100%);
}

.lp-projects__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: 16px;
}

.lp-proj {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.lp-proj--tall {
    grid-row: span 2;
}

.lp-proj img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    display: block;
}
.lp-proj:hover img { transform: scale(1.08); }

.lp-proj__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(15,23,42,.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: #fff;
    opacity: 0;
    transition: opacity .35s ease;
}
.lp-proj:hover .lp-proj__overlay { opacity: 1; }

.lp-proj__cat {
    display: inline-block;
    padding: 4px 12px;
    background: var(--grad-oa);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    width: fit-content;
}
.lp-proj__overlay h5 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.lp-proj__overlay p  { font-size: 13px; opacity: .85; margin: 0; }

/* ── CATEGORIES ── */
.lp-cats {
    padding: 90px 0;
    background: #fff;
}

.lp-cats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.lp-cat {
    background: var(--light);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 36px 24px 28px;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.lp-cat::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-bt);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 0;
}
.lp-cat:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.lp-cat:hover::after { opacity: 1; }
.lp-cat:hover h4,
.lp-cat:hover p,
.lp-cat:hover .lp-cat__arrow { color: #fff; }
.lp-cat:hover .lp-cat__icon { background: rgba(255,255,255,.2); color: #fff; }

.lp-cat__icon {
    width: 72px;
    height: 72px;
    background: var(--grad-bt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin: 0 auto 18px;
    transition: all .3s ease;
    position: relative;
    z-index: 1;
}
.lp-cat h4 { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 6px; position: relative; z-index: 1; transition: color .3s; }
.lp-cat p  { font-size: 14px; color: var(--mid); margin: 0 0 14px; position: relative; z-index: 1; transition: color .3s; }
.lp-cat__arrow { font-size: 14px; color: var(--blue); position: relative; z-index: 1; transition: color .3s; }

/* ── PRODUCTS ── */
.lp-products {
    padding: 90px 0;
    background: linear-gradient(160deg, #f8fafc 0%, #f1f5f9 100%);
}

/* ── REVIEWS ── */
.lp-reviews {
    padding: 90px 0;
    background: var(--grad-bt);
    position: relative;
    overflow: hidden;
}
.lp-reviews::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.12)"/></svg>') repeat;
}

.lp-review-slider {
    position: relative;
    overflow: hidden;
    padding: 10px 0 20px;
}

.lp-review-track {
    display: flex;
    gap: 24px;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.lp-review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 30px;
    min-width: calc(33.333% - 16px);
    flex-shrink: 0;
    box-shadow: var(--shadow);
    position: relative;
}
.lp-review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 80px;
    color: #e2e8f0;
    font-family: Georgia, serif;
    line-height: 1;
}

.lp-review-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.lp-review-stars i { color: var(--orange); font-size: 16px; }

.lp-review-card p {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.lp-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.lp-reviewer__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad-bt);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}
.lp-reviewer strong { display: block; font-size: 15px; color: var(--dark); }
.lp-reviewer span   { font-size: 12px; color: var(--mid); }
.lp-google-icon { margin-left: auto; font-size: 20px; color: #4285f4; }

.lp-review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}
.lp-review-arrow:hover { background: var(--orange); border-color: var(--orange); }
.lp-review-prev { left: -10px; }
.lp-review-next { right: -10px; }

.lp-google-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #fff;
    color: var(--blue);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: var(--shadow);
}
.lp-google-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: var(--blue); }
.lp-google-btn i.fab { color: #4285f4; }

/* ── TRUST STRIP ── */
.lp-trust {
    padding: 40px 0;
    background: var(--dark);
    border-top: 3px solid var(--blue);
}

.lp-trust__grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.lp-trust__item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}
.lp-trust__item i {
    font-size: 30px;
    background: var(--grad-oa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-trust__item strong { display: block; font-size: 16px; font-weight: 800; }
.lp-trust__item span  { font-size: 12px; color: rgba(255,255,255,.6); }

/* ── CTA BANNER ── */
.lp-cta {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}
.lp-cta__bg {
    position: absolute;
    inset: 0;
    background: var(--grad-dk);
}
.lp-cta__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="g" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M100 0L0 0 0 100" fill="none" stroke="rgba(37,99,235,0.12)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23g)"/></svg>');
}

.lp-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.lp-cta__text h2 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    background: var(--grad-bt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.lp-cta__text p { font-size: 17px; color: rgba(255,255,255,.85); margin: 0; max-width: 520px; }
.lp-cta__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .lp-projects__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .lp-proj--tall { grid-row: span 1; }
    .lp-review-card { min-width: calc(50% - 12px); }
}

@media (max-width: 992px) {
    .lp-about { padding: 60px 0; }
    .lp-about__body { padding-left: 0; margin-top: 60px; }
    .lp-about__img img { height: 360px; }
    .lp-about__badge { bottom: -16px; right: 16px; }
    .lp-about__cert { left: 16px; }
    .lp-why, .lp-projects, .lp-cats, .lp-products, .lp-reviews, .lp-cta { padding: 60px 0; }
    .lp-cta__inner { flex-direction: column; text-align: center; }
    .lp-cta__actions { justify-content: center; }
}

@media (max-width: 768px) {
    .lp-projects__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .lp-proj { height: 240px; }
    .lp-proj__overlay { opacity: 1; }
    .lp-review-card { min-width: calc(100% - 0px); }
    .lp-review-prev { left: 0; }
    .lp-review-next { right: 0; }
    .lp-about__stats { gap: 12px; }
    .lp-stat { padding: 14px 16px; }
    .lp-stat strong { font-size: 22px; }
    .lp-trust__grid { justify-content: center; gap: 16px; }
    .lp-trust__item {
        flex: 1 1 40%;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }
    .lp-trust__item i { font-size: 26px; }
}

@media (max-width: 480px) {
    .lp-why__grid { grid-template-columns: 1fr; }
    .lp-cats__grid { grid-template-columns: repeat(2, 1fr); }
    .lp-about__stats { flex-direction: column; align-items: center; }
    .lp-stat { width: 100%; }
    .lp-cta__actions { flex-direction: column; align-items: center; }
    .lp-btn-primary, .lp-btn-outline { justify-content: center; width: 100%; max-width: 280px; }
    .lp-trust__item { flex: 1 1 100%; }
}

/* ── Google Reviews extras ── */

/* Overall rating bar */
.gr-overall {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 16px;
    padding: 20px 28px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.gr-overall__score {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.gr-overall__right { flex: 1; min-width: 160px; }
.gr-overall__stars { display: flex; gap: 4px; margin-bottom: 4px; }
.gr-overall__stars i { color: var(--orange); font-size: 18px; }
.gr-overall__count { font-size: 13px; color: rgba(255,255,255,.8); margin-bottom: 2px; }
.gr-overall__name  { font-size: 14px; font-weight: 700; color: #fff; }

.gr-write-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #fff;
    color: #1e293b;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    white-space: nowrap;
    margin-left: auto;
}
.gr-write-btn i { color: #4285f4; }
.gr-write-btn:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.gr-write-btn:hover i { color: #fff; }

/* Card top row */
.gr-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.gr-time {
    font-size: 12px;
    color: var(--mid);
    font-weight: 500;
}

/* Reviewer photo from Google */
.gr-photo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Skeleton loading cards */
.gr-skeleton { pointer-events: none; }

.sk-line {
    height: 12px;
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.4s infinite;
    border-radius: 6px;
    margin-bottom: 10px;
    width: 100%;
}
.sk-short { width: 40%; }
.sk-med   { width: 65%; }
.sk-xs    { width: 30%; height: 9px; }

.sk-avatar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}
.sk-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
    background-size: 200% 100%;
    animation: sk-shimmer 1.4s infinite;
    flex-shrink: 0;
}

@keyframes sk-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (max-width: 768px) {
    .gr-overall { flex-direction: column; text-align: center; }
    .gr-overall__right { text-align: center; }
    .gr-overall__stars { justify-content: center; }
    .gr-write-btn { margin-left: 0; }
}


/* ============================================
   REVIEWS MARQUEE SECTION
============================================ */

/* ── Keyframes ── */
@keyframes marquee-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ── Section wrapper ── */
.reviews-marquee-section {
    padding: 90px 0 60px;
    background: linear-gradient(to bottom, transparent, rgba(251,191,36,.12), transparent);
    position: relative;
    overflow: hidden;
}

/* ── Decorative blur circles ── */
.rmq-blur {
    position: absolute;
    top: 25%;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: var(--blue);
    opacity: .55;
    filter: blur(6rem);
    z-index: 0;
    pointer-events: none;
}
.rmq-blur--left  { left: 25%; }
.rmq-blur--right { right: 25%; }

/* ── Marquee wrapper (full-bleed) ── */
.rmq-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 48px;
}

/* ── Each row ── */
.rmq-row {
    display: flex;
    overflow: hidden;
    margin-bottom: 20px;
}

/* ── Scrolling track ── */
.rmq-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: var(--rmq-dir, marquee-left) var(--rmq-duration, 30s) linear infinite;
}

/* Pause on hover */
.rmq-row:hover .rmq-track {
    animation-play-state: paused;
}

/* ── Individual card ── */
.rmq-card {
    width: 16rem;          /* w-64 */
    flex-shrink: 0;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(37,99,235,.12);
    border-radius: 16px;
    padding: 18px;
    cursor: pointer;
    transition: background .25s ease, box-shadow .25s ease;
    margin: 0;
}
.rmq-card:hover {
    background: #fff;
    box-shadow: 0 8px 32px rgba(37,99,235,.10);
}

.rmq-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.rmq-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--grad-bt);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

.rmq-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    display: block;
    line-height: 1.2;
}
.rmq-username {
    font-size: 11px;
    color: var(--mid);
    margin: 0;
    line-height: 1.2;
}

.rmq-stars {
    margin-left: auto;
    font-size: 12px;
    color: var(--orange);
    white-space: nowrap;
    letter-spacing: 1px;
}

.rmq-card blockquote {
    font-size: 13px;
    color: #334155;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    border: none;
}

/* ── Left / right gradient fade overlays ── */
.rmq-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    pointer-events: none;
    z-index: 2;
}
.rmq-fade--left  {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}
.rmq-fade--right {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* ── Google button (reused from existing styles, ensure visible here) ── */
.reviews-marquee-section .lp-google-btn {
    background: var(--grad-bt);
    color: #fff;
    box-shadow: 0 8px 24px rgba(37,99,235,.3);
}
.reviews-marquee-section .lp-google-btn:hover {
    background: var(--grad-oa);
    color: #fff;
    box-shadow: 0 12px 32px rgba(249,115,22,.35);
}
.reviews-marquee-section .lp-google-btn i.fab { color: #fff; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .reviews-marquee-section { padding: 60px 0 40px; }
    .rmq-card { width: 14rem; }
    .rmq-fade { width: 8%; }
    .rmq-blur { display: none; }
}
