function Process() { const steps = [ { n: 'I', t: 'Explore programs', d: 'Browse by level, field and career outcome. Save favourites.' }, { n: 'II', t: 'Expert counseling', d: '1:1 call with a MentVecity advisor. No scripts, no pressure.' }, { n: 'III', t: 'Compare options', d: 'Side-by-side comparison: fees, accreditation, outcomes.' }, { n: 'IV', t: 'Submit documents', d: 'Structured checklist and direct university coordination.' }, { n: 'V', t: 'Enrol & begin', d: 'Onboarding call, LMS walkthrough, mentor assignment.' }, ]; return (
How it works

Five steps from curiosity to classroom.

Clear. Supported. Done in days, not weeks.

{steps.map((s, i) => (
{s.n}

{s.t}

{s.d}

))}
); } window.Process = Process;