// Process — oversized step numbers, the second bold moment function HpProcess({ bg }) { const steps = [ { n: "01", t: "Vet", d: "We audit your offer. EPCs, refund rate, funnel math, network fit. We tell you straight whether we'll run it." }, { n: "02", t: "Build", d: "Angles, advertorials, VSL hooks, lander variants, tracking. We build the test stack before a dollar of spend." }, { n: "03", t: "Test", d: "Volume testing across native, Meta, search, YouTube. We find the profitable angle in days, not quarters." }, { n: "04", t: "Scale", d: "Once it's profitable, we open the spend. Daily caps, fraud filters, daily sync. You see what we see." }, ]; return (
How we work Four steps · 2 weeks to test, 30 days to scale
{steps.map(s => (
{s.n}
{s.t}

{s.d}

))}
); } window.HpProcess = HpProcess;