/* global React, Tick */ /* ============================ COMPARISON ============================ */ const ROWS = [ { f: "Focus", pausa: "Leadership teams", eap: "General workforce", coach: "Individual leaders", type: "text" }, { f: "Full-body biomarker check", pausa: true, eap: false, coach: false, type: "bool" }, { f: "Nature-immersive resets", pausa: true, eap: false, coach: false, type: "bool" }, { f: "12-month routine integration", pausa: true, eap: false, coach: "Rarely", type: "mixed" }, { f: "CSRD S1-14 impact reporting", pausa: true, eap: "Basic metrics only", coach: false, type: "mixed" }, ]; 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 = [ "Full biomarker check-up, twice a year", "Immersive retreat at our exclusive nature sanctuary near Lisbon (30 mins)", "12-month community integration", "CSRD impact reporting", ]; function Pricing({ onBook }) { return (
Transparent beta pricing

An honest rate for our founding cohort.

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

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

Per person · €8,000 standard market rate

Everything included

    {INCLUDES.map((i) => (
  • {i}
  • ))}

Lock in our beta rate. This trial period is strictly limited to our first 3 Portugal-based pilot clients.

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