﻿:root {
    --vc-bg: #080808;
    --vc-bg-soft: #101010;
    --vc-panel: #141414;
    --vc-panel-2: #1a1a1a;

    --vc-text: #f4f4f4;
    --vc-muted: #a6a6a6;
    --vc-line: rgba(255,255,255,.10);

    --vc-red: #e3262e;
    --vc-red-dark: #a9151b;

    --vc-radius: 14px;
    --vc-width: 1480px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--vc-bg);
    color: var(--vc-text);
    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;
    line-height: 1.5;
}

body:not(.vc-loaded) {
    opacity: .98;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================================
   HEADER
   ========================================= */

.vc-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(7,7,7,.92);
    border-bottom: 1px solid var(--vc-line);
    backdrop-filter: blur(18px);
}

.vc-header-inner {
    width: min(calc(100% - 48px), var(--vc-width));
    min-height: 76px;
    margin: auto;

    display: flex;
    align-items: center;
    gap: 38px;
}

.vc-brand {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}

.vc-logo {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -3px;
}

.vc-logo::after {
    content: "";
    display: inline-block;

    width: 8px;
    height: 8px;

    margin-left: 6px;

    background: var(--vc-red);
    border-radius: 50%;
}

.vc-brand-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.vc-brand-name strong {
    color: var(--vc-red);
}

.vc-nav {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 28px;
}

.vc-nav a {
    position: relative;

    padding: 28px 0 25px;

    color: #d0d0d0;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.vc-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    right: 100%;
    bottom: 18px;

    height: 2px;

    background: var(--vc-red);

    transition: right .2s ease;
}

.vc-nav a:hover {
    color: white;
}

.vc-nav a:hover::after {
    right: 0;
}

.vc-menu-button {
    display: none;
}


/* =========================================
   MODULE SYSTEM
   ========================================= */

.vc-module {
    position: relative;
    min-height: 1px;
}

.vc-module:empty {
    min-height: 0;
}


/* =========================================
   HERO
   ========================================= */

.car-hero {
    background: var(--vc-bg);
}

.car-hero-bg {
    position: relative;

    min-height: 690px;

    background-color: #0c0c0c;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    overflow: hidden;
}

.car-hero-bg::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 60% 45%,
            rgba(255,255,255,.04),
            transparent 42%
        );
}

.car-hero-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.68) 29%,
            rgba(0,0,0,.18) 58%,
            rgba(0,0,0,.45) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.72) 0%,
            transparent 38%
        );
}

.car-hero-content {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 64px), var(--vc-width));
    min-height: 690px;
    margin: auto;

    display: grid;
    grid-template-columns:
        minmax(330px, 430px)
        1fr
        minmax(245px, 290px);

    align-items: center;
    gap: 30px;
}


/* LEFT INFORMATION */

.car-hero-info {
    grid-column: 1;
    padding: 60px 0;
}

.vc-kicker {
    margin-bottom: 13px;

    color: var(--vc-red);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.2px;
}

.car-hero-info h1 {
    margin: 0 0 24px;

    font-size: clamp(44px, 5vw, 74px);
    line-height: .95;
    letter-spacing: -3px;
}

.car-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));

    margin-bottom: 25px;

    border-top: 1px solid var(--vc-line);
    border-left: 1px solid var(--vc-line);
}

.car-meta > span {
    min-height: 68px;
    padding: 13px 15px;

    border-right: 1px solid var(--vc-line);
    border-bottom: 1px solid var(--vc-line);
}

.car-meta strong,
.car-meta small {
    display: block;
}

.car-meta strong {
    min-height: 22px;

    font-size: 15px;
    font-weight: 700;
}

.car-meta small {
    margin-top: 4px;

    color: var(--vc-muted);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.car-meta .vc-empty strong {
    visibility: hidden;
}

.car-meta .vc-empty {
    opacity: .28;
}

.car-hero-description {
    max-width: 390px;
    min-height: 24px;

    margin: 0 0 24px;

    color: #c8c8c8;

    font-size: 14px;
}

.car-price {
    min-height: 70px;

    margin-bottom: 25px;
}

.car-price small {
    display: block;

    margin-bottom: 2px;

    color: var(--vc-muted);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.car-price strong {
    font-size: 32px;
    font-weight: 800;
}

.car-price.vc-empty {
    visibility: hidden;
}


/* BUTTONS */

.car-actions {
    min-height: 46px;

    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.vc-button {
    min-height: 42px;
    padding: 0 17px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.20);
    border-radius: 4px;

    background: rgba(10,10,10,.65);
    color: white;

    font: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;

    cursor: pointer;

    transition:
        background .18s ease,
        border-color .18s ease,
        transform .18s ease;
}

.vc-button:hover {
    border-color: rgba(255,255,255,.5);
    background: #202020;
    transform: translateY(-1px);
}

.vc-button-primary {
    border-color: var(--vc-red);
    background: var(--vc-red);
}

.vc-button-primary:hover {
    border-color: var(--vc-red);
    background: var(--vc-red-dark);
}

[hidden] {
    display: none !important;
}


/* =========================================
   VERIFICATION CARD
   ========================================= */

.car-verification {
    grid-column: 3;

    padding: 22px;

    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--vc-radius);

    background: rgba(8,8,8,.74);
    backdrop-filter: blur(12px);

    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.verify-title {
    margin-bottom: 16px;
    padding-bottom: 13px;

    border-bottom: 1px solid var(--vc-line);

    color: #ddd;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.verify-item {
    display: grid;
    grid-template-columns: 27px 1fr;
    gap: 10px;

    padding: 11px 0;
}

.verify-item > span {
    width: 23px;
    height: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(227,38,46,.65);
    border-radius: 50%;

    color: var(--vc-red);

    font-size: 12px;
    font-weight: 900;
}

.verify-item strong,
.verify-item small {
    display: block;
}

.verify-item strong {
    margin-bottom: 2px;

    font-size: 10px;
    letter-spacing: .8px;
}

.verify-item small {
    color: var(--vc-muted);

    font-size: 10px;
}


/* =========================================
   PHOTO STRIP
   ========================================= */

.car-photo-strip {
    width: min(calc(100% - 48px), var(--vc-width));
    margin: 20px auto 48px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.photo-slot {
    position: relative;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    border: 1px solid var(--vc-line);
    border-radius: 8px;

    background:
        linear-gradient(
            135deg,
            #151515,
            #0b0b0b
        );
}

.photo-slot img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.photo-placeholder {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(255,255,255,.13);

    font-size: clamp(28px, 4vw, 54px);
    font-weight: 900;
    letter-spacing: -4px;
}


/* =========================================
   FOOTER
   ========================================= */

.vc-footer {
    margin-top: 40px;

    border-top: 1px solid var(--vc-line);

    background: #050505;
}

.vc-footer-inner {
    width: min(calc(100% - 48px), var(--vc-width));
    min-height: 100px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    color: #777;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.vc-footer-tagline {
    color: #aaa;
}


/* =========================================
   SAFETY / STABILITY
   ========================================= */

.vc-empty {
    pointer-events: none;
}

#buyer-pack[data-enabled="false"]:empty {
    display: none;
}

/* =========================================================
   VERIFIED CARS — DETAILS MODULE
   ========================================================= */

.vc-details {
    width: min(calc(100% - 48px), var(--vc-width));
    margin: 0 auto;
    padding: 100px 0;
}

.vc-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 42px;
}

.vc-section-head h2 {
    margin: 8px 0 12px;
    font-size: clamp(36px, 5vw, 64px);
    line-height: .95;
    letter-spacing: -3px;
}

.vc-section-head p {
    max-width: 620px;
    margin: 0;
    color: #8d8d8d;
    font-size: 14px;
    line-height: 1.7;
}

.vc-kicker {
    color: var(--vc-red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.vc-card {
    position: relative;
    min-height: 330px;
    padding: 34px;
    border: 1px solid var(--vc-line);
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.008)
        );
    overflow: hidden;
}

.vc-card-number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: #343434;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -3px;
}

.vc-card h3 {
    margin: 0 0 30px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.vc-card-text {
    max-width: 440px;
    margin: 0 0 30px;
    color: #898989;
    font-size: 13px;
    line-height: 1.7;
}

.vc-data-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--vc-line);
    border-left: 1px solid var(--vc-line);
}

.vc-data-list > div {
    min-height: 76px;
    padding: 17px;
    border-right: 1px solid var(--vc-line);
    border-bottom: 1px solid var(--vc-line);
}

.vc-data-list span {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.vc-data-list strong {
    color: #eee;
    font-size: 12px;
}

.vc-status-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--vc-line);
}

.vc-status-list > div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    border-bottom: 1px solid var(--vc-line);
    color: #b8b8b8;
    font-size: 11px;
    font-weight: 700;
}

.vc-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--vc-red);
    box-shadow: 0 0 12px rgba(210, 31, 38, .45);
}

.vc-condition-placeholder {
    min-height: 110px;
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px dashed #292929;
    color: #555;
    font-size: 11px;
    line-height: 1.6;
}

.vc-history-line {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 15px;
    align-items: start;
    margin-top: 34px;
}

.vc-history-line > span {
    width: 30px;
    height: 2px;
    margin-top: 8px;
    background: var(--vc-red);
}

.vc-history-line p {
    margin: 0;
    max-width: 390px;
    color: #777;
    font-size: 11px;
    line-height: 1.7;
}

@media (max-width: 760px) {

    .vc-details {
        width: calc(100% - 24px);
        padding: 70px 0;
    }

    .vc-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .vc-section-head h2 {
        letter-spacing: -2px;
    }

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

    .vc-card {
        min-height: 0;
        padding: 26px 20px;
    }

    .vc-card-number {
        top: 22px;
        right: 20px;
        font-size: 32px;
    }
}


/* =========================================================
   VERIFIED CARS — RIGHT FOR YOU
   ========================================================= */

.vc-right-for-you {
    width: min(calc(100% - 48px), var(--vc-width));
    margin: 0 auto;
    padding: 100px 0;
}

.rfy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.rfy-main {
    grid-row: span 2;
}

.rfy-points {
    display: grid;
    margin-top: 35px;
    border-top: 1px solid var(--vc-line);
}

.rfy-points > div {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--vc-line);
}

.rfy-points strong {
    color: #ddd;
    font-size: 9px;
    letter-spacing: 1px;
}

.rfy-points span {
    color: #777;
    font-size: 11px;
    line-height: 1.6;
}

.rfy-big-value {
    margin: 35px 0 25px;
}

.rfy-big-value strong {
    display: block;
    color: #eee;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -3px;
}

.rfy-big-value span {
    display: block;
    margin-top: 10px;
    color: #555;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.rfy-cost-slots {
    border-top: 1px solid var(--vc-line);
}

.rfy-cost-slots > div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--vc-line);
    font-size: 10px;
}

.rfy-cost-slots span {
    color: #666;
}

.rfy-cost-slots strong {
    color: #bbb;
    font-weight: 700;
}

.rfy-disabled {
    display: inline-flex;
    margin-top: 20px;
    padding: 10px 13px;
    border: 1px solid #292929;
    color: #555;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.3px;
}

body:not(.finance-enabled) .rfy-finance {
    opacity: .38;
}

@media (max-width: 760px) {

    .vc-right-for-you {
        width: calc(100% - 24px);
        padding: 70px 0;
    }

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

    .rfy-main {
        grid-row: auto;
    }

    .rfy-points > div {
        grid-template-columns: 1fr;
        gap: 7px;
    }
}


/* =========================================================
   VERIFIED CARS — ABOUT ME
   ========================================================= */

.vc-about {
    width: min(calc(100% - 48px), var(--vc-width));
    margin: 0 auto;
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns:
        minmax(280px, .85fr)
        minmax(0, 1.15fr);

    gap: 10px;
}

.about-photo-card,
.about-tech-card {
    min-height: 360px;

    border: 1px solid var(--vc-line);

    background: #0f0f0f;

    overflow: hidden;
}

.about-photo-slot,
.about-tech-slot {
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 360px;

    overflow: hidden;
}

.about-photo-slot img,
.about-tech-slot img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-tech-slot img {
    object-fit: contain;

    padding: 20px;

    background:
        radial-gradient(
            circle at center,
            rgba(35,77,120,.12),
            transparent 58%
        ),
        #090909;
}

.about-profile {
    min-height: 360px;
}

.about-points {
    display: grid;

    margin-top: 30px;

    border-top: 1px solid var(--vc-line);
}

.about-points > div {
    display: grid;
    grid-template-columns: 120px 1fr;

    gap: 18px;

    padding: 17px 0;

    border-bottom: 1px solid var(--vc-line);
}

.about-points strong {
    color: #d6d6d6;

    font-size: 9px;
    letter-spacing: 1px;
}

.about-points span {
    color: #777;

    font-size: 11px;
    line-height: 1.6;
}

.about-tech-card {
    min-height: 320px;
}

.about-tech-slot {
    min-height: 320px;
}

.about-philosophy {
    min-height: 320px;
}

.about-statement {
    margin-top: 40px;
}

.about-statement p {
    margin: 0 0 14px;

    color: #999;

    font-size: 18px;
    line-height: 1.45;
}

.about-statement .about-highlight {
    max-width: 500px;

    color: white;

    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.15;

    letter-spacing: -1px;
}

.about-values {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-top: 30px;
}

.about-values span {
    padding: 9px 12px;

    border: 1px solid var(--vc-line);

    color: #777;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: .7px;
}

@media (max-width: 760px) {

    .vc-about {
        width: calc(100% - 24px);
        padding: 70px 0;
    }

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

    .about-photo-slot,
    .about-tech-slot {
        min-height: 300px;
    }

    .about-points > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .about-statement {
        margin-top: 25px;
    }
}


/* =========================================================
   VERIFIED CARS — BUYER PACK
   ========================================================= */

.vc-buyer-pack {
    width: min(calc(100% - 48px), var(--vc-width));
    margin: 0 auto;
    padding: 100px 0 130px;
}

.buyer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.buyer-intro {
    min-height: 360px;
}

.buyer-lead {
    max-width: 530px;
    margin: 38px 0 18px;

    color: #e5e5e5;

    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.7px;
}

.buyer-items {
    display: grid;

    margin-top: 28px;

    border-top: 1px solid var(--vc-line);
}

.buyer-items > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 13px;

    align-items: center;

    min-height: 48px;

    border-bottom: 1px solid var(--vc-line);
}

.buyer-items span {
    color: var(--vc-red);

    font-size: 8px;
    font-weight: 900;
}

.buyer-items strong {
    color: #aaa;

    font-size: 10px;
    font-weight: 700;
}

.buyer-access {
    position: relative;
}

.buyer-lock {
    position: absolute;

    right: 32px;
    bottom: 24px;

    color: rgba(255,255,255,.035);

    font-size: 100px;
    font-weight: 900;
    letter-spacing: -9px;

    pointer-events: none;
}

#buyer-pack[data-enabled="false"] .buyer-access {
    border-color: rgba(227,38,46,.20);
}

@media (max-width: 760px) {

    .vc-buyer-pack {
        width: calc(100% - 24px);
        padding: 70px 0 90px;
    }

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

    .buyer-lead {
        margin-top: 25px;
    }
}


/* VERIFIED CARS - HERO ZOOM TWEAK */
.car-hero-bg {
    background-position: 58% center;
    background-size: 112% auto;
}

/* VERIFIED CARS - HERO BRIGHTER / CLEANER */
.car-hero {
    min-height: 720px;
}

.car-hero-bg {
    background-position: 72% center;
    background-size: cover;
}

.car-hero-shade {
    background:
        linear-gradient(90deg,
            rgba(0,0,0,.62) 0%,
            rgba(0,0,0,.42) 26%,
            rgba(0,0,0,.18) 58%,
            rgba(0,0,0,.08) 100%);
}

.car-hero-content {
    align-items: end;
}

.car-hero-info {
    max-width: 320px;
    padding: 24px 22px 20px;
    background: linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.16) 100%);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(2px);
}

.car-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 260px;
}

.car-meta span {
    display: block;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.car-meta span strong,
.car-meta span small {
    display: block;
}

.car-actions {
    margin-top: 18px;
}

.car-actions .vc-button {
    background: rgba(0,0,0,.18);
    border-color: rgba(255,255,255,.28);
}

/* =========================================================
   VERIFIED CARS - HERO CLEAN V2
   ========================================================= */

.car-hero {
    min-height: 700px !important;
}

/* Show substantially more of the original hero image */
.car-hero-bg {
    background-size: 100% auto !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #050505 !important;
}

/* Much lighter image treatment */
.car-hero-shade {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.40) 0%,
            rgba(0,0,0,.22) 18%,
            rgba(0,0,0,.08) 42%,
            rgba(0,0,0,.02) 72%,
            rgba(0,0,0,.00) 100%
        ) !important;
}

/* NO PANEL behind vehicle information */
.car-hero-info {
    width: 220px !important;
    max-width: 220px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

/* Compact single list */
.car-meta {
    width: 190px !important;
    max-width: 190px !important;
    gap: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

.car-meta > span {
    padding: 7px 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.10) !important;
}

.car-meta > span:last-child {
    border-bottom: 0 !important;
}

/* Keep text close to left edge */
.car-hero-content {
    padding-left: max(28px, calc((100vw - 1280px) / 2)) !important;
}

.car-actions {
    margin-top: 18px !important;
}

/* VERIFIED CARS - META TIGHTEN */
.car-meta > span {
    padding-top: 4px !important;
    padding-bottom: 5px !important;
}

.car-meta strong {
    margin-bottom: 1px !important;
    line-height: 1.05 !important;
}

.car-meta small {
    line-height: 1.0 !important;
}

/* VERIFIED CARS - PREMIUM HERO TITLE */

.vc-kicker {
    display: inline-block;
    padding: 7px 12px;
    border: 1px solid rgba(255, 60, 60, 0.55);
    border-radius: 999px;
    background: rgba(20, 20, 20, 0.34);
    color: #ff4d4d;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 10px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.03) inset,
        0 8px 24px rgba(0,0,0,0.22);
    backdrop-filter: blur(5px);
}

.car-hero-info h1 {
    font-style: italic;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 0.95;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #e7e7e7 58%,
        #bcbcbc 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    -webkit-text-stroke: 1px rgba(255,255,255,0.08);

    text-shadow:
        0 2px 0 rgba(255,255,255,0.08),
        0 10px 26px rgba(0,0,0,0.42);

    transform: skewX(-5deg);
}

/* =========================================================
   VERIFIED CARS - PREMIUM 3D HEADER BRAND
   ========================================================= */

.vc-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
}

/* VC mark */
.vc-logo {
    position: relative !important;
    display: inline-block !important;

    font-style: italic !important;
    font-weight: 900 !important;
    letter-spacing: -0.07em !important;
    line-height: 1 !important;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #eeeeee 48%,
        #b9b9b9 100%
    ) !important;

    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;

    -webkit-text-stroke: 1px rgba(255,255,255,.08) !important;

    text-shadow:
        0 2px 0 rgba(255,255,255,.08),
        0 5px 0 rgba(0,0,0,.32),
        0 9px 18px rgba(0,0,0,.46) !important;

    transform: skewX(-6deg) !important;
}

/* red verification dot */
.vc-logo::after {
    content: "" !important;
    position: absolute !important;

    width: 8px !important;
    height: 8px !important;

    right: -12px !important;
    bottom: 4px !important;

    border-radius: 50% !important;

    background: linear-gradient(
        180deg,
        #ff5151 0%,
        #d71920 100%
    ) !important;

    box-shadow:
        0 0 0 1px rgba(255,80,80,.25),
        0 3px 7px rgba(215,25,32,.38) !important;
}

/* VERIFIED CARS */
.vc-brand-name {
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 4px !important;

    font-style: italic !important;
    font-weight: 750 !important;
    letter-spacing: .08em !important;

    color: #e9e9e9 !important;

    text-shadow:
        0 1px 0 rgba(255,255,255,.10),
        0 3px 8px rgba(0,0,0,.40) !important;

    transform: skewX(-4deg) !important;
}

/* red CARS */
.vc-brand-name strong {
    font-weight: 850 !important;

    background: linear-gradient(
        180deg,
        #ff6666 0%,
        #e22b32 55%,
        #a90f15 100%
    ) !important;

    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;

    -webkit-text-stroke: .4px rgba(255,80,80,.20) !important;

    text-shadow:
        0 2px 8px rgba(200,20,25,.18) !important;
}


/* MOBILE - slightly calmer */
@media (max-width: 768px) {

    .vc-brand {
        gap: 10px !important;
    }

    .vc-logo {
        transform: skewX(-5deg) !important;
    }

    .vc-logo::after {
        width: 7px !important;
        height: 7px !important;
        right: -10px !important;
    }

    .vc-brand-name {
        transform: skewX(-3deg) !important;
        letter-spacing: .07em !important;
    }
}


/* =========================================================
   VERIFIED CARS - DETAILS PREMIUM TUNE
   ========================================================= */

/* Main DETAILS title */
.vc-details .vc-section-head h2 {
    font-style: italic !important;
    font-weight: 850 !important;
    letter-spacing: -0.045em !important;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #ececec 54%,
        #bdbdbd 100%
    ) !important;

    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;

    -webkit-text-stroke: 1px rgba(255,255,255,.06) !important;

    text-shadow:
        0 2px 0 rgba(255,255,255,.07),
        0 8px 22px rgba(0,0,0,.42) !important;

    transform: skewX(-4deg) !important;
}

/* Keep section description readable */
.vc-details .vc-section-head p {
    color: #9a9a9a !important;
    max-width: 650px !important;
}

/* Cards - slightly more premium */
.vc-details .vc-card {
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.022) 0%,
            rgba(255,255,255,.008) 100%
        ) !important;

    border-color: rgba(255,255,255,.10) !important;

    box-shadow:
        0 18px 40px rgba(0,0,0,.16),
        inset 0 1px 0 rgba(255,255,255,.025) !important;
}

/* Card headings */
.vc-details .vc-card h3 {
    font-style: italic !important;
    font-weight: 800 !important;
    letter-spacing: .035em !important;

    color: #f0f0f0 !important;

    text-shadow:
        0 1px 0 rgba(255,255,255,.05),
        0 4px 12px rgba(0,0,0,.40) !important;

    transform: skewX(-3deg) !important;
}

/* Section numbers - less military, more editorial/design */
.vc-details .vc-card-number {
    top: 28px !important;
    right: 28px !important;

    font-style: italic !important;
    font-weight: 300 !important;
    font-size: 38px !important;
    line-height: 1 !important;
    letter-spacing: -0.04em !important;

    color: rgba(255,255,255,.13) !important;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,.24) 0%,
        rgba(255,255,255,.07) 100%
    ) !important;

    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;

    text-shadow:
        0 4px 14px rgba(0,0,0,.30) !important;

    transform: skewX(-8deg) !important;
}

/* Add a small red accent to numbers */
.vc-details .vc-card-number::after {
    content: "" !important;
    display: block !important;
    width: 18px !important;
    height: 1px !important;
    margin-top: 6px !important;
    margin-left: auto !important;

    background: linear-gradient(
        90deg,
        rgba(215,31,38,0),
        rgba(215,31,38,.80)
    ) !important;
}

/* Data labels */
.vc-details .vc-data-list span {
    color: #707070 !important;
    letter-spacing: .12em !important;
}

/* Data values */
.vc-details .vc-data-list strong {
    color: #f1f1f1 !important;
    text-shadow: 0 2px 8px rgba(0,0,0,.34) !important;
}

/* Status rows */
.vc-details .vc-status-list > div {
    transition:
        background .18s ease,
        transform .18s ease !important;
}

.vc-details .vc-status-list > div:hover {
    background: rgba(255,255,255,.018) !important;
    transform: translateX(2px) !important;
}

/* Status dots - more polished */
.vc-details .vc-status-dot {
    box-shadow:
        0 0 0 1px rgba(215,31,38,.22),
        0 0 12px rgba(215,31,38,.34) !important;
}

/* Card body text remains calm/readable */
.vc-details .vc-card-text,
.vc-details .vc-history-line p,
.vc-details .vc-condition-placeholder {
    color: #8f8f8f !important;
}

/* Mobile refinement */
@media (max-width: 760px) {

    .vc-details .vc-section-head h2 {
        transform: skewX(-3deg) !important;
    }

    .vc-details .vc-card h3 {
        transform: skewX(-2deg) !important;
    }

    .vc-details .vc-card-number {
        top: 20px !important;
        right: 18px !important;
        font-size: 32px !important;
    }
}
   /* VEHICLE card as premium list instead of table */
.vc-spec-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.vc-spec-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.vc-spec-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.vc-spec-label {
    color: #b8b8b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vc-spec-value {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.vc-spec-row .vc-status-dot {
    flex: 0 0 auto;
}


/* =========================================================
   VERIFIED CARS - PREMIUM SITE MODULES
   RIGHT FOR YOU / ABOUT ME / BUYER PACK
   ========================================================= */


/* ---------------------------------------------------------
   MAIN SECTION TITLES
   --------------------------------------------------------- */

.vc-right-for-you .vc-section-head h2,
.vc-about .vc-section-head h2,
.vc-buyer-pack .vc-section-head h2 {

    font-style: italic !important;
    font-weight: 850 !important;
    letter-spacing: -0.045em !important;
    line-height: .95 !important;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #ececec 54%,
        #bdbdbd 100%
    ) !important;

    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;

    -webkit-text-stroke: 1px rgba(255,255,255,.06) !important;

    text-shadow:
        0 2px 0 rgba(255,255,255,.07),
        0 8px 22px rgba(0,0,0,.42) !important;

    transform: skewX(-4deg) !important;
}


/* ---------------------------------------------------------
   SECTION DESCRIPTION
   --------------------------------------------------------- */

.vc-right-for-you .vc-section-head p,
.vc-about .vc-section-head p,
.vc-buyer-pack .vc-section-head p {

    color: #9a9a9a !important;
    max-width: 650px !important;
    line-height: 1.7 !important;
}


/* ---------------------------------------------------------
   PREMIUM CARDS
   --------------------------------------------------------- */

.vc-right-for-you .vc-card,
.vc-about .vc-card,
.vc-buyer-pack .vc-card {

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.024) 0%,
            rgba(255,255,255,.008) 100%
        ) !important;

    border-color: rgba(255,255,255,.10) !important;

    box-shadow:
        0 18px 40px rgba(0,0,0,.16),
        inset 0 1px 0 rgba(255,255,255,.025) !important;
}


/* ---------------------------------------------------------
   CARD TITLES
   --------------------------------------------------------- */

.vc-right-for-you .vc-card h3,
.vc-about .vc-card h3,
.vc-buyer-pack .vc-card h3 {

    font-style: italic !important;
    font-weight: 800 !important;
    letter-spacing: .035em !important;

    color: #f0f0f0 !important;

    text-shadow:
        0 1px 0 rgba(255,255,255,.05),
        0 4px 12px rgba(0,0,0,.40) !important;

    transform: skewX(-3deg) !important;
}


/* ---------------------------------------------------------
   CARD NUMBERS 01 / 02 / 03 / 04
   --------------------------------------------------------- */

.vc-right-for-you .vc-card-number,
.vc-about .vc-card-number,
.vc-buyer-pack .vc-card-number {

    top: 28px !important;
    right: 28px !important;

    font-style: italic !important;
    font-weight: 300 !important;
    font-size: 38px !important;

    line-height: 1 !important;
    letter-spacing: -0.04em !important;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,.24) 0%,
        rgba(255,255,255,.06) 100%
    ) !important;

    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;

    text-shadow:
        0 4px 14px rgba(0,0,0,.30) !important;

    transform: skewX(-8deg) !important;
}


/* Red accent under number */

.vc-right-for-you .vc-card-number::after,
.vc-about .vc-card-number::after,
.vc-buyer-pack .vc-card-number::after {

    content: "" !important;

    display: block !important;

    width: 18px !important;
    height: 1px !important;

    margin-top: 6px !important;
    margin-left: auto !important;

    background: linear-gradient(
        90deg,
        rgba(215,31,38,0),
        rgba(215,31,38,.80)
    ) !important;
}


/* ---------------------------------------------------------
   BODY COPY
   --------------------------------------------------------- */

.vc-right-for-you .vc-card-text,
.vc-about .vc-card-text,
.vc-buyer-pack .vc-card-text {

    color: #969696 !important;
    line-height: 1.72 !important;
}


/* =========================================================
   RIGHT FOR YOU
   ========================================================= */

.rfy-big-value strong {

    font-style: italic !important;
    font-weight: 850 !important;
    letter-spacing: -0.045em !important;

    background: linear-gradient(
        180deg,
        #ffffff,
        #d0d0d0
    ) !important;

    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;

    text-shadow:
        0 2px 0 rgba(255,255,255,.05),
        0 8px 20px rgba(0,0,0,.40) !important;

    transform: skewX(-4deg) !important;
}

.rfy-points strong,
.rfy-cost-slots strong {

    color: #ededed !important;
}

.rfy-points span,
.rfy-cost-slots span {

    color: #888 !important;
}


/* =========================================================
   ABOUT ME
   ========================================================= */

.about-photo-card,
.about-tech-card {

    background:
        radial-gradient(
            circle at center,
            rgba(255,255,255,.025),
            rgba(0,0,0,0) 65%
        ),
        #0b0b0b !important;

    border-color: rgba(255,255,255,.10) !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.02),
        0 18px 40px rgba(0,0,0,.18) !important;
}


.photo-placeholder {

    font-style: italic !important;
    font-weight: 850 !important;

    background: linear-gradient(
        180deg,
        rgba(255,255,255,.22),
        rgba(255,255,255,.06)
    ) !important;

    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;

    transform: skewX(-6deg) !important;
}


.about-highlight {

    font-style: italic !important;
    font-weight: 850 !important;

    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #dddddd 70%,
        #bbbbbb 100%
    ) !important;

    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;

    text-shadow:
        0 8px 24px rgba(0,0,0,.36) !important;

    transform: skewX(-3deg) !important;
}


.about-values span {

    border-color: rgba(255,255,255,.12) !important;
    color: #aaa !important;

    background: rgba(255,255,255,.015) !important;
}


/* =========================================================
   BUYER PACK
   ========================================================= */

.buyer-lead {

    color: #d0d0d0 !important;
    line-height: 1.6 !important;
}


.buyer-items > div {

    transition:
        background .18s ease,
        transform .18s ease !important;
}


.buyer-items > div:hover {

    background: rgba(255,255,255,.018) !important;
    transform: translateX(2px) !important;
}


.buyer-items > div > span {

    color: rgba(215,31,38,.80) !important;
    font-style: italic !important;
}


.buyer-items strong {

    color: #e8e8e8 !important;
}


.buyer-lock {

    font-style: italic !important;
    font-weight: 900 !important;

    background: linear-gradient(
        180deg,
        #ffffff,
        #9d9d9d
    ) !important;

    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;

    transform: skewX(-6deg) !important;

    text-shadow:
        0 8px 22px rgba(0,0,0,.35) !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .vc-right-for-you .vc-section-head h2,
    .vc-about .vc-section-head h2,
    .vc-buyer-pack .vc-section-head h2 {

        transform: skewX(-3deg) !important;
    }


    .vc-right-for-you .vc-card h3,
    .vc-about .vc-card h3,
    .vc-buyer-pack .vc-card h3 {

        transform: skewX(-2deg) !important;
    }


    .vc-right-for-you .vc-card-number,
    .vc-about .vc-card-number,
    .vc-buyer-pack .vc-card-number {

        top: 20px !important;
        right: 18px !important;
        font-size: 32px !important;
    }
}


/* =========================================================
   VERIFIED CARS - VEHICLE LIST TIGHTENING
   ========================================================= */

.vc-details .vc-spec-list {
    margin-top: 10px !important;
}

.vc-details .vc-spec-row {
    padding: 10px 0 !important;
    gap: 10px !important;
}

.vc-details .vc-spec-left {
    gap: 9px !important;
}

.vc-details .vc-spec-label {
    font-size: 11px !important;
    line-height: 1.15 !important;
}

.vc-details .vc-spec-value {
    margin-top: 2px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
}

/* slightly smaller spacing on mobile too */
@media (max-width: 760px) {

    .vc-details .vc-spec-row {
        padding: 9px 0 !important;
        gap: 5px !important;
    }

    .vc-details .vc-spec-value {
        margin-top: 0 !important;
    }
}


/* =========================================================
   VERIFIED CARS - MOBILE VEHICLE SUMMARY
   ========================================================= */

.vc-mobile-vehicle-summary {
    display: none;
}

/* verification strip - align with gallery width */
.car-verification {
    width: min(calc(100% - 48px), var(--vc-width)) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (max-width: 768px) {

    .car-hero .car-meta,
    .car-hero .car-price {
        display: none !important;
    }

    .vc-mobile-vehicle-summary {
        display: block;
        width: calc(100% - 28px);
        margin: 18px auto 20px;
        padding: 20px 18px 10px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 18px;

        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,.025),
                rgba(255,255,255,.008)
            );

        box-shadow:
            0 18px 42px rgba(0,0,0,.24),
            inset 0 1px 0 rgba(255,255,255,.025);
    }

    .vc-mobile-summary-kicker {
        display: inline-block;
        margin-bottom: 14px;
        padding: 6px 11px;
        border: 1px solid rgba(255,60,60,.50);
        border-radius: 999px;
        color: #ff5151;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .17em;
        background: rgba(20,20,20,.32);
    }

    .vc-mobile-summary-list {
        border-top: 1px solid rgba(255,255,255,.07);
    }

    .vc-mobile-summary-row {
        display: grid;
        grid-template-columns: 9px 1fr auto;
        align-items: center;
        gap: 10px;
        min-height: 48px;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .vc-mobile-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #d71f26;

        box-shadow:
            0 0 0 1px rgba(215,31,38,.20),
            0 0 10px rgba(215,31,38,.35);
    }

    .vc-mobile-label {
        color: #8f8f8f;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .12em;
    }

    .vc-mobile-summary-row strong {
        color: #f2f2f2;
        font-size: 14px;
        font-weight: 750;
        text-align: right;
        text-shadow: 0 2px 8px rgba(0,0,0,.35);
    }

    .vc-mobile-price-row strong {
        font-size: 18px;
        font-style: italic;

        background: linear-gradient(
            180deg,
            #ffffff,
            #c7c7c7
        );

        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;

        transform: skewX(-3deg);
    }

    .car-verification {
        width: calc(100% - 28px) !important;
    }
}


/* =========================================================
   VERIFIED CARS - MOBILE COMPACT TUNE
   ========================================================= */

@media (max-width: 768px) {

    /* BMW i3 closer to the top of the hero */
    .car-hero-info {
        top: 82px !important;
        bottom: auto !important;
    }

    .car-hero-info h1 {
        margin-top: 0 !important;
        margin-bottom: 8px !important;
    }

    /* More compact vehicle summary */
    .vc-mobile-vehicle-summary {
        margin: 10px auto 12px !important;
        padding: 14px 14px 6px !important;
        border-radius: 14px !important;
    }

    .vc-mobile-summary-kicker {
        margin-bottom: 8px !important;
        padding: 5px 10px !important;
        font-size: 8px !important;
    }

    .vc-mobile-summary-row {
        min-height: 36px !important;
        gap: 8px !important;
    }

    .vc-mobile-summary-label,
    .vc-mobile-label {
        font-size: 9px !important;
        letter-spacing: .10em !important;
    }

    .vc-mobile-summary-row strong {
        font-size: 12px !important;
    }

    .vc-mobile-dot {
        width: 5px !important;
        height: 5px !important;
    }
}


/* =========================================================
   VERIFIED CARS - ABOUT ME PORTRAIT
   ========================================================= */

.about-photo-card {
    position: relative !important;
    min-height: 560px !important;

    border: 1px solid rgba(255,255,255,.10) !important;
    background:
        radial-gradient(
            circle at 48% 40%,
            rgba(255,255,255,.055) 0%,
            rgba(255,255,255,.018) 28%,
            rgba(0,0,0,0) 58%
        ),
        #080808 !important;

    overflow: hidden !important;
}

.about-photo-slot {
    position: absolute !important;
    inset: 0 !important;

    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;

    overflow: hidden !important;
}

.about-photo-slot img {
    display: block !important;

    width: auto !important;
    height: 96% !important;
    max-width: 96% !important;
    max-height: 96% !important;

    object-fit: contain !important;
    object-position: center bottom !important;

    filter:
        drop-shadow(0 20px 34px rgba(0,0,0,.58))
        drop-shadow(0 0 26px rgba(255,255,255,.035)) !important;

    position: relative !important;
    z-index: 2 !important;
}

/* soft fade so the cutout blends into black */
.about-photo-card::after {
    content: "" !important;

    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 22% !important;

    background: linear-gradient(
        to bottom,
        rgba(8,8,8,0),
        rgba(8,8,8,.42) 48%,
        rgba(8,8,8,.96) 100%
    ) !important;

    pointer-events: none !important;
    z-index: 3 !important;
}

/* subtle VC-style red accent behind portrait */
.about-photo-card::before {
    content: "" !important;

    position: absolute !important;
    width: 220px !important;
    height: 220px !important;

    left: 50% !important;
    top: 34% !important;
    transform: translate(-50%,-50%) !important;

    border-radius: 50% !important;

    background: rgba(205,35,42,.035) !important;
    box-shadow: 0 0 90px rgba(205,35,42,.08) !important;

    pointer-events: none !important;
}

/* hide VC placeholder if actual image is present */
.about-photo-slot:has(img:not([hidden])) .photo-placeholder {
    display: none !important;
}


/* =========================================================
   VERIFIED CARS - ABOUT PORTRAIT FINAL TUNE
   ========================================================= */

.about-photo-slot img {
    height: 102% !important;
    max-height: 102% !important;
}

.about-photo-card::after {
    height: 28% !important;
    background: linear-gradient(
        to bottom,
        rgba(8,8,8,0),
        rgba(8,8,8,.48) 45%,
        rgba(8,8,8,.98) 100%
    ) !important;
}

/* =========================================================
   VERIFIED CARS - RIGHT FOR YOU / CHOICE FINAL CLEAN
   ========================================================= */

.rfy-choice {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;

    width: 100%;
    max-width: 640px;

    margin: 22px 0 28px;
}

.rfy-choice > .vc-listen {
    width: 100%;
    min-height: 42px;
    margin: 0;
}

.rfy-choice > .rfy-read-more {
    grid-column: 2;

    width: 100%;
    min-width: 0;

    margin: 0;
    padding: 0;

    border: 0;
}

.rfy-choice > .rfy-read-more > summary {
    grid-column: 2;

    width: 100%;
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    margin: 0;

    border: 1px solid rgba(255,255,255,.20);
    border-radius: 4px;

    color: #f1f1f1;
    background: rgba(10,10,10,.65);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;

    cursor: pointer;
    list-style: none;
}

.rfy-choice > .rfy-read-more > summary::-webkit-details-marker {
    display: none;
}

.rfy-choice > .rfy-read-more > summary::before {
    content: "+";
    margin-right: 7px;

    color: var(--vc-red);
    font-size: 14px;
    font-weight: 900;
}

.rfy-choice > .rfy-read-more[open] > summary::before {
    content: "−";
}

.rfy-choice > .rfy-read-more > .rfy-read-more-content {
    width: calc(200% + 8px);
    max-width: none;

    margin-left: calc(-100% - 8px);
    padding: 16px 0 0;

    box-sizing: border-box;
}

.rfy-choice > .rfy-read-more > .rfy-read-more-content p {
    margin: 0 0 14px;

    color: rgba(255,255,255,.72);

    font-size: 13px;
    line-height: 1.75;
}



/* RFY - prevent LISTEN from stretching with open READ MORE */

.rfy-choice {
    align-items: start;
}

.rfy-choice > .vc-listen {
    align-self: start;
    height: 42px;
    min-height: 42px;
}


/* =========================================================
   VERIFIED CARS - RIGHT FOR YOU / DESKTOP PHOTO
   Mobile remains text-only
   ========================================================= */

@media (min-width: 769px) {

    .rfy-choice {
        max-width: 900px;
    }

    .rfy-choice > .rfy-read-more > .rfy-read-more-content {
        width: calc(200% + 8px);
        margin-left: calc(-100% - 8px);

        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
        column-gap: 42px;
        align-items: start;
    }

    .rfy-read-more-content > p {
        grid-column: 1;
    }

    .rfy-desktop-photo {
        grid-column: 2;
        grid-row: 1 / span 20;

        width: 100%;
        position: sticky;
        top: 110px;

        overflow: hidden;

        border: 1px solid rgba(255,255,255,.10);
        background: #0b0b0b;
    }

    .rfy-desktop-photo img {
        display: block;
        width: 100%;
        height: auto;

        object-fit: cover;
    }
}


/* Never show RFY photo on phone/tablet */

@media (max-width: 768px) {

    .rfy-desktop-photo {
        display: none !important;
    }

}

@media (min-width: 769px) {

    .rfy-choice {
        max-width: 1050px;
    }

    .rfy-choice > .rfy-read-more > .rfy-read-more-content {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
        column-gap: 38px;
    }

    .rfy-desktop-photo img {
        width: 100%;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        object-position: center;
    }

}
/* DETAILS -> RIGHT FOR YOU GAP TUNE */

.vc-details {
    padding-bottom: 45px !important;
}

.vc-right-for-you {
    padding-top: 45px !important;
}


/* HEADER LOGO - subtle frame tune */

.vc-brand {
    border: 1px solid rgba(255,255,255,.08) !important;
    border-radius: 6px !important;
    padding: 5px 9px !important;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.018),
        0 4px 14px rgba(0,0,0,.10) !important;
}


/* ABOUT -> BUYER PACK GAP TUNE */

.vc-about {
    padding-bottom: 45px !important;
}

.vc-buyer-pack {
    padding-top: 45px !important;
}


/* RIGHT FOR YOU -> ABOUT ME GAP TUNE */

.vc-right-for-you {
    padding-bottom: 45px !important;
}

.vc-about {
    padding-top: 45px !important;
}

/* RIGHT FOR YOU - FIT SUMMARY LIST LAYOUT */

.rfy-fit-column > span {
    display: block;
    margin-bottom: 7px;

    color: rgba(255,255,255,.62);
    font-size: 12px;
    line-height: 1.6;
}

.rfy-fit-column:last-child > span {
    color: rgba(255,255,255,.56);
}

.rfy-fit-column:last-child > span::first-letter {
    color: var(--vc-red);
}

/* BUYER PACK - REPORT CONTENTS FINAL TUNE */

.buyer-report-row {
    padding: 11px 0;
    border-top: 1px solid rgba(255,255,255,.07);
}

.buyer-report-row:first-of-type {
    border-top: 0;
}

.buyer-report-row > span {
    color: var(--vc-red);
    opacity: .9;
}

.buyer-report-row > strong {
    font-size: 11px;
    line-height: 1.45;
    color: rgba(255,255,255,.78);
}
/* =========================================================
   DETAILS - LISTEN BUTTON POSITION
   ========================================================= */

.vc-details .vc-section-head {
    justify-content: flex-start;
    align-items: flex-end;
    gap: 24px;
}

.vc-details .vc-section-head > .vc-listen {
    flex: 0 0 auto;
    margin-bottom: 2px;
}


/* =========================================================
   VERIFIED CARS - AUDIO TRANSCRIPT MODAL
   ========================================================= */

.vc-transcript-button {
    flex: 0 0 auto;
}

.vc-transcript-modal[hidden] {
    display: none !important;
}

.vc-transcript-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
}

.vc-transcript-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.76);
    backdrop-filter: blur(5px);
}

.vc-transcript-panel {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    max-height: min(680px, 80vh);
    overflow-y: auto;

    padding: 34px 38px 38px;

    border: 1px solid rgba(255,255,255,.12);

    background:
        linear-gradient(
            180deg,
            rgba(22,22,22,.98),
            rgba(9,9,9,.99)
        );

    box-shadow:
        0 30px 90px rgba(0,0,0,.65);
}

.vc-transcript-panel h3 {
    margin: 10px 0 24px;
    color: #f2f2f2;
    font-size: 24px;
    font-style: italic;
    letter-spacing: -.03em;
}

.vc-transcript-text {
    white-space: pre-line;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.85;
}

.vc-transcript-close {
    position: absolute;
    top: 14px;
    right: 16px;

    width: 34px;
    height: 34px;

    border: 1px solid rgba(255,255,255,.12);
    background: transparent;
    color: rgba(255,255,255,.65);

    font-size: 23px;
    line-height: 1;
    cursor: pointer;
}

.vc-transcript-close:hover {
    color: #fff;
    border-color: rgba(255,255,255,.28);
}

body.vc-transcript-open {
    overflow: hidden;
}

@media (max-width: 768px) {

    .vc-transcript-modal {
        padding: 14px;
    }

    .vc-transcript-panel {
        width: 100%;
        max-height: 86vh;
        padding: 28px 22px 26px;
    }

    .vc-transcript-text {
        font-size: 13px;
        line-height: 1.75;
    }
}

/* TRANSCRIPT - FINAL TUNE */

.vc-transcript-panel {
    width: min(680px, 100%);
}

.vc-transcript-text {
    font-size: 14px;
    line-height: 1.9;
}

.vc-transcript-text {
    white-space: pre-line;
}

.vc-transcript-panel h3 {
    margin-bottom: 26px;
}
/* =========================================================
   ABOUT ME - VERIFIED CARS WATERMARK
   ========================================================= */

.about-photo-slot {
    position: relative !important;
}

.about-watermark {
    position: absolute;
    right: 18px;
    bottom: 16px;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 5px;

    opacity: .32;
    pointer-events: none;
    user-select: none;
}

.about-watermark-vc {
    color: #f2f2f2;
    font-size: 22px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -2px;
    line-height: 1;
}

.about-watermark-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--vc-red);
    box-shadow: 0 0 8px rgba(227,38,46,.55);
}

.about-watermark-name {
    color: rgba(255,255,255,.88);
    font-size: 9px;
    font-weight: 800;
    font-style: italic;
    letter-spacing: .8px;
    white-space: nowrap;
}

.about-watermark-name strong {
    color: var(--vc-red);
}

@media (max-width: 768px) {

    .about-watermark {
        right: 12px;
        bottom: 12px;
        transform: scale(.88);
        transform-origin: right bottom;
        opacity: .30;
    }

}


/* ABOUT ME - PORTRAIT SLIGHT ZOOM OUT */

.about-photo-slot img {
    height: 94% !important;
    max-height: 94% !important;
    width: auto !important;
    max-width: 94% !important;
    object-fit: contain !important;
    object-position: center bottom !important;
}


/* ABOUT ME - PORTRAIT FINAL ZOOM OUT */

.about-photo-slot img {
    height: 88% !important;
    max-height: 88% !important;
    max-width: 88% !important;
    object-fit: contain !important;
    object-position: center bottom !important;
}


/* ABOUT ME - WATERMARK FINAL TUNE */

.about-watermark {
    right: 18px !important;
    bottom: 20px !important;
    opacity: .38 !important;
}

@media (max-width: 768px) {
    .about-watermark {
        right: 12px !important;
        bottom: 14px !important;
        opacity: .34 !important;
    }
}


/* BUYER PACK - REPAIR EVIDENCE GALLERY */

.repair-evidence-gallery {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.repair-evidence-gallery figure {
    margin: 0;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.015);
    overflow: hidden;
}

.repair-evidence-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.repair-evidence-gallery figcaption {
    padding: 10px 11px 11px;
    color: rgba(255,255,255,.62);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .4px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .repair-evidence-gallery {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .repair-evidence-gallery img {
        aspect-ratio: 16 / 10;
    }
}


/* =========================================================
   ABOUT ME - DESKTOP LISTEN + READ POSITION
   Mobile intentionally unchanged
   ========================================================= */

@media (min-width: 769px) {

    .vc-about .vc-section-head {
        justify-content: flex-start !important;
        align-items: flex-end !important;
        gap: 24px !important;
    }

    .vc-about .vc-section-head > .vc-listen,
    .vc-about .vc-section-head > .vc-transcript-button {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 78px !important;
        margin: 0 0 2px 0 !important;
    }

}


/* VC release guard: hide disabled Buyer Pack completely. */
#buyer-pack[data-enabled="false"] {
    display: none !important;
}

body:not(.buyer-pack-enabled) .vc-nav a[href="#buyer-pack"] {
    display: none !important;
}

/* Navigation follows the same Buyer Pack feature flag. */
body:not(.buyer-pack-enabled) .vc-nav a[href="#buyer-pack"] { display: none !important; }


/* ABOUT ME - CLEAN TRANSPARENT PORTRAIT (2026-09-25) */
.about-photo-card { background: #080808 !important; }
.about-photo-card::before { display: none !important; }
.about-photo-slot img { filter: none !important; }
