function VSpeeds() { const phases = [ { code: "V1", lbl: "Decision Speed", title: "Preparation.", body: "We map your 50 closest competitors, the keywords pulling their traffic, and the exact segment we're intercepting. You greenlight, before a dime is spent.", weeks: "Week 00 โ€“ 02" }, { code: "VR", lbl: "Rotate", title: "Launch.", body: "Campaigns go live across Search, YouTube, and Display. Every ad is written by someone who has sat left-seat in your client's aircraft class.", weeks: "Week 02 โ€“ 06" }, { code: "V2", lbl: "Climb Speed", title: "Grow.", body: "Long-tail retargeting carries leads up to 90 days across platforms. You see cost per lead, conversion, and revenue attribution in one dashboard. Monthly review, always.", weeks: "Week 06 โ€“ ongoing" }, ]; return (
02 ยท Methodology

The V-Speeds framework. Every campaign has three decision points. We built our process around them.

{phases.map((p, i) => (
{p.code}
{p.lbl}

{p.title}

{p.body}

{p.weeks}
))}
); } window.VSpeeds = VSpeeds;