/* ============================================================
   cardiwan — home.css
   Prefix: gv-  |  H1→H2→H3 hierarchy enforced
   ============================================================ */

/* ══════════════════════════════════════════
   TOKENS & RESET
══════════════════════════════════════════ */
:root {
    /* ── Primary accent (dark, PDF-matched) ── */
    --gold:          #111111;
    --gold-lt:       #2B2B2B;
    --gold-dk:       #0A0A0A;
    --gold-glow:     rgba(0,0,0,.12);

    /* ── Neutral scale (pure, no warm cast) ── */
    --black:         #0A0A0A;
    --gray-900:      #111111;
    --gray-800:      #1A1A1A;
    --gray-700:      #2B2B2B;
    --gray-600:      #3D3D3D;
    --gray-500:      #555555;
    --gray-400:      #888888;
    --gray-300:      #AAAAAA;
    --gray-200:      #CCCCCC;
    --gray-100:      #E8E8E8;
    --gray-50:       #F5F5F5;
    --white:         #FFFFFF;

    /* ── Semantic tokens ── */
    --bg-muted:      #F5F5F5;
    --bg-brand:      #E8E8E8;
    --bg-dark:       #0A0A0A;
    --text-primary:  #111111;
    --text-secondary:#555555;
    --border:        #E0E0E0;

    /* ── Typography ── */
    --font-body:     'Inter', sans-serif;
    --font-display:  'Playfair Display', serif;

    /* ── Motion ── */
    --ease:          cubic-bezier(.4,0,.2,1);
    --ease-spring:   cubic-bezier(.34,1.56,.64,1);

    /* ── Radius ── */
    --r:             10px;
    --r-lg:          16px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { overflow-x:hidden; scroll-behavior:smooth; }
body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a   { text-decoration:none; color:inherit; }
button { font-family: var(--font-body); }

::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background: var(--gray-50); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius:3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dk); }

/* ── Layout helpers ── */
.gv-container  { max-width:1280px; margin:0 auto; padding:0 28px; }
.gv-gold       { color: var(--text-primary); }
.gv-section    { padding:100px 0; }
.gv-section-sm { padding:72px 0; }

/* ── Section label ("Our Fleet", "Top Picks", …) ── */
.gv-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--gray-500);
    margin-bottom: 14px;
}
.gv-section-label::before {
    content: '';
    display: block;
    width: 28px; height: 1px;
    background: var(--gray-400);
    flex-shrink: 0;
}

/* ── Section headings ── */
.gv-section-title {
    font-family: var(--font-display);
    font-size: clamp(30px,4vw,56px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 14px;
}
.gv-section-sub {
    font-size: 15px;
    color: var(--gray-400);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 48px;
}
.gv-section-sub--left { text-align:left; max-width:100%; margin-left:0; }

/* ── Shared vehicles / blog header row ── */
.gv-vehicles-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 20px;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.gv-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: var(--r);
    cursor: pointer;
    transition: background .28s var(--ease), transform .3s var(--ease-spring), box-shadow .3s;
    white-space: nowrap;
}
.gv-btn:hover {
    background: var(--gray-800);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,.25), 0 4px 12px rgba(0,0,0,.15);
}

.gv-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    background: transparent;
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--black);
    border-radius: var(--r);
    cursor: pointer;
    transition: background .28s, color .28s, border-color .28s, transform .3s var(--ease-spring), box-shadow .28s;
    white-space: nowrap;
}
.gv-btn-outline:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* ── Scroll Reveal ── */
.gv-reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.gv-reveal.gv-visible { opacity:1; transform:none; }

.gv-reveal-left {
    opacity: 0;
    transform: translateX(-44px);
    transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.gv-reveal-left.gv-visible { opacity:1; transform:none; }

.gv-reveal-right {
    opacity: 0;
    transform: translateX(44px);
    transition: opacity .72s var(--ease), transform .72s var(--ease);
}
.gv-reveal-right.gv-visible { opacity:1; transform:none; }

/* Stagger delays */
.gv-d1 { transition-delay:.08s; }
.gv-d2 { transition-delay:.17s; }
.gv-d3 { transition-delay:.26s; }
.gv-d4 { transition-delay:.35s; }
.gv-d5 { transition-delay:.44s; }
.gv-d6 { transition-delay:.53s; }


/* ══════════════════════════════════════════
   1. BANNER
══════════════════════════════════════════ */
.gv-banner {
    width: 100%;
    line-height: 0;
}
.gv-banner-wrap {
    position: relative;
    line-height: 0;
    overflow: hidden;
}
.gv-banner-img {
    width: 100%;
    height: auto;
    display: block;
    animation: gvBannerZoom 9s cubic-bezier(.25,.46,.45,.94) both;
}
@keyframes gvBannerZoom {
    from { transform: scale(1.07); }
    to   { transform: scale(1);    }
}
.gv-banner-caption {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.3);
    animation: gvBannerFade 1.2s var(--ease) both;
}
@keyframes gvBannerFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.gv-banner-h1 {
    font-family: var(--font-display);
    font-size: clamp(26px, 5vw, 72px);
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 4px 24px rgba(0,0,0,.55);
    line-height: 1.15;
    text-align: center;
    max-width: 780px;
    padding: 0 24px;
    animation: gvBannerSlide 1.3s var(--ease) .15s both;
}
@keyframes gvBannerSlide {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0);    }
}


/* stats section removed — not in PDF design */


/* ══════════════════════════════════════════
   3. CATEGORIES
══════════════════════════════════════════ */
.gv-cats-section {
    background: var(--white);
    padding: 20px 0 20px;
}

.gv-cats-header {
    text-align: center;
    margin-bottom: 48px;
}

.gv-cats-title {
    font-family: var(--font-body);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.gv-cats-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 820px;
    margin: 0 auto;
}

.gv-cats-grid {
    display: grid;
    grid-template-columns: repeat(var(--cat-count, 4), 1fr);
    gap: 14px;
}

.gv-cat-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: block;
    text-decoration: none;
    isolation: isolate;
    background: var(--gray-800);
}

.gv-cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .65s var(--ease);
    will-change: transform;
    display: block;
}
.gv-cat-card:hover img,
.gv-cat-card.gv-cat-active img { transform: scale(1.06); }
.gv-cat-card.gv-cat-active {
    outline: 3px solid var(--white);
    outline-offset: -3px;
    box-shadow: 0 0 0 5px var(--black);
}

.gv-cat-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 14px 12px;
    text-align: center;
}

.gv-cat-name {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0,0,0,.8);
}


/* ══════════════════════════════════════════
   4. FEATURED VEHICLES  (H2 section → H3 cards)
══════════════════════════════════════════ */
.gv-vehicles-section {
    background: var(--white);
    position: relative;
    padding: 100px 0;
}
.gv-vehicles-section::before {
    content:'';
    position:absolute; top:0; left:0; right:0; height:1px;
    background:linear-gradient(90deg, transparent, rgba(0,0,0,.25), transparent);
}

.gv-vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.gv-vcard {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .38s var(--ease-spring), box-shadow .38s var(--ease), border-color .3s;
}
.gv-vcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(0,0,0,.28), 0 0 28px rgba(0,0,0,.06);
    border-color: rgba(0,0,0,.32);
}

.gv-vcard-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--gray-50);
}
.gv-vcard-img img {
    width:100%; height:100%;
    object-fit:cover;
    transition: transform .65s var(--ease);
    will-change: transform;
}
.gv-vcard:hover .gv-vcard-img img { transform:scale(1.08); }

.gv-vcard-deal {
    position: absolute;
    top:12px; left:12px;
    background: var(--black);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 5px;
    z-index: 2;
}

.gv-vcard-brand {
    position: absolute;
    top:12px; right:12px;
    width:38px; height:38px;
    background: rgba(8,8,8,.85);
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.28);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    transition: border-color .3s;
}
.gv-vcard:hover .gv-vcard-brand { border-color:rgba(0,0,0,.55); }
.gv-vcard-brand img { width:28px; height:28px; object-fit:contain; padding:3px; }

.gv-vcard-body {
    padding: 16px 18px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gv-vcard-title-block { flex: 1; }

.gv-vcard-brand-lbl {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 4px;
}

/* H3 */
.gv-vcard-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.2;
    transition: color .25s;
}
.gv-vcard-title a { color: inherit; text-decoration: none; }
.gv-vcard:hover .gv-vcard-title { color: var(--gold); }

.gv-vcard-specs {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 16px;
}
.gv-vcard-spec {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 9px 5px;
    border-right: 1px solid var(--border);
    gap: 3px;
}
.gv-vcard-spec:last-child { border-right: none; }
.gv-vcard-spec svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.gv-vcard-spec-val { font-size: 11px; font-weight: 600; color: var(--text-primary); text-align: center; white-space: nowrap; }
.gv-vcard-spec-key { font-size: 9px; font-weight: 500; color: var(--gray-400); text-align: center; }

.gv-vcard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    margin-top: auto;
    gap: 8px;
}

.gv-vcard-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}
.gv-vcard-price small {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--gray-400);
    font-weight: 400;
}

.gv-vcard-cta {
    padding: 10px 20px;
    background: var(--black);
    border: none;
    border-radius: var(--r);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s, transform .2s var(--ease-spring);
}
.gv-vcard-cta svg { width: 11px; height: 11px; }
.gv-vcard-cta:hover { background: var(--gray-800); transform: translateY(-1px); }


/* ══════════════════════════════════════════
   4b. FEATURED VEHICLES — new fv- card design
══════════════════════════════════════════ */
.fv-section {
    background: var(--white);
    padding: 32px 0 80px;
}

.fv-section.cats {
    padding: 32px 0 0px;
}

.fv-header {
    text-align: center;
    margin-bottom: 36px;
}
.fv-section-title {
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: var(--font-body);
}
.fv-section-desc {
    font-size: 14px;
    color: var(--text-secondary);
/*     max-width: 600px; */
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid */
.fv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Card */
.fv-card {
    border: 2px solid #2a2a2a;
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    display: flex;
    flex-direction: column;
    transition: transform .32s var(--ease-spring), box-shadow .32s var(--ease);
}
.fv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,.12);
}

/* Image outer — holds the <a> link + arrow buttons */
.fv-img-outer {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--gray-100);
    flex-shrink: 0;
}
.fv-img-wrap {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: absolute;
    inset: 0;
}
.fv-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--ease), opacity .22s var(--ease);
}
.fv-card:hover .fv-gallery-img { transform: scale(1.06); }

/* Arrow buttons */
.fv-arr {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.52);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s var(--ease), background .2s var(--ease);
    padding: 0;
    line-height: 1;
}
.fv-arr svg { width: 16px; height: 16px; pointer-events: none; }
.fv-arr:hover { background: rgba(0,0,0,.78); }
.fv-arr-prev { left: 10px; }
.fv-arr-next { right: 10px; }
/* Show on card hover (desktop) */
.fv-card:hover .fv-arr { opacity: 1; }
/* Always visible on touch devices */
@media (hover: none) {
    .fv-arr { opacity: 1; width: 30px; height: 30px; }
}
.fv-deal-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--black);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 4px 10px;
    border-radius: 5px;
}

/* Name bar (dark) */
.fv-namebar {
    background: #111111;
    padding: 13px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 64px;
}
.fv-title-link { text-decoration: none; flex: 1; min-width: 0; }
.fv-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin: 0;
    text-align: left;
    font-family: var(--font-body);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fv-brand-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 6px;
    padding: 3px;
    background: rgba(255,255,255,.92);
}

/* Body */
.fv-body {
    background: #f7f7f7;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* Price */
.fv-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.fv-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}
.fv-price-unit {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Specs strip — horizontal white pill */
.fv-specs-strip {
    background: var(--white);
    border-radius: 10px;
    padding: 9px;
    display: flex;
    align-items: center;
    gap: 0;
    box-shadow: 0 1px 6px rgba(0,0,0,.09);
}
.fv-si {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 8px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    min-width: 0;
}
.fv-si span {
    overflow: hidden;
    text-overflow: ellipsis;
}
.fv-si svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
    color: var(--gray-700);
}

/* Buttons */
.fv-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.fv-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .2px;
    transition: opacity .2s, transform .2s var(--ease-spring);
    font-family: var(--font-body);
}
.fv-btn:hover { opacity: .88; transform: translateY(-1px); }
.fv-btn-call {
    background: var(--black);
    color: var(--white);
}
.fv-btn-wa {
    background: #25D366;
    color: var(--white);
}

/* Empty state */
.fv-empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 64px 24px;
    color: var(--gray-400);
    text-align: center;
}
.fv-empty svg {
    opacity: .45;
    flex-shrink: 0;
}
.fv-empty p {
    font-size: 1rem;
    color: var(--gray-500);
    margin: 0;
}

/* View All */
.fv-view-all {
    text-align: center;
    margin-top: 48px;
}

/* Responsive */
@media (max-width: 1100px) {
    .fv-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .fv-grid { grid-template-columns: repeat(2, 1fr); }
    .fv-section { padding: 60px 0; }
}
@media (max-width: 480px) {
    .fv-grid { grid-template-columns: 1fr; }
    .fv-tabs { gap: 6px; }
    .fv-tab { padding: 8px 16px; font-size: 12px; }
}


/* ══════════════════════════════════════════
   4c. MID-PAGE CTA CARD (Performance. Refined.)
══════════════════════════════════════════ */
.gv-mid-cta {
    padding: 0 0 72px;
    background: var(--white);
}

.gv-mid-cta-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../../img/web/CTA_background.webp');
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.gv-mid-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.42);
}

.gv-mid-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 72px 24px;
    width: 100%;
}

/* H2 */
.gv-mid-cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 14px;
}

.gv-mid-cta-sub {
    font-size: 15px;
    color: rgba(255,255,255,.7);
    margin-bottom: 36px;
    line-height: 1.6;
}

.gv-mid-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 52px;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: .3px;
    transition: background .28s var(--ease), transform .3s var(--ease-spring), box-shadow .3s;
    white-space: nowrap;
}
.gv-mid-cta-btn:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,.3);
}

@media (max-width: 768px) {
    .gv-mid-cta-card    { min-height: 260px; border-radius: 18px; }
    .gv-mid-cta-content { padding: 56px 20px; }
}
@media (max-width: 640px) {
    .gv-mid-cta         { padding: 0 0 56px; }
    .gv-mid-cta-card    { min-height: 220px; border-radius: 14px; }
    .gv-mid-cta-content { padding: 44px 16px; }
    .gv-mid-cta-btn     { padding: 14px 36px; font-size: 13px; }
}
@media (max-width: 480px) {
    .gv-mid-cta-card    { min-height: 200px; border-radius: 12px; }
    .gv-mid-cta-content { padding: 36px 16px; }
}


/* ══════════════════════════════════════════
   4d. SEO SPLIT SECTION
══════════════════════════════════════════ */
.gv-seo {
    background-color: var(--white);
    background-image: url('../../img/web/SE0_background.webp');
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding: 20px 0 0;
}

.gv-seo-row {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 28px;
}

.gv-seo-row--img-left {
    grid-template-columns: 7fr 5fr;
}

/* H2 */
.gv-seo-title {
    font-family: var(--font-body);
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -.5px;
}

.gv-seo-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.gv-seo-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: background .28s var(--ease), transform .3s var(--ease-spring), box-shadow .3s;
    white-space: nowrap;
}
.gv-seo-btn:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

.gv-seo-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 8px 40px rgba(0,0,0,.1);
}

.gv-seo-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .65s var(--ease);
}
.gv-seo-img-wrap:hover .gv-seo-img { transform: scale(1.03); }

/* Responsive */
@media (max-width: 900px) {
    .gv-seo-row,
    .gv-seo-row--img-left {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 56px 20px;
    }
    .gv-seo-row--img-left .gv-seo-img-wrap { order: -1; }
    .gv-seo-desc { max-width: 100%; }
}

@media (max-width: 640px) {
    .gv-seo-row,
    .gv-seo-row--img-left { padding: 44px 16px; }
    .gv-seo-img-wrap { border-radius: 12px; }
}

@media (max-width: 480px) {
    .gv-seo-title { letter-spacing: -.3px; }
    .gv-seo-btn   { padding: 13px 32px; width: 100%; justify-content: center; }
}


/* ══════════════════════════════════════════
   4e. DARK FEATURE — Rolls Royce
══════════════════════════════════════════ */
.gv-dark-split {
    background: #0A0A0A;
    overflow: hidden;
}

/* Mobile-first: car image sits above text as a block */
.gv-dark-car-img {
    width: 100%;
    height: auto;
    display: block;
}

.gv-dark-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.gv-dark-text {
    padding: 40px 0 56px;
}

/* H2 */
.gv-dark-title {
    font-family: var(--font-body);
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -.5px;
    max-width: 520px;
}

.gv-dark-desc {
    font-size: 14px;
    color: rgba(255,255,255,.62);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.gv-dark-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: background .28s var(--ease), transform .3s var(--ease-spring), box-shadow .3s;
    white-space: nowrap;
}
.gv-dark-btn:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255,255,255,.12);
}

/* Desktop: car positioned absolutely right-bottom, text left */
@media (min-width: 769px) {
    .gv-dark-split {
        position: relative;
        min-height: 480px;
    }
    .gv-dark-car {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 60%;
        z-index: 1;
        line-height: 0;
    }
    .gv-dark-car-img {
        width: 100%;
        height: auto;
        display: block;
    }
    .gv-dark-inner {
        padding: 80px 28px;
        position: relative;
        z-index: 2;
    }
    .gv-dark-text {
        padding: 0;
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .gv-dark-title { max-width: 100%; }
    .gv-dark-desc  { max-width: 100%; }
}

@media (max-width: 640px) {
    .gv-dark-inner { padding: 0 16px; }
    .gv-dark-text  { padding: 32px 0 40px; }
}

@media (max-width: 480px) {
    .gv-dark-btn { width: 100%; justify-content: center; }
}


/* ══════════════════════════════════════════
   4f. HOW IT WORKS — new design (gv-hw)
══════════════════════════════════════════ */
.gv-hw {
    background: var(--bg-muted);
    padding: 80px 0 100px;
}

/* H2 */
.gv-hw-heading {
    font-family: var(--font-body);
    font-size: clamp(32px, 4.5vw, 60px);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 64px;
    letter-spacing: -.5px;
}

.gv-hw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.gv-hw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gv-hw-icon {
    width: 148px;
    height: 148px;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    flex-shrink: 0;
    transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease);
}
.gv-hw-step:hover .gv-hw-icon {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 18px 48px rgba(0,0,0,.22);
}
.gv-hw-icon svg { color: var(--white); }

/* H3 */
.gv-hw-title {
    font-family: var(--font-body);
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.gv-hw-desc {
    font-size: 13.5px;
    color: var(--gray-500);
    line-height: 1.78;
    max-width: 300px;
}

@media (max-width: 900px) {
    .gv-hw-grid { grid-template-columns: 1fr; gap: 52px; }
    .gv-hw-desc { max-width: 480px; }
}

@media (max-width: 640px) {
    .gv-hw         { padding: 60px 0 80px; }
    .gv-hw-heading { margin-bottom: 48px; }
    .gv-hw-icon    { width: 120px; height: 120px; }
    .gv-hw-icon svg { width: 42px; height: 42px; }
    .gv-hw-desc    { max-width: 100%; }
}

@media (max-width: 480px) {
    .gv-hw-icon { width: 108px; height: 108px; }
    .gv-hw-icon svg { width: 38px; height: 38px; }
}


/* ══════════════════════════════════════════
   CUSTOMER REVIEWS CAROUSEL
══════════════════════════════════════════ */
.cr-section {
    background: var(--white);
    padding: 80px 0 100px;
    /* clip-x hides cards beyond viewport edges; visible-y lets active card scale breathe */
    overflow-x: clip;
    overflow-y: visible;
}

.cr-header {
    text-align: center;
    padding: 0 28px;
    margin-bottom: 60px;
}

/* H2 */
.cr-heading {
    font-family: var(--font-body);
    font-size: clamp(36px, 5.5vw, 68px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -.5px;
}

.cr-subheading {
    font-size: 15px;
    color: var(--gray-400);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.6;
}

.cr-track-outer {
    padding: 56px 0 80px;
    /* no overflow — section handles horizontal clipping */
}

.cr-track {
    display: flex;
    gap: 24px;
    align-items: center;
    will-change: transform;
}

/* Cards stay at full visual width — no scale() shrink on inactive.
   Inactive distinguished by opacity + gray bg only. */
.cr-card {
    flex-shrink: 0;
    width: 520px;
    background: var(--gray-100);
    border-radius: 24px;
    padding: 36px 40px;
    position: relative;
    z-index: 1;
    opacity: 0.55;
    transition:
        transform   .5s var(--ease),
        background  .5s var(--ease),
        box-shadow  .5s var(--ease),
        opacity     .45s var(--ease);
}

/* Active card: subtle scale + lift, high z-index so it overlaps neighbors */
.cr-card.cr-active {
    background: linear-gradient(148deg, #3d3d3d 0%, #111111 100%);
    transform: scale(1.06) translateY(-10px);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 32px 80px rgba(0,0,0,.30);
}

.cr-card-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.cr-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #22C55E;
    flex-shrink: 0;
    transition: width .5s var(--ease), height .5s var(--ease);
}
.cr-card.cr-active .cr-avatar {
    width: 74px;
    height: 74px;
}

.cr-meta { flex: 1; min-width: 0; }

.cr-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 6px;
    transition: color .5s var(--ease);
}
.cr-card.cr-active .cr-name { color: var(--white); }

.cr-stars {
    font-size: 20px;
    color: #F59E0B;
    letter-spacing: 3px;
    line-height: 1;
}
.cr-card.cr-active .cr-stars { font-size: 26px; }

.cr-text {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.82;
    transition: color .5s var(--ease);
    text-align: justify;
}
.cr-card.cr-active .cr-text { color: rgba(255,255,255,.82); }

@media (max-width: 1100px) {
    .cr-card { width: 440px; }
}

@media (max-width: 768px) {
    .cr-section { padding: 60px 0 80px; }
    .cr-header  { margin-bottom: 44px; }
    .cr-card    { width: 340px; padding: 28px; border-radius: 18px; }
    .cr-card.cr-active { transform: scale(1.05) translateY(-6px); }
}

@media (max-width: 480px) {
    .cr-card { width: 280px; padding: 22px; border-radius: 16px; }
    .cr-card.cr-active { transform: scale(1.04) translateY(-5px); }
}


/* ══════════════════════════════════════════
   5. BRANDS MARQUEE  (pure CSS infinite loop)
══════════════════════════════════════════ */
.gv-brands-section {
    background: var(--bg-brand);
    padding: 64px 0;
    overflow: hidden;
    position: relative;
}

.gv-brands-heading {
    font-family: var(--font-body);
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 44px;
    padding: 0 28px;
    line-height: 1.3;
}

.gv-brands-track-wrap {
    overflow: hidden;
    position: relative;
}
.gv-brands-track-wrap::before,
.gv-brands-track-wrap::after {
    content: '';
    position: absolute; top: 0; bottom: 0;
    width: 100px; z-index: 2; pointer-events: none;
}
.gv-brands-track-wrap::before { left: 0;  background: linear-gradient(to right, var(--bg-brand), transparent); }
.gv-brands-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg-brand), transparent); }

.gv-brands-track {
    display: flex;
    gap: 0;
    width: max-content;
    padding: 8px 0 12px;
    animation: gvBrandScroll 32s linear infinite;
    will-change: transform;
}

@keyframes gvBrandScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.gv-brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 110px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    flex-shrink: 0;
    padding: 12px;
    margin-right: 16px;
    transition: transform .28s var(--ease-spring), box-shadow .28s var(--ease);
}
.gv-brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,.14);
}
.gv-brand-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gv-brand-card-fallback {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}


/* ══════════════════════════════════════════
   6. HOW IT WORKS  (H2 → H3 steps)
══════════════════════════════════════════ */
.gv-hiw {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
.gv-hiw::before {
    content:'';
    position:absolute; top:-160px; right:-160px;
    width:560px; height:560px; border-radius:50%;
    background:radial-gradient(circle, rgba(0,0,0,.06) 0%, transparent 70%);
    pointer-events:none;
}
.gv-hiw::after {
    content:'';
    position:absolute; bottom:-140px; left:-140px;
    width:480px; height:480px; border-radius:50%;
    background:radial-gradient(circle, rgba(0,0,0,.04) 0%, transparent 70%);
    pointer-events:none;
}

.gv-hiw-steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0;
    position: relative;
}

/* Connector line removed — caused visual artefact across step icons */
.gv-hiw-steps::before { display: none; }

.gv-hiw-step {
    padding: 52px 44px;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background .3s;
}
.gv-hiw-step:last-child { border-right:none; }
.gv-hiw-step:hover { background:rgba(0,0,0,.02); }

.gv-hiw-num {
    font-family: var(--font-display);
    font-size: 90px;
    font-weight: 700;
    color: rgba(0,0,0,.055);
    line-height: 1;
    position: absolute;
    top:20px; right:20px;
    user-select: none;
    transition: color .35s;
}
.gv-hiw-step:hover .gv-hiw-num { color:rgba(0,0,0,.1); }

.gv-hiw-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    transition: transform .4s var(--ease-spring), box-shadow .4s;
}
.gv-hiw-icon::before {
    content:'';
    position:absolute; inset:-5px;
    border-radius:50%;
    border:1px solid rgba(0,0,0,.18);
    transition:border-color .3s, inset .35s;
}
.gv-hiw-step:hover .gv-hiw-icon {
    transform:scale(1.14) rotate(6deg);
    box-shadow:0 10px 36px rgba(0,0,0,.45);
}
.gv-hiw-step:hover .gv-hiw-icon::before { border-color:rgba(0,0,0,.5); inset:-10px; }
.gv-hiw-icon svg { width:26px; height:26px; color:var(--white); }

/* H3 */
.gv-hiw-h {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    transition: color .25s;
}
.gv-hiw-step:hover .gv-hiw-h { color:var(--gold); }

.gv-hiw-p { font-size:14px; color:var(--gray-400); line-height:1.75; }


/* ══════════════════════════════════════════
   7. WHY CHOOSE US  (H2 → H3 items)
══════════════════════════════════════════ */
.gv-why {
    background: var(--bg-muted);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
.gv-why-bg-text {
    position:absolute; top:50%; left:50%;
    transform:translate(-50%,-50%);
    font-family:var(--font-display);
    font-size:clamp(70px,14vw,210px);
    font-weight:700;
    color:rgba(0,0,0,.025);
    white-space:nowrap;
    pointer-events:none;
    user-select:none;
    letter-spacing:8px;
}

.gv-why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.gv-why-item {
    background: var(--bg-muted);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background .3s;
    position: relative;
    overflow: hidden;
}
.gv-why-item::after {
    content:'';
    position:absolute; bottom:0; left:0;
    width:100%; height:2px;
    background:linear-gradient(90deg, transparent, var(--gold), transparent);
    transform:scaleX(0);
    transition:transform .4s var(--ease);
}
.gv-why-item:hover { background:var(--gray-100); }
.gv-why-item:hover::after { transform:scaleX(1); }

.gv-why-icon {
    width:50px; height:50px;
    border-radius:10px;
    background: rgba(0,0,0,.06);
    border:1px solid rgba(0,0,0,.12);
    display:flex; align-items:center; justify-content:center;
    transition:background .3s, transform .38s var(--ease-spring), box-shadow .3s;
    flex-shrink:0;
}
.gv-why-item:hover .gv-why-icon {
    background: rgba(0,0,0,.1);
    transform:scale(1.12) rotate(-4deg);
    box-shadow:0 6px 22px rgba(0,0,0,.12);
}
.gv-why-icon svg { width:21px; height:21px; color:var(--gold); }

/* H3 */
.gv-why-h {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    transition: color .25s;
}
.gv-why-item:hover .gv-why-h { color:var(--gold); }

.gv-why-p { font-size:13.5px; color:var(--gray-400); line-height:1.7; }


/* ══════════════════════════════════════════
   8. SPECIAL DEALS
══════════════════════════════════════════ */
.gv-deals {
    background: var(--white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}
.gv-deals::before {
    content:'';
    position:absolute; top:0; left:0; right:0; height:1px;
    background:linear-gradient(90deg, transparent, rgba(0,0,0,.22), transparent);
}
.gv-deals-bg {
    position:absolute; inset:0;
    background:url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1600&q=50') center/cover no-repeat;
    opacity:.04;
    filter:grayscale(100%);
}

.gv-deals-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    position: relative;
}

.gv-deal-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    transition: border-color .3s, transform .38s var(--ease), box-shadow .38s;
}
.gv-deal-card:hover {
    border-color: rgba(0,0,0,.45);
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(0,0,0,.55), 0 0 22px rgba(0,0,0,.07);
}

.gv-deal-img {
    width: 170px;
    flex-shrink: 0;
    overflow: hidden;
}
.gv-deal-img img {
    width:100%; height:100%;
    object-fit:cover;
    transition:transform .55s var(--ease);
}
.gv-deal-card:hover .gv-deal-img img { transform:scale(1.08); }

.gv-deal-body {
    padding: 22px;
    flex:1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gv-deal-badge {
    display: inline-block;
    background: rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.15);
    color: var(--black);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.gv-deal-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
    transition: color .25s;
}
.gv-deal-card:hover .gv-deal-title { color:var(--gold); }

.gv-deal-desc {
    font-size: 12px;
    color: var(--gray-400);
    line-height: 1.55;
    margin-bottom: 14px;
}

.gv-deal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.gv-deal-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.gv-deal-price small {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 400;
}


/* ══════════════════════════════════════════
   9. TESTIMONIALS  (CSS infinite scroll — no JS)
══════════════════════════════════════════ */
.gv-testi {
    background: var(--bg-muted);
    overflow: hidden;
    padding: 72px 0;
    position: relative;
}
.gv-testi::before {
    content:'';
    position:absolute; top:0; left:0; right:0; height:1px;
    background:linear-gradient(90deg, transparent, rgba(0,0,0,.28), transparent);
}

.gv-testi-track-outer {
    overflow: hidden;
    margin-top: 52px;
    position: relative;
    padding: 6px 0 10px;
    cursor: default;
}
.gv-testi-track-outer::before,
.gv-testi-track-outer::after {
    content:'';
    position:absolute; top:0; bottom:0;
    width:120px; z-index:2; pointer-events:none;
}
.gv-testi-track-outer::before { left:0;  background:linear-gradient(to right, var(--bg-muted), transparent); }
.gv-testi-track-outer::after  { right:0; background:linear-gradient(to left,  var(--bg-muted), transparent); }

/* gap: 0 + margin-right on cards makes -N% exact (no drift) */
.gv-testi-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: gvTestiScroll 55s linear infinite;
    will-change: transform;
}
.gv-testi-track-outer:hover .gv-testi-track { animation-play-state:paused; }

@keyframes gvTestiScroll {
    0%   { transform:translateX(0); }
    100% { transform:translateX(var(--testi-pct, -33.333%)); }
}

.gv-testi-card {
    width: 340px;
    flex-shrink: 0;
    margin-right: 22px; /* replaces gap — makes one-set = exactly cardWidth × count */
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    transition: border-color .3s, transform .35s var(--ease), box-shadow .35s;
    position: relative;
    overflow: hidden;
}
/* decorative quote mark */
.gv-testi-card::before {
    content:'\201C';
    font-family: var(--font-display);
    font-size: 88px;
    color: var(--gold);
    opacity: .09;
    position: absolute;
    top: -8px; left: 14px;
    line-height: 1;
    pointer-events: none;
    transition: opacity .3s;
    user-select: none;
}
.gv-testi-card:hover {
    border-color: rgba(0,0,0,.35);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.gv-testi-card:hover::before { opacity:.18; }

.gv-testi-stars { display:flex; gap:3px; margin-bottom:14px; }
.gv-testi-star  { color:var(--gold); font-size:13px; }

.gv-testi-quote {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 22px;
    padding-top: 8px;
}

.gv-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.gv-testi-avatar {
    width:42px; height:42px;
    border-radius:50%;
    background: var(--black);
    display:flex; align-items:center; justify-content:center;
    font-family:var(--font-display);
    font-size:17px; font-weight:700;
    color:var(--white);
    flex-shrink:0;
}

.gv-testi-name { font-size:14px; font-weight:700; color: var(--text-primary); }
.gv-testi-loc  { font-size:11px; color:var(--gray-400); margin-top:2px; }


/* ══════════════════════════════════════════
   10. BLOG  (H2 → H3 cards)
══════════════════════════════════════════ */
.gv-blogs {
    background: var(--white);
    position: relative;
    padding: 100px 0;
}
.gv-blogs::before {
    content:'';
    position:absolute; top:0; left:0; right:0; height:1px;
    background:linear-gradient(90deg, transparent, rgba(0,0,0,.22), transparent);
}

.gv-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.gv-blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .38s var(--ease-spring), border-color .3s, box-shadow .38s;
}
.gv-blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,0,0,.35);
    box-shadow: 0 20px 52px rgba(0,0,0,.5);
}

.gv-blog-img {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}
.gv-blog-img img {
    width:100%; height:100%;
    object-fit:cover;
    transition:transform .6s var(--ease);
    will-change:transform;
}
.gv-blog-card:hover .gv-blog-img img { transform:scale(1.07); }
.gv-blog-img::after {
    content:'';
    position:absolute; inset:0;
    background:linear-gradient(to top, rgba(22,22,22,.55), transparent);
    opacity:0;
    transition:opacity .4s;
}
.gv-blog-card:hover .gv-blog-img::after { opacity:1; }

.gv-blog-body {
    padding: 24px;
    flex:1;
    display:flex;
    flex-direction:column;
}

.gv-blog-date {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 10px;
}

/* H3 */
.gv-blog-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 10px;
    transition: color .25s;
}
.gv-blog-card:hover .gv-blog-title { color:var(--gold); }

.gv-blog-excerpt {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
    flex:1;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.gv-blog-read {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-top: auto;
    transition: gap .25s;
}
.gv-blog-card:hover .gv-blog-read { gap:12px; }


/* ══════════════════════════════════════════
   11. CTA BANNER
══════════════════════════════════════════ */
.gv-cta-banner {
    position: relative;
    overflow: hidden;
    padding: 120px 28px;
    text-align: center;
}
.gv-cta-banner-bg { position:absolute; inset:0; }
.gv-cta-banner-bg img {
    width:100%; height:100%;
    object-fit:cover;
    transition:transform 22s ease-in-out;
}
.gv-cta-banner:hover .gv-cta-banner-bg img { transform:scale(1.05); }

.gv-cta-banner-overlay {
    position:absolute; inset:0;
    background:linear-gradient(
        to bottom,
        rgba(8,8,8,.72) 0%,
        rgba(8,8,8,.82) 50%,
        rgba(8,8,8,.92) 100%
    );
}
.gv-cta-banner-content { position:relative; z-index:2; }

/* H2 */
.gv-cta-banner-title {
    font-family: var(--font-display);
    font-size: clamp(36px,6vw,76px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.1;
}

.gv-cta-banner-sub {
    font-size: 16px;
    color: rgba(232,232,232,.68);
    margin: 0 auto 40px;
    max-width: 460px;
    line-height: 1.7;
}


/* ══════════════════════════════════════════
   12. NEWSLETTER
══════════════════════════════════════════ */
.gv-newsletter {
    background: var(--bg-muted);
    padding: 84px 0;
    position: relative;
    overflow: hidden;
}
.gv-newsletter::before {
    content:'';
    position:absolute; bottom:-120px; left:-120px;
    width:500px; height:500px; border-radius:50%;
    background:radial-gradient(circle, rgba(0,0,0,.07) 0%, transparent 70%);
    pointer-events:none;
}
.gv-newsletter::after {
    content:'';
    position:absolute; top:-80px; right:-80px;
    width:360px; height:360px; border-radius:50%;
    background:radial-gradient(circle, rgba(0,0,0,.05) 0%, transparent 70%);
    pointer-events:none;
}

.gv-newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.gv-newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gv-newsletter-input {
    flex:1;
    min-width: 200px;
    height: 52px;
    padding: 0 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color .25s, box-shadow .25s;
}
.gv-newsletter-input::placeholder { color:var(--gray-500); }
.gv-newsletter-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(0,0,0,.12);
}

.gv-newsletter-msg {
    display: none;
    margin-top: 10px;
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
}


/* ══════════════════════════════════════════
   13. FAQ
══════════════════════════════════════════ */
.gv-faq {
    background: var(--bg-muted);
    padding: 100px 0 90px;
    position: relative;
    overflow: hidden;
}
.gv-faq::before {
    content:'';
    position:absolute; top:0; left:0; right:0; height:1px;
    background:linear-gradient(90deg, transparent, rgba(0,0,0,.22), transparent);
}
.gv-faq::after {
    content:'';
    position:absolute; bottom:-160px; right:-100px;
    width:500px; height:500px; border-radius:50%;
    background:radial-gradient(circle, rgba(0,0,0,.04) 0%, transparent 70%);
    pointer-events:none;
}

.gv-faq-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 72px;
    align-items: flex-start;
}

.gv-faq-header { position:sticky; top:100px; }

.gv-faq-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    border: 1px solid rgba(0,0,0,.25);
    border-radius: 8px;
    padding: 12px 20px;
    background: rgba(0,0,0,.07);
    transition: background .25s, border-color .25s, transform .3s var(--ease-spring);
}
.gv-faq-cta svg { width:14px; height:14px; }
.gv-faq-cta:hover {
    background: rgba(0,0,0,.14);
    border-color: var(--gold);
    transform: translateX(4px);
}

.gv-faq-list { display:flex; flex-direction:column; }

.gv-faq-item {
    border-bottom: 1px solid rgba(0,0,0,.1);
    transition: background .22s;
}
.gv-faq-item:first-child { border-top:1px solid rgba(0,0,0,.1); }
.gv-faq-item.open { background:rgba(0,0,0,.028); }

.gv-faq-q {
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:22px 4px;
    background:none;
    border:none;
    cursor:pointer;
    text-align:left;
}
.gv-faq-q-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    transition: color .22s;
}
.gv-faq-item.open .gv-faq-q-text,
.gv-faq-q:hover .gv-faq-q-text { color:var(--gold); }

.gv-faq-icon { flex-shrink:0; width:24px; height:24px; position:relative; }
.gv-faq-icon svg { position:absolute; inset:0; width:24px; height:24px; color:var(--gold); }

.gv-icon-plus  { opacity:1; transition:opacity .22s, transform .35s var(--ease); }
.gv-icon-minus { opacity:0; transition:opacity .22s, transform .35s var(--ease); }
.gv-faq-item.open .gv-icon-plus  { opacity:0; transform:rotate(45deg); }
.gv-faq-item.open .gv-icon-minus { opacity:1; }

.gv-faq-a { max-height:0; overflow:hidden; transition:max-height .42s var(--ease); }
.gv-faq-a-inner { padding:0 4px 24px; }
.gv-faq-a-inner p { font-size:13.5px; font-weight:400; color:var(--gray-400); line-height:1.8; }


/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

/* ── 1200px ── */
@media (max-width:1200px) {
    .gv-vehicles-grid { grid-template-columns:repeat(3,1fr); }
    .gv-cats-grid     { gap:12px; }
    .gv-faq-inner     { gap:48px; }
    .gv-hiw-step      { padding:44px 32px; }
    .gv-why-item      { padding:36px 28px; }
}

/* ── 1024px ── */
@media (max-width:1024px) {
    .gv-cats-grid        { grid-template-columns:repeat(3,1fr) !important; }
    .gv-cat-card         { aspect-ratio:16/9; }
    .gv-why-grid         { grid-template-columns:repeat(2,1fr); }
    .gv-newsletter-inner { grid-template-columns:1fr; gap:36px; }
    .gv-faq-inner        { grid-template-columns:1fr; gap:36px; }
    .gv-faq-header       { position:static; }
    .gv-hiw-steps::before { display:none; }
}

/* ── 900px ── */
@media (max-width:900px) {
    .gv-section    { padding:72px 0; }
    .gv-section-sm { padding:52px 0; }
    .gv-container  { padding:0 20px; }

    .gv-hiw-steps { grid-template-columns:1fr; }
    .gv-hiw-step  {
        border-right:none;
        border-bottom:1px solid var(--border);
        padding:40px 32px;
    }
    .gv-hiw-step:last-child { border-bottom:none; }

    .gv-deals-grid { grid-template-columns:1fr; }
    .gv-blogs-grid { grid-template-columns:repeat(2,1fr); }
    .gv-vehicles-grid { grid-template-columns:repeat(2,1fr); }
    .gv-vehicles-header { flex-direction:column; align-items:flex-start; }

    .gv-testi-card { width:300px; padding:24px; }
    .gv-testi-track-outer::before,
    .gv-testi-track-outer::after { width:80px; }
}

/* ── 768px ── */
@media (max-width:768px) {
    .gv-cats-grid { grid-template-columns:repeat(2,1fr) !important; gap:10px; }
    .gv-cat-card  { aspect-ratio:3/4; }
    .gv-why-grid  { grid-template-columns:1fr; }
    .gv-why-item  { padding:32px 24px; }
    .gv-deal-img  { width:140px; }
    .gv-blogs-grid { grid-template-columns:1fr; }
    .gv-cta-banner { padding:80px 20px; }
    .gv-newsletter { padding:64px 0; }
    .gv-testi-card { width:280px; padding:20px; }
}

/* ── 640px ── */
@media (max-width:640px) {
    .gv-section   { padding:60px 0; }
    .gv-container { padding:0 16px; }
    .gv-cats-grid  { grid-template-columns:repeat(2,1fr) !important; gap:8px; }
    .gv-cat-card   { aspect-ratio:16/9; }
    .gv-cat-name   { font-size:10px; letter-spacing:1.5px; }

    .gv-vehicles-grid { grid-template-columns:1fr; }

    .gv-deal-card { flex-direction:column; }
    .gv-deal-img  { width:100%; height:180px; }

    .gv-testi-card { width:260px; padding:18px; }
    .gv-testi-quote { font-size:13px; }
    .gv-testi-track-outer::before,
    .gv-testi-track-outer::after { width:48px; }

    .gv-faq-q      { padding:18px 0; }
    .gv-faq-q-text { font-size:13px; }

    .gv-hiw-step   { padding:32px 20px; }
    .gv-cta-banner { padding:64px 16px; }
}

/* ── 480px ── */
@media (max-width:480px) {
    .gv-cats-grid  { grid-template-columns:repeat(2,1fr) !important; gap:8px; }

    .gv-brands-track-wrap::before,
    .gv-brands-track-wrap::after { width:56px; }

    .gv-testi-track-outer::before,
    .gv-testi-track-outer::after { width:32px; }

    .gv-newsletter-form  { flex-direction:column; }
    .gv-newsletter-input { width:100%; min-width:unset; }
    .gv-newsletter .gv-btn { width:100%; justify-content:center; }

    .gv-stat-num { font-size:clamp(30px,9vw,44px); }
}

/* category filter active state removed — cards are now links */

/* ══════════════════════════════════════════
   VEHICLE CARD — WhatsApp + Call buttons
══════════════════════════════════════════ */
.gv-vcard-contact {
    display: flex;
    gap: 8px;
    padding: 0 0 16px;
}

.gv-vcard-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background .22s, border-color .22s, transform .22s;
    white-space: nowrap;
    font-family: inherit;
}
.gv-vcard-contact-btn svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}
.gv-vcard-contact-btn:hover { transform: translateY(-2px); }

.gv-vcard-contact-call {
    background: rgba(0,0,0,.09);
    border-color: rgba(0,0,0,.32);
    color: var(--gold);
}
.gv-vcard-contact-call:hover {
    background: rgba(0,0,0,.18);
    border-color: var(--gold);
}

.gv-vcard-contact-wa {
    background: rgba(37,211,102,.1);
    border-color: rgba(37,211,102,.32);
    color: #25D366;
}
.gv-vcard-contact-wa:hover {
    background: rgba(37,211,102,.18);
    border-color: #25D366;
}

/* ══════════════════════════════════════════
   VEHICLE GRID — default hidden + view-all
══════════════════════════════════════════ */
.gv-vcard--hidden { display: none; }

.gv-vehicles-view-all {
    text-align: center;
    margin-top: 48px;
}

/* ══════════════════════════════════════════
   MOBILE ANIMATIONS & TOUCH STATES
══════════════════════════════════════════ */

/* ── Touch active feedback (replaces hover on touch devices) ── */
@media (max-width:768px) {
    .gv-cat-card:active          { transform: scale(0.96) !important; transition-duration:.1s !important; }
    .gv-btn:active               { transform: scale(0.96) !important; transition-duration:.1s !important; }
    .gv-btn-outline:active       { transform: scale(0.96) !important; transition-duration:.1s !important; }
    .gv-vcard-contact-btn:active { transform: scale(0.93) !important; opacity:.72; transition-duration:.1s !important; }
    .gv-brand-card:active        { transform: scale(0.94) !important; box-shadow: 0 4px 16px rgba(0,0,0,.14); }
    .gv-vcard:active             { transform: translateY(-4px); border-color: rgba(0,0,0,.3); }
    .gv-deal-card:active         { transform: translateY(-3px); border-color: rgba(0,0,0,.4); }
    .gv-blog-card:active         { transform: translateY(-4px); border-color: rgba(0,0,0,.35); }
}

/* ── WhatsApp pulse (mobile) ── */
@keyframes gvWaPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
    60%     { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}
@media (max-width:768px) {
    .gv-vcard-contact-wa { animation: gvWaPulse 2.8s ease-in-out infinite; }
}

/* ── Enhanced card entrance on mobile (scale + fade) ── */
@media (max-width:768px) {
    .gv-reveal       { transform: translateY(32px) scale(0.96); }
    .gv-reveal.gv-visible { transform: translateY(0) scale(1); }
    .gv-reveal-left  { transform: translateX(-28px) scale(0.97); }
    .gv-reveal-right { transform: translateX(28px) scale(0.97); }
    .gv-reveal-left.gv-visible,
    .gv-reveal-right.gv-visible { transform: none; }
}

/* ── Section heading underline draw (on scroll reveal) ── */
.gv-section-title { position: relative; }
.gv-section-title::after {
    content: '';
    position: absolute;
    bottom: -7px; left: 0;
    height: 2px;
    width: 48px;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .65s var(--ease) .4s;
    pointer-events: none;
    border-radius: 1px;
}
.gv-reveal.gv-visible .gv-section-title::after { transform: scaleX(1); }
.gv-section-title.gv-visible::after { transform: scaleX(1); }


/* ════════════════════════════════════════════════════════
   INSTAGRAM FEED SECTION  (ig-)
════════════════════════════════════════════════════════ */
.ig-section {
    background: var(--white);
    padding: 80px 5%;
}
.ig-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.ig-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.ig-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}
.ig-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ig-avatar-inner {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ig-avatar-inner img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}
.ig-handle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}
.ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1.5px solid var(--text-primary);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: background .25s var(--ease), color .25s var(--ease);
}
.ig-follow-btn:hover {
    background: var(--text-primary);
    color: var(--white);
}
.ig-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
/* Single-row reel grid */
.ig-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}
.ig-grid::-webkit-scrollbar { height: 4px; }
.ig-grid::-webkit-scrollbar-track { background: transparent; }
.ig-grid::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 2px; }
.ig-card {
    flex: 0 0 calc(20% - 13px);
    min-width: 180px;
    aspect-ratio: 9 / 16;
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
    background: var(--gray-800);
    cursor: pointer;
}
.ig-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s var(--ease);
}
.ig-card:hover .ig-card-img {
    transform: scale(1.06);
}
.ig-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-800);
}
.ig-card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ig-card-badge svg {
    width: 18px;
    height: 18px;
    color: #111;
}
/* Instagram reel modal */
.ig-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    z-index: 9990;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ig-modal-overlay.ig-open {
    display: flex;
}
.ig-modal-box {
    position: relative;
    width: 400px;
    max-width: min(400px, 96vw);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    overflow-x: hidden;
    background: #fff;
    scrollbar-width: none;
}
.ig-modal-box::-webkit-scrollbar { display: none; }
.ig-modal-close {
    position: fixed;
    top: 16px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background .2s;
    z-index: 9991;
}
.ig-modal-close:hover { background: rgba(255, 255, 255, 0.28); }
#ig-modal-embed { min-height: 200px; }
#ig-modal-embed .instagram-media { margin: 0 !important; min-width: 0 !important; width: 100% !important; }
@media (max-width: 600px) {
    .ig-section { padding: 60px 5%; }
    .ig-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .ig-card { min-width: 160px; }
}

/* ════════════════════════════════════════════════════════
   FAQ SECTION  (faq-)
════════════════════════════════════════════════════════ */
.faq-section {
    background-color: #e8e8e8;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 88px 5% 72px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
/* Light overlay so cards stay crisp over the image */
.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(235, 235, 235, 0.78);
    z-index: 0;
}
.faq-inner {
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Title */
.faq-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 56px;
}
.faq-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    margin: 14px auto 0;
}

/* Row: card + toggle button */
.faq-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

/* Card */
.faq-card {
    flex: 1;
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 1px 8px rgba(0,0,0,.1);
    transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.faq-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.faq-item--open .faq-card {
    background: var(--black);
    box-shadow: 0 8px 36px rgba(0,0,0,.3);
}

/* Question row */
.faq-q-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 28px;
}
.faq-num {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--gray-400);
    min-width: 26px;
    flex-shrink: 0;
    transition: color .35s var(--ease);
}
.faq-item--open .faq-num { color: rgba(255,255,255,.45); }
.faq-qtext {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    transition: color .35s var(--ease);
}
.faq-item--open .faq-qtext { color: var(--white); }

/* Answer */
.faq-answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0 28px 0 72px;
    transition: max-height .45s var(--ease), opacity .3s var(--ease), padding .3s var(--ease);
}
.faq-item--open .faq-answer {
    opacity: 1;
    padding: 0 28px 26px 72px;
}
.faq-answer p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,.75);
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 16px;
}

/* Circular toggle button */
.faq-toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 10px;
    color: var(--text-primary);
    box-shadow: 0 1px 6px rgba(0,0,0,.12);
    transition: background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.faq-toggle:hover { box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.faq-toggle svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}
.faq-item--open .faq-toggle {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,.35);
}
.faq-vline { transition: opacity .25s var(--ease); }
.faq-item--open .faq-vline { opacity: 0; }

/* ══════════════════════════════════════════════════════════
   SEO CONTENT — plain editorial block (H2 / p / ul)
   ══════════════════════════════════════════════════════════ */

    .suv-seo-section {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--border);
}
.suv-seo-body {
    max-width: 100%;
}
.suv-seo-body > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 20px;
}
.suv-seo-body h2 {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 44px 0 14px;
}
.suv-seo-body h2:first-of-type { margin-top: 28px; }

.suv-seo-body h3 {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 44px 0 14px;
}

.suv-seo-body ul {
    margin: 0 0 20px 0;
    padding-left: 22px;
    display: flex; flex-direction: column; gap: 10px;
}
.suv-seo-body ul li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 4px;
}

.wrap {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .faq-section { padding: 64px 5% 52px; }
    .faq-answer { padding: 0 20px 0 60px; }
    .faq-item--open .faq-answer { padding: 0 20px 22px 60px; }
    .faq-q-row { padding: 18px 22px; }
}
@media (max-width: 480px) {
    .faq-section { padding: 52px 4% 40px; }
    .faq-q-row { gap: 14px; padding: 16px 18px; }
    .faq-num { font-size: 13px; }
    .faq-qtext { font-size: 14px; }
    .faq-toggle { width: 44px; height: 44px; margin-top: 8px; }
    .faq-answer { padding: 0 16px 0 50px; }
    .faq-item--open .faq-answer { padding: 0 16px 18px 50px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion:reduce) {
    *, *::before, *::after {
        animation-duration:.01ms !important;
        transition-duration:.01ms !important;
    }
    .gv-hero-video { display: none; }
    .gv-hero-video-fallback { z-index: 1; }
}
