function ServicesPage({ onGo }) { const D = window.DATA; return ( <>
Services · ways to work together

Four engagements. One operator. No junior layers.

Pick the shape that fits. Or don't — most engagements are a hybrid, scoped in writing after the first call.

{D.services.map((s, i) => (
{String(i + 1).padStart(2, "0")} · Service {s.icon}

{s.title}

{s.desc}

What you get
    {s.outs.map(o =>
  • {o}
  • )}
Who it's for {s.for}
))}
{D.process.map((p, i) => (
STEP {String(i + 1).padStart(2, "0")}

{p.title}

{p.desc}

))}
{[ { t: "Sprint", p: "2–4 weeks", d: "Tight-scoped problem. LP teardown, creative audit, 30-day roadmap. For founders who need a second pair of eyes.", f: "From ₹1.5L" }, { t: "Retainer", p: "3–6 months", d: "Embedded. I run growth alongside your team. Weekly cadence, monthly reviews, quarterly bets.", f: "From ₹2.5L / mo" }, { t: "Outcome", p: "6–12 months", d: "Retainer + skin in the game. Tied to MRR, CAC, or ROAS targets. Available for founders I've worked with before.", f: "Custom" }, ].map((x, i) => (
{x.p}

{x.t}

{x.d}

Investment {x.f}
))}

Book a consultation.

); } window.ServicesPage = ServicesPage;