// Winkz Designs 2026, standalone pages: Process (how we build + FAQ) and Trust (proof + security) (function () { const { Icon, Reveal, Eyebrow, SectionHead, Section, Grad } = window; const GRAD = 'linear-gradient(120deg,#F23BFE,#79BAFF,#2DE3EA)'; function PageHero({ eyebrow, title, sub }) { return (
{eyebrow}

{title}

{sub}

); } const STEPS = [ ['01', 'Align', 'A focused kickoff. We dig into the goal, the audience and the numbers, then commit to a clear, fixed scope before you pay a cent.'], ['02', 'Design', 'Direction first, then hi-fi. You see real screens early and often, never a surprise at the end.'], ['03', 'Build', 'Short iterations in the real thing. Every week ends with something you can click, test and react to.'], ['04', 'Launch', 'We ship it, wire the analytics, and hand you the keys, plus plain-English docs so your team owns it.'], ]; function ProcessPage({ onNavigate }) { return ( We ship systems, not slide decks.} sub="A senior team, short feedback loops, and work that actually goes live. No black boxes, no juniors learning on your project." />
{STEPS.map((s, i) => (
{s[0]}

{s[1]}

{s[2]}

))}
Typical engagement: 3 to 12 weeks · discovery is free · pay only when satisfied
{window.FAQ ? : null}
); } function TrustPage({ onNavigate }) { return ( Trusted work. Yours to keep.} sub="Real results for real businesses, and software that stays secure, on your accounts, owned outright by you." /> {window.Testimonials ? : null} {window.Security ? : null} ); } Object.assign(window, { ProcessPage, TrustPage }); })();