/* trust.jsx - TrustedStrip: slim band of client logos, sits just below the hero. - TrustSection: enlarged customer-trust section (reference stats card + supporting trust points). Recoloured to the Macnitech palette. */ const TRUSTED = ['Northwind', 'Veloce', 'Harbour & Co', 'Aksu Health', 'Brightside', 'Lumen']; function TrustedStrip() { return (
Trusted by growth-focused teams
{TRUSTED.map((t) => {t})}
); } const TRUST_POINTS = [ { icon: 'award', h: 'Senior specialists only', p: 'No juniors learning on your account — every engagement is run by people who have done it before.' }, { icon: 'trendingUp', h: 'Reported in outcomes', p: 'Rankings, traffic, conversions and ROI — transparent numbers every month, with context.' }, { icon: 'shield', h: 'No long lock-ins', p: 'We earn the relationship monthly. Stay because it works, not because you are trapped.' }, { icon: 'zap', h: 'Built to compound', p: 'SEO, web and automation reinforce each other, so results accelerate over time.' }, ]; /* The stats card from the reference video (enlarged) */ function TrustStatsCard() { return (
150+
Projects delivered
Client satisfaction98%
On-time delivery94%
12+
Years
24/7
Support
100%
Quality
Active Premium
); } function TrustSection() { const { Button } = window.MacnitechDesignSystem_13fddf; return (
Why teams choose us

Trusted to deliver — and to prove it.

We measure success the way you do: in outcomes. Every engagement is backed by data, run by senior specialists, and reported with total transparency.

{TRUST_POINTS.map((tp) => (

{tp.h}

{tp.p}

))}
); } Object.assign(window, { TrustedStrip, TrustSection });