// Sections.jsx β€” Problem cards, SCALE model, Before/After, Ideal-fit, CTA banner, Footer const PROBLEM_CARDS = [ { icon: 'πŸ”₯', title: 'From firefighting to control', body: "Late fulfilment, poor inventory visibility, supplier issues, unclear ownership, and margin leakage β€” all symptoms of an ops function that hasn't scaled with the business." }, { icon: '🏭', title: 'Enterprise-grade execution', body: 'Experience built in complex international environments where execution discipline, structured problem solving, and KPI cadence are non-negotiable.' }, { icon: 'βš™οΈ', title: 'Practical scaling systems', body: 'Not theory. Operating routines, dashboards, SOPs, supplier rhythms, inventory planning, and leadership habits that make growth manageable.' }, ]; function Problem() { return (
{PROBLEM_CARDS.map((c) => (
{c.icon}

{c.title}

{c.body}

))}
); } const SCALE_STEPS = [ ['S', 'Stabilize', 'Create operational visibility. Map the current process, identify bottlenecks, clarify ownership, and stop recurring firefighting before it drains the team.'], ['C', 'Control', 'Install KPI dashboards, weekly reviews, fulfilment metrics, inventory controls, and supplier performance routines β€” so decisions are data-driven.'], ['A', 'Accountability', 'Define decision rights, meeting cadence, role clarity, escalation paths, and leadership routines that keep the team aligned and moving.'], ['L', 'Leverage', 'Standardize what works through SOPs, automation opportunities, supplier playbooks, and repeatable workflows that reduce founder dependence.'], ['E', 'Expand', 'Prepare for scalable growth through margin improvement, fulfilment reliability, team coaching, and 90-day execution roadmaps.'], ]; function ScaleModel() { return (
{SCALE_STEPS.map(([letter, title, desc]) => (
{letter}

{title}

{desc}

))}
); } const BEFORE = [ 'Founder involved in every operational issue', 'Inventory decisions based on gut feeling', 'Supplier follow-up is reactive and inconsistent', 'No clear KPI rhythm or review cadence', 'SOPs are missing or ignored by the team', 'Team accountability is unclear', 'Growth creates more complexity, not momentum', ]; const AFTER = [ 'Weekly operating rhythm installed and running', 'KPI dashboard guiding decisions at every level', 'Bottlenecks visible, owned, and resolved fast', 'Inventory and supplier routines systematically improved', 'SOPs implemented, followed, and continuously refined', 'Team roles and expectations clearly defined', 'Growth becomes structured, scalable, and manageable', ]; function BeforeAfter() { return (
βœ—   Before
{BEFORE.map((t) => (
βœ—{t}
))}
βœ“   After
{AFTER.map((t) => (
βœ“{t}
))}
); } const FIT_ITEMS = [ '€500k+ in annual revenue.', 'Growing team without a scalable operating structure.', 'Increasing pressure on inventory, fulfillment, suppliers, and margins.', 'Founder remains heavily involved in operational decision-making.', 'Limited process documentation, SOPs, and performance visibility.', 'Desire to scale sustainably without creating operational chaos.', ]; function IdealFit() { return (
{FIT_ITEMS.map((t) => (
{t}
))}
🎯

If this sounds like your brand, the Operational Diagnostic is the fastest way to get clarity and a clear action plan.

Start with the Diagnostic
); } function CtaBanner() { return (

β–Έ   Take Action

Ready to build the operating system behind your growth?

Start with the Operational Diagnostic β€” get a clear view of your bottlenecks, KPI gaps, margin leaks, and the 90-day roadmap to scale with control.

Book Operational Diagnostic β†’
); } function Footer() { return ( ); } Object.assign(window, { Problem, ScaleModel, BeforeAfter, IdealFit, CtaBanner, Footer });