// ============================================================ // HOME PAGE // Hero (centered, text-only) → Pillars → Clients → Stat band → // Pull quote → CTA strip (handled by App) // ============================================================ function HomeHero() { return (

Customer‑Powered Growth

We turn your happiest customers into your best sales tools. Proof‑driven marketing that does two things: uses peer credibility to win new business faster, and deepens loyalty so your existing customers stay longer and buy more.

); } // ------------------------------------------------------------ // Strategic pillars — 4 editorial feature blocks on ONE row // ------------------------------------------------------------ function HomePillars({ onNavigate }) { const pillars = [ { n: '01', kicker: 'Listen', title: 'Voice of the Customer', body: 'Listen to your customers at scale, and turn their feedback into clear business action. We build continuous listening loops that capture what your customers really mean.', accent: 'var(--color-bright-turquoise)', }, { n: '02', kicker: 'Mobilise', title: 'Customer Advocacy', body: 'Find your most successful users and empower them to talk about you. We turn happy customers into a natural extension of your sales and marketing teams.', accent: 'var(--color-purple)', }, { n: '03', kicker: 'Story', title: 'Strategic High-Fidelity Storytelling', body: 'Create content that uses emotional hooks, journalistic discipline, and high-end production to tell stories that people trust and engage with.', accent: 'var(--color-hot-pink)', }, { n: '04', kicker: 'Belong', title: 'Loyalty & Communities', body: 'Build spaces where your customers can connect, learn, and grow together. We shift your customer relationship from transactional to indispensable.', accent: 'var(--color-blue)', }, ]; return (
A growth philosophy

More than a program; a strategic growth philosophy.

Four interconnected pillars that turn customer success into commercial momentum — acquisition, retention, and expansion compounding off one operating model.

{pillars.map(p => (
onNavigate('services')}>
{p.n} · {p.kicker}

{p.title}

{p.body}

Read the service
))}
); } // ------------------------------------------------------------ // Client logo ticker — BELOW pillars per brief // ------------------------------------------------------------ function ClientTicker() { const names = [ 'GLOBEX', 'INITECH', 'HOOLI', 'MASSIVE DYNAMIC', 'SOYLENT', 'WONKA', 'PIED PIPER', 'STARK INDUSTRIES', 'ACME LABS', 'CYBERDYNE', 'WAYNE ENTERPRISES', 'UMBRELLA', 'DUNDER MIFFLIN', 'LACUNA', ]; // duplicate for seamless loop const loop = [...names, ...names]; return (
Trusted by ambitious B2B brands worldwide
{loop.map((n, i) => ( {n} ))}
); } // ------------------------------------------------------------ // Stat band — quick proof above the pull quote // ------------------------------------------------------------ function HomeStatBand() { const stats = [ { num: '1991', label: 'Founded' }, { num: '90', label: 'Countries served' }, { num: '30+', label: 'Languages' }, { num: '#1', label: 'NRR is the top predictor of valuation' }, ]; return (
{stats.map(s => (
{s.num}
{s.label}
))}
); } // ------------------------------------------------------------ // Pull quote — editorial dark band // ------------------------------------------------------------ function HomePull({ onNavigate }) { return (
Why customer-powered growth
Your existing customers are your gold mine. A company's value isn't how many new logos you sign — it's how the customers you already have stay, expand, and tell the story for you.
); } // ------------------------------------------------------------ // CTA strip — primary action AFTER the hero (lives at end of home) // ------------------------------------------------------------ function HomeCTA({ onNavigate }) { return (
Let's Talk

Ready to turn your best customers into your strongest growth lever?

We'll listen first — your goals, your customers, your gaps — and come back with a clear, costed point of view.

); } window.HomeHero = HomeHero; window.HomePillars = HomePillars; window.ClientTicker = ClientTicker; window.HomeStatBand = HomeStatBand; window.HomePull = HomePull; window.HomeCTA = HomeCTA;