// live-c.jsx — VARIANT C "Buy With Confidence" — BOLD CONFIDENCE-APP // Deep warm-espresso hero, heavy geometric sans, warm stone body with floating white cards, // a connected vertical timeline, a strong guarantee card. Single-column (mobile look), centered on desktop. const C = { espresso: '#241C17', espresso2: '#322720', stone: '#ECE5D9', card: '#FFFFFF', ink: '#231D18', sub: '#6E655A', cream: '#F4EDE1', creamSub: 'rgba(244,237,225,0.66)', red: '#E63B2E', redDeep: '#C42E22', redBg: '#FBE7E2', yellow: '#F5A623', line: '#DBD3C5', green: '#2E7D55' }; function CChip({ children, dark }) { return (
{children}
); } function CHeader() { return (
Lemon Squad {phoneNumber}
); } function CRedButton({ children, onClick, track, sub }) { return ( ); } const C_INSPECTORS = [ { name: 'Marcus T.', region: 'Southeast', years: 18, insp: '4,200+', note: 'Former BMW master tech' }, { name: 'Diane W.', region: 'Midwest', years: 12, insp: '3,100+', note: 'ASE-certified specialist' }, { name: 'Raymond K.', region: 'West', years: 23, insp: '6,800+', note: 'Former dealership lead' }]; function CFAQ() { const [open, setOpen] = React.useState(0); return (
{FAQ_ITEMS.map((it, i) =>
{it.a}
)}
); } function VariantC() { const book = () => openLead({ v: 'C' }); const wide = useIsWide(920); const W = wide ? 820 : MAXW; const steps = COPY.steps.map((s) => ({ t: s[0], d: s[1] })); const scenarios = [ { ic: ICON.eye, t: 'A quick once-over', d: 'Have a pro scan the car with you before you commit.' }, { ic: ICON.wallet, t: 'Negotiate with facts', d: 'Use what they spot to ask for a better price.' }, { ic: ICON.clock, t: 'At the lot or driveway', d: 'Book ahead, tap the link when you’re at the car.' }, { ic: ICON.user, t: 'Not a “car person”?', d: 'A specialist asks the seller the right questions for you.' }]; const rows = [['Format', 'Live video on your phone', 'Inspector on-site'], ['Coverage', 'Guided visual + drive', 'Full diagnostics'], ['When', 'While you’re at the car', 'Final deep-dive'], ['Price', '$59.99', 'From $220']]; return (
{/* HERO — espresso block */}
America’s Largest & Most Trusted · since 2005

{COPY.heroLead}{COPY.heroAccent}

{COPY.heroSub}

{COPY.bullets.map((b, i) =>
{b[0]}{b[1]}
)}
Get an expert ready
100% satisfaction guarantee
Not happy with your session? Get your money back.
{/* HOW IT WORKS — vertical timeline */}
How it works

Three steps, zero stress.

{steps.map((s, i) =>
{i + 1}
{s.t}
{s.d}
)}
{/* SEE IT IN ACTION */}
See it in action

See how it works.

A quick explainer on how a Live Video Inspection works — it plays on its own; tap for sound.

{/* WHEN IT HELPS — 2x2 grid */}

Made for moments like these

{scenarios.map((s, i) =>
{s.t}
{s.d}
)}
{/* 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.
{/* ASK ANYTHING — assistant (dark espresso) */}
New to this?

Ask us anything.

Tap a question — the assistant explains it and sets you up when you’re ready.

{/* STATS band — espresso */}
{[['America’s #1', 'largest & most trusted'], ['Since 2005', '20 years on buyers’ side'], ['All 50 states', 'nationwide coverage'], ['Specialists', 'it’s all they do']].map((s, i) =>
{s[0]}
{s[1]}
)}
{/* INSPECTOR ROSTER */}
The people behind the call

Specialists who do only this

Not general mechanics — professional inspection specialists. Pre-purchase inspections are all they do.

{C_INSPECTORS.map((p, i) =>
{p.name}
Certified Specialist
{p.years} yrs {p.insp}
)}
{/* TESTIMONIALS */}

Confidence, in their words

{TESTIMONIALS.slice(0, 3).map((t, i) =>
“{t.text}”
{t.name}
{t.loc} · Verified buyer
)}
{/* LIVE VS FULL — bold card */}

Live vs. Full Inspection

Live
this page
Full
on-site ↗
{rows.map((r, i) =>
{r[0]}
{r[1]}
{r[2]}
)}
Want a full hands-on inspection? See options ↗
{/* BOOK CTA — espresso card */}

Get your inspection link

Get your link now and use it whenever you go to see the car. Backed by our 100% satisfaction guarantee.

Get an expert ready
{/* FAQ */}

Questions, answered

); } window.VariantC = VariantC;