/* ==========================================================================
   VEHICLE MODEL PAGE TEMPLATE
   Structure cloned from cashforcars.com's vehicle pages (layout only —
   announcement bar, clean hero, 3-step process, dark reach section — every
   word of copy is original). No instant-offer tab in the hero; that's a
   separate build per the 2026-07-03 direction.
   ========================================================================== */

.vehicle-announce-bar {
    background: var(--neon-lime);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
}

.vehicle-hero-clean {
    padding: 60px 20px 50px;
    text-align: center;
    background: #fff;
}
.vehicle-hero-clean h1 {
    font-family: var(--font-head) !important;
    font-weight: 800;
    font-size: 30px;
    color: var(--neon-lime);
    max-width: 900px;
    margin: 0 auto 18px;
    line-height: 1.2;
}
.vehicle-hero-clean p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 15.5px;
    line-height: 1.7;
}
@media(min-width: 768px) {
    .vehicle-hero-clean h1 { font-size: 42px; }
}

.vehicle-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
@media(min-width: 768px) {
    .vehicle-steps { grid-template-columns: repeat(3, 1fr); }
}
.vehicle-step .step-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--neon-lime);
    color: #fff;
    font-family: var(--font-head) !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.vehicle-step .step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    color: #111827;
}
.vehicle-step .step-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; }
.vehicle-step h3 {
    font-family: var(--font-head) !important;
    color: var(--neon-lime);
    font-size: 19px;
    margin-bottom: 8px;
}
.vehicle-step p { color: var(--text-gray); font-size: 14.5px; max-width: 260px; margin: 0 auto; }

.vehicle-reach-dark {
    background:
        repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 2px, transparent 2px, transparent 36px),
        linear-gradient(135deg, #0b0f0d 0%, #163524 55%, #0b0f0d 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}
.vehicle-reach-dark .reach-icon { width: 48px; height: 48px; margin: 0 auto 20px; color: rgba(255,255,255,0.7); }
.vehicle-reach-dark .reach-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.vehicle-reach-dark h2 { font-family: var(--font-head) !important; font-size: 26px; margin-bottom: 14px; }
.vehicle-reach-dark p { max-width: 640px; margin: 0 auto 26px; color: rgba(255,255,255,0.78); line-height: 1.7; }
@media(min-width: 768px) {
    .vehicle-reach-dark h2 { font-size: 32px; }
}
