/* global React, Tick, PillarBenefits */ /* ============================ COMPARISON ============================ */ const ROWS = [ { f: "Focus", pausa: "Individual leaders & leadership teams", eap: "General workforce", coach: "Individual leaders", type: "text" }, { f: "Full-body biomarker check", pausa: true, eap: false, coach: false, type: "bool" }, { f: "Weekly AI-guided focus actions", pausa: true, eap: false, coach: "Rarely", type: "mixed" }, { f: "Nature-immersive offsites", pausa: true, eap: false, coach: false, type: "bool" }, { f: "Community-driven integration", pausa: true, eap: false, coach: "Rarely", type: "mixed" }, { f: "Day-90 recheck", pausa: true, eap: false, coach: false, type: "bool" }, ]; function Cell({ value }) { if (value === true) return Yes; if (value === false) return No; return {value}; } function Comparison() { return (
The market reality

Where Pausa sits in the landscape.

{ROWS.map((r) => ( ))}
PausaPerformance wellbeing Traditional EAP apps Executive coaching
{r.f}

Mass-market apps are built for HR checklists. Coaching lacks physiological data. Pausa connects the mind, body and community.

); } /* ============================ PRICING ============================ */ const INCLUDES = [ { phase: "Phase 1 — Baseline", items: [ "Wearable ring — sleep, HRV and recovery (yours to keep)", "At-home clinical blood panel — cardiovascular, metabolic, hormonal and inflammatory markers", "Validated questionnaires and cognitive baseline", ]}, { phase: "Phase 2 — Pausa Reset", items: [ "3-day immersive offsite near Lisbon", "All meals, accommodation and catering included", "Expert-led workshops across four dimensions of wellbeing", "1:1 session with your facilitator", ]}, { phase: "Phase 3 — Pausa Circle", items: [ "10 monthly expert-facilitated group sessions", "Day-90 recheck — HRV, cognitive and biomarker subset", "Full annual re-assessment at month 12", ]}, ]; function Pricing({ onBook }) { return (
Transparent pricing — founding cohort

An honest rate for our founding cohort.

For groups of up to 12 leaders. One programme, fully inclusive — biomarkers, offsite, integration and reporting.

Founding cohort
€8,000 €3,890 ex. VAT

Per person · €8,000 standard market rate

Team of 8 leaders → €31,120 total vs. €50K–€120K to replace one burned-out senior hire

Everything included

{INCLUDES.map((group) => (

{group.phase}

    {group.items.map((item) => (
  • {item}
  • ))}
))}

Lock in our founding cohort rate. Strictly limited to our first 3 Portugal-based teams.

); } /* ============================ FOOTER ============================ */ function Footer({ onBook }) { return ( ); } Object.assign(window, { Comparison, Pricing, Footer });