// live-b.jsx — VARIANT B "Get It in 10 Seconds" (analogy + guided steps + AI assistant) // Clean white design. Hero = analogy + 3 steps + assistant entry. Uses the shared LiveAssistant. function StepStrip() { const steps = [ { ic: ICON.wallet, t: 'Book', d: 'Reserve online' }, { ic: ICON.video, t: 'Connect on video', d: 'No app — just a link' }, { ic: ICON.eye, t: 'Walk the car together', d: 'Up to 20 min, guided' }]; return (
{steps.map((s, i) =>
{s.t}
{s.d}
)}
); } function VariantB() { const wide = useIsWide(920); const W = wide ? 820 : MAXW; const scrollToAssistant = () => { const el = document.getElementById('assistant'); if (el) window.scrollTo({ top: el.offsetTop - 8, behavior: 'smooth' }); }; return (
{/* HERO — analogy + steps + assistant entry */}

{COPY.heroLead}{COPY.heroAccent}

{COPY.heroSub}

openLead({ v: 'B' })} track="varB-cta-book" anchor="a3b5873a47-button-69-11" style={{ boxShadow: '0 14px 30px -12px rgba(230,59,46,0.5)' }} />
{COPY.guaranteeHead}
{/* ASSISTANT */}

Have a question? Just ask.

{/* PAYS FOR ITSELF */}
Pays for itself

{COPY.valueHead}

{COPY.valueLead}{COPY.valueBody}

$59.99
Live session
vs. a single missed issue — a repaint, a leak, worn tires — that can cost hundreds or thousands after you’ve signed.
{/* WHAT YOU GET */}
What you get

An expert in your corner

{[ Up to 20 minutes 1-on-1 with a certified inspection specialist., A guided visual walkthrough — fluids, rust, panel gaps, tires, lights, engine bay., Ask anything in real time and get straight, professional answers., They help you catch red flags before you commit — for a fraction of a full inspection.]. map((t, i) =>
{t}
)}
{/* TRUST */}
Trusted by buyers

Real specialists. Real reviews.

{/* FAQ (lighter) */}
A few more answers

Still wondering?

openLead({ v: 'B' })} track="varB-sticky-cta" />
); } window.VariantB = VariantB;